package awsforecast // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // attributesItemsProperty := &AttributesItemsProperty{ // AttributeName: jsii.String("attributeName"), // AttributeType: jsii.String("attributeType"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-forecast-dataset-attributesitems.html // type CfnDataset_AttributesItemsProperty struct { // Name of the dataset field. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-forecast-dataset-attributesitems.html#cfn-forecast-dataset-attributesitems-attributename // AttributeName *string `field:"optional" json:"attributeName" yaml:"attributeName"` // Data type of the field. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-forecast-dataset-attributesitems.html#cfn-forecast-dataset-attributesitems-attributetype // AttributeType *string `field:"optional" json:"attributeType" yaml:"attributeType"` }