Module Values_2.StartAutomationJobRequestSource

Starts a new job for a specified automation. The job runs the automation with the provided input payload.

Sourcetype nonrec t = {
  1. awsAccountId : Values_1.AwsAccountId.t;
    (*

    The ID of the Amazon Web Services account that contains the automation.

    *)
  2. automationGroupId : Values_1.AutomateId.t;
    (*

    The ID of the automation group that contains the automation to run.

    *)
  3. automationId : Values_1.AutomateId.t;
    (*

    The ID of the automation to run.

    *)
  4. inputPayload : SensitiveIOPayload.t option;
    (*

    The input payload for the automation job, provided as a JSON string.

    *)
}
Sourceval context_ : string
Sourceval make : ?inputPayload:??? -> awsAccountId:Values_1.AwsAccountId.t -> automationGroupId:Values_1.AutomateId.t -> automationId:Values_1.AutomateId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_1.AwsAccountId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t