AWSDynamoDBGlobalSecondaryIndexUpdate
Objective-C
@interface AWSDynamoDBGlobalSecondaryIndexUpdate
Swift
class AWSDynamoDBGlobalSecondaryIndexUpdate
Represents one of the following:
A new global secondary index to be added to an existing table.
New provisioned throughput parameters for an existing global secondary index.
An existing global secondary index to be removed from an existing table.
-
The parameters required for creating a global secondary index on an existing table:
IndexName
KeySchema
AttributeDefinitions
Projection
ProvisionedThroughput
Declaration
Objective-C
@property (nonatomic, strong) AWSDynamoDBCreateGlobalSecondaryIndexAction *_Nullable create;
Swift
var create: AWSDynamoDBCreateGlobalSecondaryIndexAction? { get set }
-
The name of an existing global secondary index to be removed.
Declaration
Objective-C
@property (nonatomic, strong) AWSDynamoDBDeleteGlobalSecondaryIndexAction *_Nullable remove;
Swift
var remove: AWSDynamoDBDeleteGlobalSecondaryIndexAction? { get set }
-
The name of an existing global secondary index, along with new provisioned throughput settings to be applied to that index.
Declaration
Objective-C
@property (nonatomic, strong) AWSDynamoDBUpdateGlobalSecondaryIndexAction *_Nullable update;
Swift
var update: AWSDynamoDBUpdateGlobalSecondaryIndexAction? { get set }