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
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
Remarks
BucketOwner
The AWS account ID of the bucket owner.
string? BucketOwner { get; }
Property Value
Remarks
Key
The unique name of the object in the bucket.
string? Key { get; }