interface ProvisionedThroughputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SAM.CfnSimpleTablePropsMixin.ProvisionedThroughputProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssam#CfnSimpleTablePropsMixin_ProvisionedThroughputProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sam.CfnSimpleTablePropsMixin.ProvisionedThroughputProperty |
Python | aws_cdk.cfn_property_mixins.aws_sam.CfnSimpleTablePropsMixin.ProvisionedThroughputProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sam » CfnSimpleTablePropsMixin » ProvisionedThroughputProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sam as sam } from '@aws-cdk/cfn-property-mixins';
const provisionedThroughputProperty: sam.CfnSimpleTablePropsMixin.ProvisionedThroughputProperty = {
readCapacityUnits: 123,
writeCapacityUnits: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| read | number | |
| write | number |
readCapacityUnits?
Type:
number
(optional)
writeCapacityUnits?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript