Class: Aws::PaymentCryptography::Types::RemoveKeyReplicationRegionsInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb

Overview

Input parameters for removing replication regions from a specific key.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#key_identifierString

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.

Returns:

  • (String)


1908
1909
1910
1911
1912
1913
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 1908

class RemoveKeyReplicationRegionsInput < Struct.new(
  :key_identifier,
  :replication_regions)
  SENSITIVE = []
  include Aws::Structure
end

#replication_regionsArray<String>

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.

Returns:

  • (Array<String>)


1908
1909
1910
1911
1912
1913
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 1908

class RemoveKeyReplicationRegionsInput < Struct.new(
  :key_identifier,
  :replication_regions)
  SENSITIVE = []
  include Aws::Structure
end