interface S3TableOutputOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnJobPropsMixin.S3TableOutputOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnJobPropsMixin_S3TableOutputOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnJobPropsMixin.S3TableOutputOptionsProperty |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnJobPropsMixin.S3TableOutputOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » CfnJobPropsMixin » S3TableOutputOptionsProperty |
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 { mixins as databrew_mixins } from '@aws-cdk/mixins-preview/aws-databrew';
const s3TableOutputOptionsProperty: databrew_mixins.CfnJobPropsMixin.S3TableOutputOptionsProperty = {
location: {
bucket: 'bucket',
bucketOwner: 'bucketOwner',
key: 'key',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| location? | IResolvable | S3 | Represents an Amazon S3 location (bucket name and object key) where DataBrew can write output from a job. |
location?
Type:
IResolvable | S3
(optional)
Represents an Amazon S3 location (bucket name and object key) where DataBrew can write output from a job.

.NET
Go
Java
Python
TypeScript