interface PrimaryKeyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SAM.CfnSimpleTable.PrimaryKeyProperty |
Java | software.amazon.awscdk.services.sam.CfnSimpleTable.PrimaryKeyProperty |
Python | aws_cdk.aws_sam.CfnSimpleTable.PrimaryKeyProperty |
TypeScript | @aws-cdk/aws-sam » CfnSimpleTable » PrimaryKeyProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sam from '@aws-cdk/aws-sam';
const primaryKeyProperty: sam.CfnSimpleTable.PrimaryKeyProperty = {
type: 'type',
// the properties below are optional
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| type | string | CfnSimpleTable.PrimaryKeyProperty.Type. |
| name? | string | CfnSimpleTable.PrimaryKeyProperty.Name. |
type
Type:
string
CfnSimpleTable.PrimaryKeyProperty.Type.
name?
Type:
string
(optional)
CfnSimpleTable.PrimaryKeyProperty.Name.

.NET
Java
Python
TypeScript