AWSDynamoDBUpdateGlobalSecondaryIndexAction
Objective-C
@interface AWSDynamoDBUpdateGlobalSecondaryIndexAction
Swift
class AWSDynamoDBUpdateGlobalSecondaryIndexAction
Represents the new provisioned throughput settings to be applied to a global secondary index.
Required parameters: [IndexName]
-
The name of the global secondary index to be updated.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable indexName;
Swift
var indexName: String? { get set }
-
Updates the maximum number of read and write units for the specified global secondary index. If you use this parameter, you must specify
MaxReadRequestUnits
,MaxWriteRequestUnits
, or both.Declaration
Objective-C
@property (nonatomic, strong) AWSDynamoDBOnDemandThroughput *_Nullable onDemandThroughput;
Swift
var onDemandThroughput: AWSDynamoDBOnDemandThroughput? { get set }
-
Represents the provisioned throughput settings for the specified global secondary index.
For current minimum and maximum provisioned throughput values, see Service, Account, and Table Quotas in the Amazon DynamoDB Developer Guide.
Declaration
Objective-C
@property (nonatomic, strong) AWSDynamoDBProvisionedThroughput *_Nullable provisionedThroughput;
Swift
var provisionedThroughput: AWSDynamoDBProvisionedThroughput? { get set }