interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnJobPropsMixin.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnJobPropsMixin_S3LocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnJobPropsMixin.S3LocationProperty |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnJobPropsMixin.S3LocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » CfnJobPropsMixin » 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 { mixins as databrew_mixins } from '@aws-cdk/mixins-preview/aws-databrew';
const s3LocationProperty: databrew_mixins.CfnJobPropsMixin.S3LocationProperty = {
bucket: 'bucket',
bucketOwner: 'bucketOwner',
key: 'key',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | The Amazon S3 bucket name. |
| bucket | string | The AWS account ID of the bucket owner. |
| key? | string | The unique name of the object in the bucket. |
bucket?
Type:
string
(optional)
The Amazon S3 bucket name.
bucketOwner?
Type:
string
(optional)
The AWS account ID of the bucket owner.
key?
Type:
string
(optional)
The unique name of the object in the bucket.

.NET
Go
Java
Python
TypeScript