Module Values.JobResourceSource

Contains an array of Amazon Web Services resource objects. Each object represents an Amazon S3 bucket, an Lambda function, or an Amazon Machine Image (AMI) based on Amazon EC2 that is associated with a particular job.

Sourcetype nonrec t = {
  1. s3Resources : S3ResourceList.t option;
    (*

    An array of S3Resource objects.

    *)
  2. lambdaResources : LambdaResourceList.t option;
    (*

    The Python-language Lambda functions for this job.

    *)
  3. ec2AmiResources : Ec2AmiResourceList.t option;
    (*

    The Amazon Machine Images (AMIs) associated with this job.

    *)
}
Sourceval make : ?s3Resources:??? -> ?lambdaResources:??? -> ?ec2AmiResources:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of ResourceARN.t ]) list ] list | `String of ResourceARN.t | `Structure of (string * [> `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