Module Values.AddKeyReplicationRegionsInputSource

Input parameters for adding replication regions to a specific key.

Sourcetype nonrec t = {
  1. keyIdentifier : KeyArnOrKeyAliasType.t;
    (*

    The key identifier (ARN or alias) of the key for which to add replication regions. This key must exist and be in a valid state for replication operations.

    *)
  2. replicationRegions : Regions.t;
    (*

    The list of Amazon Web Services Regions to add to the key's replication configuration. Each region must be a valid Amazon Web Services Region where Amazon Web Services Payment Cryptography is available. The key will be replicated to these regions, allowing cryptographic operations to be performed closer to your applications.

    *)
}
Sourceval context_ : string
Sourceval make : keyIdentifier:KeyArnOrKeyAliasType.t -> replicationRegions:Regions.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Region.t ] list | `String of KeyArnOrKeyAliasType.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