Module Values.StartBatchJobRequestSource

Starts a batch job and returns the unique identifier of this execution of the batch job. The associated application must be running in order to start the batch job.

Sourcetype nonrec t = {
  1. applicationId : Identifier.t;
    (*

    The unique identifier of the application associated with this batch job.

    *)
  2. authSecretsManagerArn : AuthSecretsManagerArn.t option;
    (*

    The Amazon Web Services Secrets Manager containing user's credentials for authentication and authorization for Start Batch Job execution operation.

    *)
  3. batchJobIdentifier : BatchJobIdentifier.t;
    (*

    The unique identifier of the batch job.

    *)
  4. jobParams : BatchJobParametersMap.t option;
    (*

    The collection of batch job parameters. For details about limits for keys and values, see Coding variables in JCL.

    *)
}
Sourceval context_ : string
Sourceval make : ?authSecretsManagerArn:??? -> ?jobParams:??? -> applicationId:Identifier.t -> batchJobIdentifier:BatchJobIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of BatchParamKey.t ] * [> `String of BatchParamValue.t ]) list | `String of Identifier.t | `Structure of (string * [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `String of String_.t ]) list ]) list ]) list ]) 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