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 classA builder forCfnProject.DataDeliveryObjectPropertystatic final classAn implementation forCfnProject.DataDeliveryObjectProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringIf the project stores evaluation events in CloudWatch Logs , this structure stores the log group name.default ObjectgetS3()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.Returns union: either
IResolvableorCfnProject.S3DestinationProperty- See Also:
-
builder
-