Class CfnJobPropsMixin.OutputLocationProperty
The location in Amazon S3 or AWS Glue Data Catalog where the job writes its output.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnJobPropsMixin.OutputLocationProperty : CfnJobPropsMixin.IOutputLocationProperty
Syntax (vb)
Public Class CfnJobPropsMixin.OutputLocationProperty Implements CfnJobPropsMixin.IOutputLocationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins;
var outputLocationProperty = new OutputLocationProperty {
Bucket = "bucket",
BucketOwner = "bucketOwner",
Key = "key"
};
Synopsis
Constructors
| OutputLocationProperty() | The location in Amazon S3 or AWS Glue Data Catalog where the job writes its output. |
Properties
| Bucket | The Amazon S3 bucket name. |
| BucketOwner | The location in Amazon S3 or AWS Glue Data Catalog where the job writes its output. |
| Key | The unique name of the object in the bucket. |
Constructors
OutputLocationProperty()
The location in Amazon S3 or AWS Glue Data Catalog where the job writes its output.
public OutputLocationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins;
var outputLocationProperty = new OutputLocationProperty {
Bucket = "bucket",
BucketOwner = "bucketOwner",
Key = "key"
};
Properties
Bucket
The Amazon S3 bucket name.
public string? Bucket { get; set; }
Property Value
Remarks
BucketOwner
The location in Amazon S3 or AWS Glue Data Catalog where the job writes its output.
public string? BucketOwner { get; set; }
Property Value
Remarks
Key
The unique name of the object in the bucket.
public string? Key { get; set; }