package awsdatabrew // Represents options that specify how and where DataBrew writes the database 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" // // databaseTableOutputOptionsProperty := &DatabaseTableOutputOptionsProperty{ // TableName: jsii.String("tableName"), // // // the properties below are optional // TempDirectory: &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-databasetableoutputoptions.html // type CfnJob_DatabaseTableOutputOptionsProperty struct { // A prefix for the name of a table DataBrew will create in the database. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-job-databasetableoutputoptions.html#cfn-databrew-job-databasetableoutputoptions-tablename // TableName *string `field:"required" json:"tableName" yaml:"tableName"` // Represents an Amazon S3 location (bucket name and object key) where DataBrew can store intermediate results. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-job-databasetableoutputoptions.html#cfn-databrew-job-databasetableoutputoptions-tempdirectory // TempDirectory interface{} `field:"optional" json:"tempDirectory" yaml:"tempDirectory"` }