package awsdatabrew // Represents options that specify how and where DataBrew writes the Amazon S3 output generated by recipe jobs. // // 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" // // s3TableOutputOptionsProperty := &S3TableOutputOptionsProperty{ // Location: &S3LocationProperty{ // Bucket: jsii.String("bucket"), // // // the properties below are optional // BucketOwner: jsii.String("bucketOwner"), // Key: jsii.String("key"), // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-job-s3tableoutputoptions.html // type CfnJob_S3TableOutputOptionsProperty struct { // Represents an Amazon S3 location (bucket name and object key) where DataBrew can write output from a job. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-job-s3tableoutputoptions.html#cfn-databrew-job-s3tableoutputoptions-location // Location interface{} `field:"required" json:"location" yaml:"location"` }