aws-cdk-lib.aws_databrew.CfnJob.S3TableOutputOptionsProperty

interface S3TableOutputOptionsProperty

LanguageType name
.NETAmazon.CDK.AWS.DataBrew.CfnJob.S3TableOutputOptionsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdatabrew#CfnJob_S3TableOutputOptionsProperty
Javasoftware.amazon.awscdk.services.databrew.CfnJob.S3TableOutputOptionsProperty
Pythonaws_cdk.aws_databrew.CfnJob.S3TableOutputOptionsProperty
TypeScript aws-cdk-lib » aws_databrew » CfnJob » 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-lib';
const s3TableOutputOptionsProperty: databrew.CfnJob.S3TableOutputOptionsProperty = {
  location: {
    bucket: 'bucket',

    // the properties below are optional
    bucketOwner: 'bucketOwner',
    key: 'key',
  },
};

Properties

NameTypeDescription
locationIResolvable | S3LocationPropertyRepresents an Amazon S3 location (bucket name and object key) where DataBrew can write output from a job.

location

Type: IResolvable | S3LocationProperty

Represents an Amazon S3 location (bucket name and object key) where DataBrew can write output from a job.