Interface CfnDeliveryStreamPropsMixin.CloudWatchLoggingOptionsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeliveryStreamPropsMixin.CloudWatchLoggingOptionsProperty.Jsii$Proxy
Enclosing class:
CfnDeliveryStreamPropsMixin

@Stability(Stable) public static interface CfnDeliveryStreamPropsMixin.CloudWatchLoggingOptionsProperty extends software.amazon.jsii.JsiiSerializable
The CloudWatchLoggingOptions property type specifies Amazon CloudWatch Logs (CloudWatch Logs) logging options that Amazon Kinesis Data Firehose (Kinesis Data Firehose) uses for the delivery stream.

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.kinesisfirehose.*;
 CloudWatchLoggingOptionsProperty cloudWatchLoggingOptionsProperty = CloudWatchLoggingOptionsProperty.builder()
         .enabled(false)
         .logGroupName("logGroupName")
         .logStreamName("logStreamName")
         .build();
 

See Also: