interface AttributesItemsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Forecast.Mixins.CfnDatasetPropsMixin.AttributesItemsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsforecast/mixins#CfnDatasetPropsMixin_AttributesItemsProperty |
Java | software.amazon.awscdk.mixins.preview.services.forecast.mixins.CfnDatasetPropsMixin.AttributesItemsProperty |
Python | aws_cdk.mixins_preview.aws_forecast.mixins.CfnDatasetPropsMixin.AttributesItemsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_forecast » mixins » CfnDatasetPropsMixin » AttributesItemsProperty |
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 attributesItemsProperty: forecast_mixins.CfnDatasetPropsMixin.AttributesItemsProperty = {
attributeName: 'attributeName',
attributeType: 'attributeType',
};
Properties
| Name | Type | Description |
|---|---|---|
| attribute | string | Name of the dataset field. |
| attribute | string | Data type of the field. |
attributeName?
Type:
string
(optional)
Name of the dataset field.
attributeType?
Type:
string
(optional)
Data type of the field.

.NET
Go
Java
Python
TypeScript