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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnProject.DataDeliveryObjectProperty
static final class
An implementation forCfnProject.DataDeliveryObjectProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
If the project stores evaluation events in CloudWatch Logs , this structure stores the log group name.default Object
getS3()
If the project stores evaluation events in an Amazon S3 bucket, this structure stores the bucket name and bucket prefix.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLogGroup
If the project stores evaluation events in CloudWatch Logs , this structure stores the log group name.- See Also:
-
getS3
If the project stores evaluation events in an Amazon S3 bucket, this structure stores the bucket name and bucket prefix.- See Also:
-
builder
-