@Stability(value=Stable)
public static interface CfnDeliveryStream.CloudWatchLoggingOptionsProperty
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.kinesisfirehose.*;
CloudWatchLoggingOptionsProperty cloudWatchLoggingOptionsProperty = CloudWatchLoggingOptionsProperty.builder()
.enabled(false)
.logGroupName("logGroupName")
.logStreamName("logStreamName")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeliveryStream.CloudWatchLoggingOptionsProperty.Builder
A builder for
CfnDeliveryStream.CloudWatchLoggingOptionsProperty |
static class |
CfnDeliveryStream.CloudWatchLoggingOptionsProperty.Jsii$Proxy
An implementation for
CfnDeliveryStream.CloudWatchLoggingOptionsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeliveryStream.CloudWatchLoggingOptionsProperty.Builder |
builder() |
default Object |
getEnabled()
Indicates whether CloudWatch Logs logging is enabled.
|
default String |
getLogGroupName()
The name of the CloudWatch Logs log group that contains the log stream that Kinesis Data Firehose will use.
|
default String |
getLogStreamName()
The name of the CloudWatch Logs log stream that Kinesis Data Firehose uses to send logs about data delivery.
|
@Stability(value=Stable) @Nullable default Object getEnabled()
@Stability(value=Stable) @Nullable default String getLogGroupName()
Conditional. If you enable logging, you must specify this property.
@Stability(value=Stable) @Nullable default String getLogStreamName()
Conditional. If you enable logging, you must specify this property.
@Stability(value=Stable) static CfnDeliveryStream.CloudWatchLoggingOptionsProperty.Builder builder()
Copyright © 2022. All rights reserved.