interface PrimaryKeyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SAM.Mixins.CfnSimpleTablePropsMixin.PrimaryKeyProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssam/mixins#CfnSimpleTablePropsMixin_PrimaryKeyProperty |
Java | software.amazon.awscdk.mixins.preview.services.sam.mixins.CfnSimpleTablePropsMixin.PrimaryKeyProperty |
Python | aws_cdk.mixins_preview.aws_sam.mixins.CfnSimpleTablePropsMixin.PrimaryKeyProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sam » mixins » CfnSimpleTablePropsMixin » PrimaryKeyProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sam_mixins } from '@aws-cdk/mixins-preview/aws-sam';
const primaryKeyProperty: sam_mixins.CfnSimpleTablePropsMixin.PrimaryKeyProperty = {
name: 'name',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | |
| type? | string |
name?
Type:
string
(optional)
type?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript