interface SchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Forecast.CfnDatasetPropsMixin.SchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsforecast#CfnDatasetPropsMixin_SchemaProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.forecast.CfnDatasetPropsMixin.SchemaProperty |
Python | aws_cdk.cfn_property_mixins.aws_forecast.CfnDatasetPropsMixin.SchemaProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_forecast » CfnDatasetPropsMixin » SchemaProperty |
Defines the fields of a dataset.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_forecast as forecast } from '@aws-cdk/cfn-property-mixins';
const schemaProperty: forecast.CfnDatasetPropsMixin.SchemaProperty = {
attributes: [{
attributeName: 'attributeName',
attributeType: 'attributeType',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| attributes? | IResolvable | (IResolvable | Attributes)[] | An array of attributes specifying the name and type of each field in a dataset. |
attributes?
Type:
IResolvable | (IResolvable | Attributes)[]
(optional)
An array of attributes specifying the name and type of each field in a dataset.

.NET
Go
Java
Python
TypeScript