Interface CfnVerifiedAccessInstance.S3Property

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

@Stability(Stable) public static interface CfnVerifiedAccessInstance.S3Property extends software.amazon.jsii.JsiiSerializable
Options for Amazon S3 as a logging destination.

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.ec2.*;
 S3Property s3Property = S3Property.builder()
         .bucketName("bucketName")
         .bucketOwner("bucketOwner")
         .enabled(false)
         .prefix("prefix")
         .build();