Module Values.S3LocationSource

Describes the S3 location.

Sourcetype nonrec t = {
  1. s3Bucket : S3Bucket.t;
    (*

    The S3 bucket of the S3 object.

    *)
  2. s3Key : S3Key.t option;
    (*

    The S3 key of the S3 object. This is required when used for the following: IconS3Location (Actions: CreateApplication and UpdateApplication) SessionScriptS3Location (Actions: CreateFleet and UpdateFleet) ScriptDetails (Actions: CreateAppBlock) SourceS3Location when creating an app block with CUSTOM PackagingType (Actions: CreateAppBlock) SourceS3Location when creating an app block with APPSTREAM2 PackagingType, and using an existing application package (VHD file). In this case, S3Key refers to the VHD file. If a new application package is required, then S3Key is not required. (Actions: CreateAppBlock)

    *)
}
Sourceval context_ : string
Sourceval make : ?s3Key:??? -> s3Bucket:S3Bucket.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of S3Bucket.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