interface SchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SCN.CfnDatasetPropsMixin.SchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsscn#CfnDatasetPropsMixin_SchemaProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.scn.CfnDatasetPropsMixin.SchemaProperty |
Python | aws_cdk.cfn_property_mixins.aws_scn.CfnDatasetPropsMixin.SchemaProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_scn » CfnDatasetPropsMixin » SchemaProperty |
The schema of the dataset.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-scn-dataset-schema.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_scn as scn } from '@aws-cdk/cfn-property-mixins';
const schemaProperty: scn.CfnDatasetPropsMixin.SchemaProperty = {
fields: [{
isRequired: false,
name: 'name',
type: 'type',
}],
name: 'name',
primaryKeys: [{
name: 'name',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| fields? | IResolvable | (IResolvable | Data)[] | The list of field details of the dataset schema. |
| name? | string | The name of the dataset schema. |
| primary | IResolvable | (IResolvable | Data)[] | The list of primary key fields for the dataset. |
fields?
Type:
IResolvable | (IResolvable | Data)[]
(optional)
The list of field details of the dataset schema.
name?
Type:
string
(optional)
The name of the dataset schema.
primaryKeys?
Type:
IResolvable | (IResolvable | Data)[]
(optional)
The list of primary key fields for the dataset.

.NET
Go
Java
Python
TypeScript