Interface CfnProject.DataDeliveryObjectProperty

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

@Stability(Stable) public static interface CfnProject.DataDeliveryObjectProperty extends software.amazon.jsii.JsiiSerializable
A structure that contains information about where Evidently is to store evaluation events for longer term storage.

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