ProvisionedThroughputObject - Amazon Serverless Application Model
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

ProvisionedThroughputObject

The object describing the properties of a provisioned throughput.

Syntax

To declare this entity in your Amazon Serverless Application Model (Amazon SAM) template, use the following syntax.

YAML

ReadCapacityUnits: Integer WriteCapacityUnits: Integer

Properties

ReadCapacityUnits

The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException.

Type: Integer

Required: Yes

Amazon CloudFormation compatibility: This property is passed directly to the ReadCapacityUnits property of the AWS::DynamoDB::Table ProvisionedThroughput data type.

WriteCapacityUnits

The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException.

Type: Integer

Required: Yes

Amazon CloudFormation compatibility: This property is passed directly to the WriteCapacityUnits property of the AWS::DynamoDB::Table ProvisionedThroughput data type.

Examples

ProvisionedThroughput

Provisioned throughput example.

YAML

Properties: ProvisionedThroughput: ReadCapacityUnits: 5 WriteCapacityUnits: 5