Interface CfnDeliveryStream.CloudWatchLoggingOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeliveryStream.CloudWatchLoggingOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnDeliveryStream
@Stability(Stable)
public static interface CfnDeliveryStream.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.services.kinesisfirehose.*; CloudWatchLoggingOptionsProperty cloudWatchLoggingOptionsProperty = CloudWatchLoggingOptionsProperty.builder() .enabled(false) .logGroupName("logGroupName") .logStreamName("logStreamName") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDeliveryStream.CloudWatchLoggingOptionsProperty
static final class
An implementation forCfnDeliveryStream.CloudWatchLoggingOptionsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Indicates whether CloudWatch Logs logging is enabled.default String
The name of the CloudWatch Logs log group that contains the log stream that Kinesis Data Firehose will use.default String
The name of the CloudWatch Logs log stream that Kinesis Data Firehose uses to send logs about data delivery.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
Indicates whether CloudWatch Logs logging is enabled. -
getLogGroupName
The name of the CloudWatch Logs log group that contains the log stream that Kinesis Data Firehose will use.Conditional. If you enable logging, you must specify this property.
-
getLogStreamName
The name of the CloudWatch Logs log stream that Kinesis Data Firehose uses to send logs about data delivery.Conditional. If you enable logging, you must specify this property.
-
builder
-