interface KeySchemaItemsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DynamoDB.CfnStream.KeySchemaItemsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdynamodb#CfnStream_KeySchemaItemsProperty |
Java | software.amazon.awscdk.services.dynamodb.CfnStream.KeySchemaItemsProperty |
Python | aws_cdk.aws_dynamodb.CfnStream.KeySchemaItemsProperty |
TypeScript | aws-cdk-lib » aws_dynamodb » CfnStream » KeySchemaItemsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dynamodb as dynamodb } from 'aws-cdk-lib';
const keySchemaItemsProperty: dynamodb.CfnStream.KeySchemaItemsProperty = {
attributeName: 'attributeName',
keyType: 'keyType',
};
Properties
| Name | Type | Description |
|---|---|---|
| attribute | string | |
| key | string |
attributeName
Type:
string
keyType
Type:
string

.NET
Go
Java
Python
TypeScript