Show / Hide Table of Contents

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
CfnJob.IOutputLocationProperty
Namespace: Amazon.CDK.AWS.DataBrew
Assembly: Amazon.CDK.AWS.DataBrew.dll
Syntax (csharp)
public class OutputLocationProperty : Object, CfnJob.IOutputLocationProperty
Syntax (vb)
Public Class OutputLocationProperty
    Inherits Object
    Implements CfnJob.IOutputLocationProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-job-outputlocation.html

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

CfnJob.OutputLocationProperty.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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-job-outputlocation.html#cfn-databrew-job-outputlocation-bucket

BucketOwner

CfnJob.OutputLocationProperty.BucketOwner.

public string BucketOwner { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-job-outputlocation.html#cfn-databrew-job-outputlocation-bucketowner

Key

The unique name of the object in the bucket.

public string Key { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-job-outputlocation.html#cfn-databrew-job-outputlocation-key

Implements

CfnJob.IOutputLocationProperty
Back to top Generated by DocFX