AWSDynamoDBProvisionedThroughputDescription
Objective-C
@interface AWSDynamoDBProvisionedThroughputDescription
Swift
class AWSDynamoDBProvisionedThroughputDescription
Represents the provisioned throughput settings for the table, consisting of read and write capacity units, along with data about increases and decreases.
-
The date and time of the last provisioned throughput decrease for this table.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable lastDecreaseDateTime;
Swift
var lastDecreaseDateTime: Date? { get set }
-
The date and time of the last provisioned throughput increase for this table.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable lastIncreaseDateTime;
Swift
var lastIncreaseDateTime: Date? { get set }
-
The number of provisioned throughput decreases for this table during this UTC calendar day. For current maximums on provisioned throughput decreases, see Service, Account, and Table Quotas in the Amazon DynamoDB Developer Guide.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable numberOfDecreasesToday;
Swift
var numberOfDecreasesToday: NSNumber? { get set }
-
The maximum number of strongly consistent reads consumed per second before DynamoDB returns a
ThrottlingException
. Eventually consistent reads require less effort than strongly consistent reads, so a setting of 50ReadCapacityUnits
per second provides 100 eventually consistentReadCapacityUnits
per second.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
.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable writeCapacityUnits;
Swift
var writeCapacityUnits: NSNumber? { get set }