Interface CfnBucketPropsMixin.DestinationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBucketPropsMixin.DestinationProperty.Jsii$Proxy
- Enclosing class:
CfnBucketPropsMixin
@Stability(Stable)
public static interface CfnBucketPropsMixin.DestinationProperty
extends software.amazon.jsii.JsiiSerializable
Specifies information about where to publish analysis or configuration results for an Amazon S3 bucket.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.s3.*;
DestinationProperty destinationProperty = DestinationProperty.builder()
.bucketAccountId("bucketAccountId")
.bucketArn("bucketArn")
.format("format")
.prefix("prefix")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBucketPropsMixin.DestinationPropertystatic final classAn implementation forCfnBucketPropsMixin.DestinationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe account ID that owns the destination S3 bucket.default ObjectThe Amazon Resource Name (ARN) of the bucket to which data is exported.default StringSpecifies the file format used when exporting data to Amazon S3.default StringThe prefix to use when exporting data.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketAccountId
The account ID that owns the destination S3 bucket.If no account ID is provided, the owner is not validated before exporting data.
Although this value is optional, we strongly recommend that you set it to help prevent problems if the destination bucket ownership changes.
- See Also:
-
getBucketArn
The Amazon Resource Name (ARN) of the bucket to which data is exported.Returns union: either
StringorIBucketRef- See Also:
-
getFormat
Specifies the file format used when exporting data to Amazon S3.Allowed values :
CSV|ORC|Parquet- See Also:
-
getPrefix
The prefix to use when exporting data.The prefix is prepended to all results.
- See Also:
-
builder
-