Module Values.S3ContentLocationUpdateSource

Describes an update for the Amazon S3 code content location for an application.

Sourcetype nonrec t = {
  1. bucketARNUpdate : BucketARN.t option;
    (*

    The new Amazon Resource Name (ARN) for the S3 bucket containing the application code.

    *)
  2. fileKeyUpdate : FileKey.t option;
    (*

    The new file key for the object containing the application code.

    *)
  3. objectVersionUpdate : ObjectVersion.t option;
    (*

    The new version of the object containing the application code.

    *)
}
Sourceval make : ?bucketARNUpdate:??? -> ?fileKeyUpdate:??? -> ?objectVersionUpdate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of BucketARN.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