Interface CfnDataset.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.AWS.DataBrew
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IS3LocationProperty
Syntax (vb)
Public Interface IS3LocationProperty
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.AWS.DataBrew;
var s3LocationProperty = new S3LocationProperty {
Bucket = "bucket",
// the properties below are optional
BucketOwner = "bucketOwner",
Key = "key"
};
Synopsis
Properties
Bucket | The Amazon S3 bucket name. |
Bucket |
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
System.
Remarks
BucketOwner
The AWS account ID of the bucket owner.
virtual string BucketOwner { get; }
Property Value
System.
Remarks
Key
The unique name of the object in the bucket.
virtual string Key { get; }
Property Value
System.