package awspersonalize // The Amazon S3 bucket that contains the training data to import. // // 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" // // dataSourceProperty := &DataSourceProperty{ // DataLocation: jsii.String("dataLocation"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-dataset-datasource.html // type CfnDataset_DataSourceProperty struct { // The path to the Amazon S3 bucket where the data that you want to upload to your dataset is stored. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-dataset-datasource.html#cfn-personalize-dataset-datasource-datalocation // DataLocation *string `field:"optional" json:"dataLocation" yaml:"dataLocation"` }