@Stability(value=Stable)
public static interface CfnProject.DataDeliveryObjectProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnProject.DataDeliveryObjectProperty.Builder
A builder for
CfnProject.DataDeliveryObjectProperty |
static class |
CfnProject.DataDeliveryObjectProperty.Jsii$Proxy
An implementation for
CfnProject.DataDeliveryObjectProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnProject.DataDeliveryObjectProperty.Builder |
builder() |
default String |
getLogGroup()
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.
|
@Stability(value=Stable) @Nullable default String getLogGroup()
@Stability(value=Stable) @Nullable default Object getS3()
@Stability(value=Stable) static CfnProject.DataDeliveryObjectProperty.Builder builder()
Copyright © 2022. All rights reserved.