Module Values.ReplicationSetSource

The set of Amazon Web Services Region that your Incident Manager data will be replicated to and the KMS key used to encrypt the data.

Sourcetype nonrec t = {
  1. arn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the replication set.

    *)
  2. createdBy : Arn.t option;
    (*

    Details about who created the replication set.

    *)
  3. createdTime : Timestamp.t option;
    (*

    When the replication set was created.

    *)
  4. deletionProtected : Boolean.t option;
    (*

    Determines if the replication set deletion protection is enabled or not. If deletion protection is enabled, you can't delete the last Amazon Web Services Region in the replication set.

    *)
  5. lastModifiedBy : Arn.t option;
    (*

    Who last modified the replication set.

    *)
  6. lastModifiedTime : Timestamp.t option;
    (*

    When the replication set was last updated.

    *)
  7. regionMap : RegionInfoMap.t option;
    (*

    The map between each Amazon Web Services Region in your replication set and the KMS key that's used to encrypt the data in that Region.

    *)
  8. status : ReplicationSetStatus.t option;
    (*

    The status of the replication set. If the replication set is still pending, you can't use Incident Manager functionality.

    *)
}
Sourceval make : ?arn:??? -> ?createdBy:??? -> ?createdTime:??? -> ?deletionProtected:??? -> ?lastModifiedBy:??? -> ?lastModifiedTime:??? -> ?regionMap:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Map of ([> `String of RegionName.t ] * [> `Structure of (string * [> `Enum of string | `String of SseKmsKey.t | `Timestamp of Timestamp.t ]) list ]) list | `String of Arn.t | `Timestamp of Timestamp.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