Interface CfnProjectPropsMixin.DataDeliveryObjectProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProjectPropsMixin.DataDeliveryObjectProperty.Jsii$Proxy
- Enclosing class:
CfnProjectPropsMixin
@Stability(Stable)
public static interface CfnProjectPropsMixin.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.cfnpropertymixins.services.evidently.*;
DataDeliveryObjectProperty dataDeliveryObjectProperty = DataDeliveryObjectProperty.builder()
.logGroup("logGroup")
.s3(S3DestinationProperty.builder()
.bucketName("bucketName")
.prefix("prefix")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProjectPropsMixin.DataDeliveryObjectPropertystatic final classAn implementation forCfnProjectPropsMixin.DataDeliveryObjectProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectIf 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.Returns union: either
StringorILogGroupRef- 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
IResolvableorCfnProjectPropsMixin.S3DestinationProperty- See Also:
-
builder
-