Module Values.MultiRegionConfigurationSource

Describes the configuration of this multi-Region key. This field appears only when the KMS key is a primary or replica of a multi-Region key. For more information about any listed KMS key, use the DescribeKey operation.

Sourcetype nonrec t = {
  1. multiRegionKeyType : MultiRegionKeyType.t option;
    (*

    Indicates whether the KMS key is a PRIMARY or REPLICA key.

    *)
  2. primaryKey : MultiRegionKey.t option;
    (*

    Displays the key ARN and Region of the primary key. This field includes the current KMS key if it is the primary key.

    *)
  3. replicaKeys : MultiRegionKeyList.t option;
    (*

    displays the key ARNs and Regions of all replica keys. This field includes the current KMS key if it is a replica key.

    *)
}
Sourceval make : ?multiRegionKeyType:??? -> ?primaryKey:??? -> ?replicaKeys:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of ArnType.t ]) list ] list | `Structure of (string * [> `String of ArnType.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