interface SchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Forecast.Mixins.CfnDatasetPropsMixin.SchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsforecast/mixins#CfnDatasetPropsMixin_SchemaProperty |
Java | software.amazon.awscdk.mixins.preview.services.forecast.mixins.CfnDatasetPropsMixin.SchemaProperty |
Python | aws_cdk.mixins_preview.aws_forecast.mixins.CfnDatasetPropsMixin.SchemaProperty |
TypeScript | @aws-cdk/mixins-preview » aws_forecast » mixins » 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 { mixins as forecast_mixins } from '@aws-cdk/mixins-preview/aws-forecast';
const schemaProperty: forecast_mixins.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