Module Values.JobDataSource

Represents other information about a job required for a job worker to complete the job.

Sourcetype nonrec t = {
  1. actionTypeId : ActionTypeId.t option;
    (*

    Represents information about an action type.

    *)
  2. actionConfiguration : ActionConfiguration.t option;
    (*

    Represents information about an action configuration.

    *)
  3. pipelineContext : PipelineContext.t option;
    (*

    Represents information about a pipeline to a job worker. Includes pipelineArn and pipelineExecutionId for custom jobs.

    *)
  4. inputArtifacts : ArtifactList.t option;
    (*

    The artifact supplied to the job.

    *)
  5. outputArtifacts : ArtifactList.t option;
    (*

    The output of the job.

    *)
  6. artifactCredentials : AWSSessionCredentials.t option;
    (*

    Represents an Amazon Web Services session credentials object. These credentials are temporary credentials that are issued by Amazon Web Services Secure Token Service (STS). They can be used to access input and output artifacts in the S3 bucket used to store artifacts for the pipeline in CodePipeline.

    *)
  7. continuationToken : ContinuationToken.t option;
    (*

    A system-generated token, such as a deployment ID, required by a job to continue the job asynchronously.

    *)
  8. encryptionKey : EncryptionKey.t option;
    (*

    Represents information about the key used to encrypt data in the artifact store, such as an KMS key.

    *)
}
Sourceval make : ?actionTypeId:??? -> ?actionConfiguration:??? -> ?pipelineContext:??? -> ?inputArtifacts:??? -> ?outputArtifacts:??? -> ?artifactCredentials:??? -> ?continuationToken:??? -> ?encryptionKey:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ArtifactName.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of S3BucketName.t ]) list ]) list ]) list ] list | `String of ContinuationToken.t | `Structure of (string * [> `Enum of string | `Map of ([> `String of ActionConfigurationKey.t ] * [> `String of ActionConfigurationValue.t ]) list | `String of ActionProvider.t | `Structure of (string * [> `String of StageName.t ]) 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