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: