Show / Hide Table of Contents

Interface CfnDatasetPropsMixin.IS3LocationProperty

Represents an Amazon S3 location (bucket name, bucket owner, and object key) where DataBrew can read input data, or write output from a job.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.DataBrew
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnDatasetPropsMixin.IS3LocationProperty
Syntax (vb)
Public Interface CfnDatasetPropsMixin.IS3LocationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-dataset-s3location.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.CfnPropertyMixins.AWS.DataBrew;

             var s3LocationProperty = new S3LocationProperty {
                 Bucket = "bucket",
                 BucketOwner = "bucketOwner",
                 Key = "key"
             };

Synopsis

Properties

Bucket

The Amazon S3 bucket name.

BucketOwner

The AWS account ID of the bucket owner.

Key

The unique name of the object in the bucket.

Properties

Bucket

The Amazon S3 bucket name.

string? Bucket { get; }
Property Value

string

Remarks

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

BucketOwner

The AWS account ID of the bucket owner.

string? BucketOwner { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-dataset-s3location.html#cfn-databrew-dataset-s3location-bucketowner

Key

The unique name of the object in the bucket.

string? Key { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-dataset-s3location.html#cfn-databrew-dataset-s3location-key

Back to top Generated by DocFX