aws-cdk-lib.aws_databrew.CfnJob.OutputLocationProperty

interface OutputLocationProperty

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

The location in Amazon S3 or AWS Glue Data Catalog where the job writes its output.

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 outputLocationProperty: databrew.CfnJob.OutputLocationProperty = {
  bucket: 'bucket',

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

Properties

NameTypeDescription
bucketstringThe Amazon S3 bucket name.
bucketOwner?stringCfnJob.OutputLocationProperty.BucketOwner.
key?stringThe unique name of the object in the bucket.

bucket

Type: string

The Amazon S3 bucket name.


bucketOwner?

Type: string (optional)

CfnJob.OutputLocationProperty.BucketOwner.


key?

Type: string (optional)

The unique name of the object in the bucket.