Module Values.ReplicationDetailsSource

Provides information about settings that define whether one or more objects in an S3 bucket are replicated to S3 buckets for other Amazon Web Services accounts and, if so, which accounts.

Sourcetype nonrec t = {
  1. replicated : bool option;
    (*

    Specifies whether the bucket is configured to replicate one or more objects to any destination.

    *)
  2. replicatedExternally : bool option;
    (*

    Specifies whether the bucket is configured to replicate one or more objects to a bucket for an Amazon Web Services account that isn't part of your Amazon Macie organization. An Amazon Macie organization is a set of Macie accounts that are centrally managed as a group of related accounts through Organizations or by Macie invitation.

    *)
  3. replicationAccounts : string list option;
    (*

    An array of Amazon Web Services account IDs, one for each Amazon Web Services account that owns a bucket that the bucket is configured to replicate one or more objects to.

    *)
}
Sourceval make : ?replicated:??? -> ?replicatedExternally:??? -> ?replicationAccounts:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of bool | `List of [> `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