Interface CfnBucket.DestinationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBucket.DestinationProperty.Jsii$Proxy
Enclosing class:
CfnBucket

@Stability(Stable) public static interface CfnBucket.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.services.s3.*;
 DestinationProperty destinationProperty = DestinationProperty.builder()
         .bucketArn("bucketArn")
         .format("format")
         // the properties below are optional
         .bucketAccountId("bucketAccountId")
         .prefix("prefix")
         .build();
 

See Also: