Module Values.S3ConfigurationSource

The configuration that specifies an S3 location.

Sourcetype nonrec t = {
  1. bucketName : S3BucketName.t option;
    (*

    The bucket name of the customer S3 bucket.

    *)
  2. objectKeyPrefix : S3ObjectKeyPrefix.t option;
    (*

    The object key preview for the customer S3 location.

    *)
  3. encryptionOption : S3EncryptionOption.t option;
    (*

    The encryption option for the customer S3 location. Options are S3 server-side encryption with an S3 managed key or Amazon Web Services managed key.

    *)
  4. kmsKeyId : StringValue2048.t option;
    (*

    The KMS key ID for the customer S3 location when encrypting with an Amazon Web Services managed key.

    *)
}
Sourceval make : ?bucketName:??? -> ?objectKeyPrefix:??? -> ?encryptionOption:??? -> ?kmsKeyId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of S3BucketName.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