interface SchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Forecast.CfnDataset.SchemaProperty |
Java | software.amazon.awscdk.services.forecast.CfnDataset.SchemaProperty |
Python | aws_cdk.aws_forecast.CfnDataset.SchemaProperty |
TypeScript | @aws-cdk/aws-forecast » CfnDataset » 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 * as forecast from '@aws-cdk/aws-forecast';
const schemaProperty: forecast.CfnDataset.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
Java
Python
TypeScript