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

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

Overview

Note:

When making an API call, you may pass ReplicaRegionType data as a hash:

{
  region: "RegionType",
  kms_key_id: "KmsKeyIdType",
}

(Optional) Custom type consisting of a ‘Region` (required) and the `KmsKeyId` which can be an `ARN`, `Key ID`, or `Alias`.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#kms_key_idString

Can be an ‘ARN`, `Key ID`, or `Alias`.

Returns:

  • (String)


1545
1546
1547
1548
1549
1550
# File 'lib/aws-sdk-secretsmanager/types.rb', line 1545

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

#regionString

Describes a single instance of Region objects.

Returns:

  • (String)


1545
1546
1547
1548
1549
1550
# File 'lib/aws-sdk-secretsmanager/types.rb', line 1545

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