interface ILoggingConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.ILoggingConfig |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#ILoggingConfig |
Java | software.amazon.awscdk.services.kinesisfirehose.ILoggingConfig |
Python | aws_cdk.aws_kinesisfirehose.ILoggingConfig |
TypeScript (source) | aws-cdk-lib » aws_kinesisfirehose » ILoggingConfig |
Implemented by
Disable, Enable
Configuration interface for logging errors when data transformation or delivery fails.
This interface defines whether logging is enabled and optionally allows specifying a CloudWatch Log Group for storing error logs.
Properties
| Name | Type | Description |
|---|---|---|
| logging | boolean | If true, log errors when data transformation or data delivery fails. |
| log | ILog | The CloudWatch log group where log streams will be created to hold error logs. |
logging
Type:
boolean
If true, log errors when data transformation or data delivery fails.
true when using EnableLogging, false when using DisableLogging.
logGroup?
Type:
ILog
(optional, default: if logging is set to true, a log group will be created for you.)
The CloudWatch log group where log streams will be created to hold error logs.

.NET
Go
Java
Python
TypeScript (