interface OutputLocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataBrew.CfnJob.OutputLocationProperty |
Java | software.amazon.awscdk.services.databrew.CfnJob.OutputLocationProperty |
Python | aws_cdk.aws_databrew.CfnJob.OutputLocationProperty |
TypeScript | @aws-cdk/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 * as databrew from '@aws-cdk/aws-databrew';
const outputLocationProperty: databrew.CfnJob.OutputLocationProperty = {
bucket: 'bucket',
// the properties below are optional
bucketOwner: 'bucketOwner',
key: 'key',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The Amazon S3 bucket name. |
| bucket | string | CfnJob.OutputLocationProperty.BucketOwner. |
| key? | string | The 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.

.NET
Java
Python
TypeScript