Module Values_0.ResourceDataSyncS3DestinationSource

Information about the target S3 bucket for the resource data sync.

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

    The name of the S3 bucket where the aggregated data is stored.

    *)
  2. prefix : ResourceDataSyncS3Prefix.t option;
    (*

    An Amazon S3 prefix for the bucket.

    *)
  3. syncFormat : ResourceDataSyncS3Format.t;
    (*

    A supported sync format. The following format is currently supported: JsonSerDe

    *)
  4. region : ResourceDataSyncS3Region.t;
    (*

    The Amazon Web Services Region with the S3 bucket targeted by the resource data sync.

    *)
  5. aWSKMSKeyARN : ResourceDataSyncAWSKMSKeyARN.t option;
    (*

    The ARN of an encryption key for a destination in Amazon S3. Must belong to the same Region as the destination S3 bucket.

    *)
  6. destinationDataSharing : ResourceDataSyncDestinationDataSharing.t option;
    (*

    Enables destination data sharing. By default, this field is null.

    *)
}
Sourceval context_ : string
Sourceval make : ?prefix:??? -> ?aWSKMSKeyARN:??? -> ?destinationDataSharing:??? -> bucketName:ResourceDataSyncS3BucketName.t -> syncFormat:ResourceDataSyncS3Format.t -> region:ResourceDataSyncS3Region.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceDataSyncS3BucketName.t | `Structure of (string * [> `String of ResourceDataSyncDestinationDataSharingType.t ]) 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