aws-cdk-lib.aws_databrew.CfnJob.DatabaseTableOutputOptionsProperty

interface DatabaseTableOutputOptionsProperty

LanguageType name
.NETAmazon.CDK.AWS.DataBrew.CfnJob.DatabaseTableOutputOptionsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdatabrew#CfnJob_DatabaseTableOutputOptionsProperty
Javasoftware.amazon.awscdk.services.databrew.CfnJob.DatabaseTableOutputOptionsProperty
Pythonaws_cdk.aws_databrew.CfnJob.DatabaseTableOutputOptionsProperty
TypeScript aws-cdk-lib » aws_databrew » CfnJob » DatabaseTableOutputOptionsProperty

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 { aws_databrew as databrew } from 'aws-cdk-lib';
const databaseTableOutputOptionsProperty: databrew.CfnJob.DatabaseTableOutputOptionsProperty = {
  tableName: 'tableName',

  // the properties below are optional
  tempDirectory: {
    bucket: 'bucket',

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

Properties

NameTypeDescription
tableNamestringA prefix for the name of a table DataBrew will create in the database.
tempDirectory?IResolvable | S3LocationPropertyRepresents an Amazon S3 location (bucket name and object key) where DataBrew can store intermediate results.

tableName

Type: string

A prefix for the name of a table DataBrew will create in the database.


tempDirectory?

Type: IResolvable | S3LocationProperty (optional)

Represents an Amazon S3 location (bucket name and object key) where DataBrew can store intermediate results.