Module Values.S3DestinationSource

Specifies an S3 bucket to store data classification results in, and the encryption settings to use when storing results in that bucket. The bucket must be an existing general purpose bucket. It can be a bucket in your own account or a bucket that another account owns. If another account owns the bucket, you must specify both the unique identifier for the account and the name of the bucket.

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

    The name of the bucket. This must be the name of an existing general purpose bucket.

    *)
  2. expectedBucketOwner : string option;
    (*

    The unique identifier (ID) for the Amazon Web Services account that owns the bucket. This must be the ID for the account that owns the specified bucket.

    *)
  3. keyPrefix : string option;
    (*

    The path prefix to use in the path to the location in the bucket. This prefix specifies where to store classification results in the bucket.

    *)
  4. kmsKeyArn : string;
    (*

    The Amazon Resource Name (ARN) of the customer managed KMS key to use for encryption of the results. This must be the ARN of an existing, symmetric encryption KMS key that's enabled in the same Amazon Web Services Region as the bucket.

    *)
}
Sourceval context_ : string
Sourceval make : ?expectedBucketOwner:??? -> ?keyPrefix:??? -> bucketName:string -> kmsKeyArn:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string ]) 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