interface CloudWatchLoggingOptionsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.CfnDeliveryStream.CloudWatchLoggingOptionsProperty |
Java | software.amazon.awscdk.services.kinesisfirehose.CfnDeliveryStream.CloudWatchLoggingOptionsProperty |
Python | aws_cdk.aws_kinesisfirehose.CfnDeliveryStream.CloudWatchLoggingOptionsProperty |
TypeScript | @aws-cdk/aws-kinesisfirehose » CfnDeliveryStream » CloudWatchLoggingOptionsProperty |
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 * as kinesisfirehose from '@aws-cdk/aws-kinesisfirehose';
const cloudWatchLoggingOptionsProperty: kinesisfirehose.CfnDeliveryStream.CloudWatchLoggingOptionsProperty = {
enabled: false,
logGroupName: 'logGroupName',
logStreamName: 'logStreamName',
};
Properties
Name | Type | Description |
---|---|---|
enabled? | boolean | IResolvable | Indicates whether CloudWatch Logs logging is enabled. |
log | string | The name of the CloudWatch Logs log group that contains the log stream that Kinesis Data Firehose will use. |
log | string | The name of the CloudWatch Logs log stream that Kinesis Data Firehose uses to send logs about data delivery. |
enabled?
Type:
boolean |
IResolvable
(optional)
Indicates whether CloudWatch Logs logging is enabled.
logGroupName?
Type:
string
(optional)
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.
logStreamName?
Type:
string
(optional)
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.