package awsquicksight // Amazon S3 manifest file location. // // 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" // // manifestFileLocationProperty := &ManifestFileLocationProperty{ // Bucket: jsii.String("bucket"), // Key: jsii.String("key"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-manifestfilelocation.html // type CfnDataSource_ManifestFileLocationProperty struct { // Amazon S3 bucket. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-manifestfilelocation.html#cfn-quicksight-datasource-manifestfilelocation-bucket // Bucket *string `field:"required" json:"bucket" yaml:"bucket"` // Amazon S3 key that identifies an object. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-manifestfilelocation.html#cfn-quicksight-datasource-manifestfilelocation-key // Key *string `field:"required" json:"key" yaml:"key"` }