aws-cdk-lib.aws_databrew.CfnDataset.S3LocationProperty

interface S3LocationProperty

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

Represents an Amazon S3 location (bucket name, bucket owner, and object key) where DataBrew can read input data, or write output from a job.

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 s3LocationProperty: databrew.CfnDataset.S3LocationProperty = {
  bucket: 'bucket',

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

Properties

NameTypeDescription
bucketstringThe Amazon S3 bucket name.
key?stringThe unique name of the object in the bucket.

bucket

Type: string

The Amazon S3 bucket name.


key?

Type: string (optional)

The unique name of the object in the bucket.