Class: Aws::DynamoDB::Types::UpdateReplicationGroupMemberAction

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

Overview

Note:

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

{
  region_name: "RegionName", # required
  kms_master_key_id: "KMSMasterKeyId",
  provisioned_throughput_override: {
    read_capacity_units: 1,
  },
  global_secondary_indexes: [
    {
      index_name: "IndexName", # required
      provisioned_throughput_override: {
        read_capacity_units: 1,
      },
    },
  ],
}

Represents a replica to be modified.

Instance Attribute Summary collapse

Instance Attribute Details

#global_secondary_indexesArray<Types::ReplicaGlobalSecondaryIndex>

Replica-specific global secondary index settings.



9576
9577
9578
9579
9580
9581
9582
# File 'lib/aws-sdk-dynamodb/types.rb', line 9576

class UpdateReplicationGroupMemberAction < Struct.new(
  :region_name,
  :kms_master_key_id,
  :provisioned_throughput_override,
  :global_secondary_indexes)
  include Aws::Structure
end

#kms_master_key_idString

The AWS KMS customer master key (CMK) of the replica that should be used for AWS KMS encryption. To specify a CMK, use its key ID, Amazon Resource Name (ARN), alias name, or alias ARN. Note that you should only provide this parameter if the key is different from the default DynamoDB KMS master key alias/aws/dynamodb.

Returns:

  • (String)


9576
9577
9578
9579
9580
9581
9582
# File 'lib/aws-sdk-dynamodb/types.rb', line 9576

class UpdateReplicationGroupMemberAction < Struct.new(
  :region_name,
  :kms_master_key_id,
  :provisioned_throughput_override,
  :global_secondary_indexes)
  include Aws::Structure
end

#provisioned_throughput_overrideTypes::ProvisionedThroughputOverride

Replica-specific provisioned throughput. If not specified, uses the source table’s provisioned throughput settings.



9576
9577
9578
9579
9580
9581
9582
# File 'lib/aws-sdk-dynamodb/types.rb', line 9576

class UpdateReplicationGroupMemberAction < Struct.new(
  :region_name,
  :kms_master_key_id,
  :provisioned_throughput_override,
  :global_secondary_indexes)
  include Aws::Structure
end

#region_nameString

The Region where the replica exists.

Returns:

  • (String)


9576
9577
9578
9579
9580
9581
9582
# File 'lib/aws-sdk-dynamodb/types.rb', line 9576

class UpdateReplicationGroupMemberAction < Struct.new(
  :region_name,
  :kms_master_key_id,
  :provisioned_throughput_override,
  :global_secondary_indexes)
  include Aws::Structure
end