public static interface CfnProject.DataDeliveryObjectProperty
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 java.lang.String |
getLogGroup()
If the project stores evaluation events in CloudWatch Logs , this structure stores the log group name.
|
default java.lang.Object |
getS3()
If the project stores evaluation events in an Amazon S3 bucket, this structure stores the bucket name and bucket prefix.
|
default java.lang.String getLogGroup()
default java.lang.Object getS3()
static CfnProject.DataDeliveryObjectProperty.Builder builder()