AWSDynamoDBProvisionedThroughput
Objective-C
@interface AWSDynamoDBProvisionedThroughput
Swift
class AWSDynamoDBProvisionedThroughput
Represents the provisioned throughput settings for a specified table or index. The settings can be modified using the UpdateTable
operation.
For current minimum and maximum provisioned throughput values, see Service, Account, and Table Quotas in the Amazon DynamoDB Developer Guide.
Required parameters: [ReadCapacityUnits, WriteCapacityUnits]
-
The maximum number of strongly consistent reads consumed per second before DynamoDB returns a
ThrottlingException
. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide.If read/write capacity mode is
PAY_PER_REQUEST
the value is set to 0.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable readCapacityUnits;
Swift
var readCapacityUnits: NSNumber? { get set }
-
The maximum number of writes consumed per second before DynamoDB returns a
ThrottlingException
. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide.If read/write capacity mode is
PAY_PER_REQUEST
the value is set to 0.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable writeCapacityUnits;
Swift
var writeCapacityUnits: NSNumber? { get set }