Class CfnJob.OutputLocationProperty
The location in Amazon S3 or AWS Glue Data Catalog where the job writes its output.
Inheritance
System.Object
    CfnJob.OutputLocationProperty
  Implements
Namespace: Amazon.CDK.AWS.DataBrew
Assembly: Amazon.CDK.AWS.DataBrew.dll
Syntax (csharp)
public class OutputLocationProperty : Object, CfnJob.IOutputLocationPropertySyntax (vb)
Public Class OutputLocationProperty
    Inherits Object
    Implements CfnJob.IOutputLocationPropertyRemarks
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.AWS.DataBrew;
var outputLocationProperty = new OutputLocationProperty {
    Bucket = "bucket",
    // the properties below are optional
    BucketOwner = "bucketOwner",
    Key = "key"
};Synopsis
Constructors
| OutputLocationProperty() | 
Properties
| Bucket | The Amazon S3 bucket name. | 
| BucketOwner | 
 | 
| Key | The unique name of the object in the bucket. | 
Constructors
OutputLocationProperty()
public OutputLocationProperty()Properties
Bucket
The Amazon S3 bucket name.
public string Bucket { get; set; }Property Value
System.String
Remarks
BucketOwner
CfnJob.OutputLocationProperty.BucketOwner.
public string BucketOwner { get; set; }Property Value
System.String
Remarks
Key
The unique name of the object in the bucket.
public string Key { get; set; }Property Value
System.String