ProvisionedThroughputObject
The object describing the properties of a provisioned throughput.
Syntax
To declare this entity in your AWS Serverless Application Model (AWS SAM) template, use the following syntax.
YAML
ReadCapacityUnits:IntegerWriteCapacityUnits:Integer
Properties
-
ReadCapacityUnits -
The maximum number of strongly consistent reads consumed per second before DynamoDB returns a
ThrottlingException.Type: Integer
Required: Yes
AWS CloudFormation compatibility: This property is passed directly to the
ReadCapacityUnitsproperty of theAWS::DynamoDB::TableProvisionedThroughputdata type. -
WriteCapacityUnits -
The maximum number of writes consumed per second before DynamoDB returns a
ThrottlingException.Type: Integer
Required: Yes
AWS CloudFormation compatibility: This property is passed directly to the
WriteCapacityUnitsproperty of theAWS::DynamoDB::TableProvisionedThroughputdata type.
Examples
ProvisionedThroughput
Provisioned throughput example.
YAML
Properties: ProvisionedThroughput: ReadCapacityUnits:5WriteCapacityUnits:5