Interface CfnProject.S3DestinationProperty

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

@Stability(Stable) public static interface CfnProject.S3DestinationProperty extends software.amazon.jsii.JsiiSerializable
If the project stores evaluation events in an Amazon S3 bucket, this structure stores the bucket name and bucket prefix.

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.evidently.*;
 S3DestinationProperty s3DestinationProperty = S3DestinationProperty.builder()
         .bucketName("bucketName")
         // the properties below are optional
         .prefix("prefix")
         .build();
 

See Also: