Module Values.DataLakeReplicationConfigurationSource

Provides replication details for objects stored in the Amazon Security Lake data lake.

Sourcetype nonrec t = {
  1. regions : RegionList.t option;
    (*

    Specifies one or more centralized rollup Regions. The Amazon Web Services Region specified in the region parameter of the CreateDataLake or UpdateDataLake operations contributes data to the rollup Region or Regions specified in this parameter. Replication enables automatic, asynchronous copying of objects across Amazon S3 buckets. S3 buckets that are configured for object replication can be owned by the same Amazon Web Services account or by different accounts. You can replicate objects to a single destination bucket or to multiple destination buckets. The destination buckets can be in different Regions or within the same Region as the source bucket.

    *)
  2. roleArn : RoleArn.t option;
    (*

    Replication settings for the Amazon S3 buckets. This parameter uses the Identity and Access Management (IAM) role you created that is managed by Security Lake, to ensure the replication setting is correct.

    *)
}
Sourceval make : ?regions:??? -> ?roleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Region.t ] list | `String of RoleArn.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