Module Values.DefinitionS3LocationSource

Specifies the Amazon S3 location of a workflow definition file. This structure contains the bucket name, object key, and optional version ID for the workflow definition. Amazon Managed Workflows for Apache Airflow Serverless takes a snapshot of the definition file at the time of workflow creation or update, ensuring that the workflow behavior remains consistent even if the source file is modified. The definition must be a valid YAML file that uses supported Amazon Web Services operators and Amazon Managed Workflows for Apache Airflow Serverless syntax.

Sourcetype nonrec t = {
  1. bucket : String_.t;
    (*

    The name of the Amazon S3 bucket that contains the workflow definition file.

    *)
  2. objectKey : String_.t;
    (*

    The key (name) of the workflow definition file within the S3 bucket.

    *)
  3. versionId : String_.t option;
    (*

    Optional. The version ID of the workflow definition file in Amazon S3. If not specified, the latest version is used.

    *)
}
Sourceval context_ : string
Sourceval make : ?versionId:??? -> bucket:String_.t -> objectKey:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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