Class: Aws::SecretsManager::Types::ReplicaRegionType

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

Overview

A custom type that specifies a Region and the KmsKeyId for a replica secret.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#kms_key_idString

The ARN, key ID, or alias of the KMS key to encrypt the secret. If you don't include this field, Secrets Manager uses aws/secretsmanager.

Returns:

  • (String)


1488
1489
1490
1491
1492
1493
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 1488

class ReplicaRegionType < Struct.new(
  :region,
  :kms_key_id)
  SENSITIVE = []
  include Aws::Structure
end

#regionString

A Region code. For a list of Region codes, see Name and code of Regions.

Returns:

  • (String)


1488
1489
1490
1491
1492
1493
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 1488

class ReplicaRegionType < Struct.new(
  :region,
  :kms_key_id)
  SENSITIVE = []
  include Aws::Structure
end