Module Values.RemoveKeyReplicationRegionsInputSource

Input parameters for removing replication regions from a specific key.

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

    The key identifier (ARN or alias) of the key from which to remove replication regions. This key must exist and have replication enabled in the specified regions.

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

    The list of Amazon Web Services Regions to remove from the key's replication configuration. The key will no longer be available for cryptographic operations in these regions after removal. Ensure no active operations depend on the key in these regions before removal.

    *)
}
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