interface S3TableOutputOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataBrew.CfnJobPropsMixin.S3TableOutputOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatabrew#CfnJobPropsMixin_S3TableOutputOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.databrew.CfnJobPropsMixin.S3TableOutputOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_databrew.CfnJobPropsMixin.S3TableOutputOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_databrew » 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 { aws_databrew as databrew } from '@aws-cdk/cfn-property-mixins';
const s3TableOutputOptionsProperty: databrew.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