

翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。

# ProvisionedThroughputObject
<a name="sam-property-simpletable-provisionedthroughputobject"></a>

プロビジョニングされたスループットのプロパティを記述するオブジェクト。

## 構文
<a name="sam-property-simpletable-provisionedthroughputobject-syntax"></a>

 AWS Serverless Application Model (AWS SAM) テンプレートでこのエンティティを宣言するには、次の構文を使用します。

### YAML
<a name="w2aac13c22c41c19b5b5"></a>

```
  [ReadCapacityUnits](#sam-simpletable-provisionedthroughputobject-readcapacityunits): Integer
  [WriteCapacityUnits](#sam-simpletable-provisionedthroughputobject-writecapacityunits): Integer
```

## プロパティ
<a name="sam-property-simpletable-provisionedthroughputobject-properties"></a>

 `ReadCapacityUnits`   <a name="sam-simpletable-provisionedthroughputobject-readcapacityunits"></a>
1 秒間に消費される強力な整合性のある読み取りの最大数。この最大数を超えると、DynamoDB が `ThrottlingException` を返します。  
*タイプ:* 整数  
*必須:* はい  
*CloudFormation 互換性*: このプロパティは、 `AWS::DynamoDB::Table` `ProvisionedThroughput` データ型の `[ReadCapacityUnits](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-provisionedthroughput.html#aws-properties-dynamodb-table-provisionedthroughput-properties)`プロパティに直接渡されます。

 `WriteCapacityUnits`   <a name="sam-simpletable-provisionedthroughputobject-writecapacityunits"></a>
1 秒間に消費される書き込みの最大数。この最大数を超えると、DynamoDB が `ThrottlingException` を返します。  
*タイプ:* 整数  
*必須:* はい  
*CloudFormation 互換性*: このプロパティは、 `AWS::DynamoDB::Table` `ProvisionedThroughput` データ型の `[WriteCapacityUnits](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-provisionedthroughput.html#aws-properties-dynamodb-table-provisionedthroughput-properties)`プロパティに直接渡されます。

## 例
<a name="sam-property-simpletable-provisionedthroughputobject--examples"></a>

### ProvisionedThroughput
<a name="sam-property-simpletable-provisionedthroughputobject--examples--provisionedthroughput"></a>

プロビジョニングされたスループットの例。

#### YAML
<a name="sam-property-simpletable-provisionedthroughputobject--examples--provisionedthroughput--yaml"></a>

```
Properties:
   ProvisionedThroughput:
     ReadCapacityUnits: 5
     WriteCapacityUnits: 5
```