Module Values.S3DestinationSettingsSource

Settings associated with S3 destination

Sourcetype nonrec t = {
  1. accessControl : S3DestinationAccessControl.t option;
    (*

    Optional. Have MediaConvert automatically apply Amazon S3 access control for the outputs in this output group. When you don't use this setting, S3 automatically applies the default access control list PRIVATE.

    *)
  2. encryption : S3EncryptionSettings.t option;
    (*

    Settings for how your job outputs are encrypted as they are uploaded to Amazon S3.

    *)
  3. storageClass : S3StorageClass.t option;
    (*

    Specify the S3 storage class to use for this output. To use your destination's default storage class: Keep the default value, Not set. For more information about S3 storage classes, see https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-class-intro.html

    *)
}
Sourceval make : ?accessControl:??? -> ?encryption:??? -> ?storageClass:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `String of string ]) 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