Table of Contents

Class UpdateGlobalTableRequest

Namespace
Amazon.DynamoDBv2.Model
Assembly
AWSSDK.DynamoDBv2.dll

Container for the parameters to the UpdateGlobalTable operation. Adds or removes replicas in the specified global table. The global table must already exist to be able to use this operation. Any replica to be added must be empty, have the same name as the global table, have the same key schema, have DynamoDB Streams enabled, and have the same provisioned and maximum write capacity units.

note

Although you can use

UpdateGlobalTable
to add replicas and remove replicas in a single request, for simplicity we recommend that you issue separate requests for adding or removing replicas.

If global secondary indexes are specified, then the following conditions must also be met:

  • The global secondary indexes must have the same name.

  • The global secondary indexes must have the same hash key and sort key (if present).

  • The global secondary indexes must have the same provisioned and maximum write capacity units.

public class UpdateGlobalTableRequest : AmazonDynamoDBRequest
Inheritance
UpdateGlobalTableRequest

Constructors

UpdateGlobalTableRequest()

public UpdateGlobalTableRequest()

Properties

GlobalTableName

Gets and sets the property GlobalTableName.

The global table name.

public string GlobalTableName { get; set; }

Property Value

string

ReplicaUpdates

Gets and sets the property ReplicaUpdates.

A list of Regions that should be added or removed from the global table.

public List<ReplicaUpdate> ReplicaUpdates { get; set; }

Property Value

List<ReplicaUpdate>