Class: Aws::SecretsManager::Types::ReplicaRegionType
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecretsManager::Types::ReplicaRegionType
- 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
-
#kms_key_id ⇒ String
The ARN, key ID, or alias of the KMS key to encrypt the secret.
-
#region ⇒ String
A Region code.
Instance Attribute Details
#kms_key_id ⇒ String
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
.
1540 1541 1542 1543 1544 1545 |
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 1540 class ReplicaRegionType < Struct.new( :region, :kms_key_id) SENSITIVE = [] include Aws::Structure end |
#region ⇒ String
A Region code. For a list of Region codes, see Name and code of Regions.
1540 1541 1542 1543 1544 1545 |
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 1540 class ReplicaRegionType < Struct.new( :region, :kms_key_id) SENSITIVE = [] include Aws::Structure end |