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
object
CfnJob.OutputLocationProperty
Implements
CfnJob.IOutputLocationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.DataBrew
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnJob.OutputLocationProperty : CfnJob.IOutputLocationProperty
Syntax (vb)
Public Class CfnJob.OutputLocationProperty Implements CfnJob.IOutputLocationProperty
Remarks

See: 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()

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

See: 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"
             };

Properties

Bucket

The Amazon S3 bucket name.

public string Bucket { get; set; }
Property Value

string

Remarks

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

BucketOwner

The location in Amazon S3 or AWS Glue Data Catalog where the job writes its output.

public string? BucketOwner { get; set; }
Property Value

string

Remarks

See: 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

string

Remarks

See: 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