interface PrimaryKeyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SAM.CfnSimpleTablePropsMixin.PrimaryKeyProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssam#CfnSimpleTablePropsMixin_PrimaryKeyProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sam.CfnSimpleTablePropsMixin.PrimaryKeyProperty |
Python | aws_cdk.cfn_property_mixins.aws_sam.CfnSimpleTablePropsMixin.PrimaryKeyProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sam » CfnSimpleTablePropsMixin » PrimaryKeyProperty |
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 primaryKeyProperty: sam.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