DisableLogging
- class aws_cdk.aws_kinesisfirehose.DisableLogging
 Bases:
objectDisables logging for error logs.
When this class is used, logging is disabled (
logging: false) and no CloudWatch log group can be specified.- ExampleMetadata:
 infused
Example:
# bucket: s3.Bucket destination = firehose.S3Bucket(bucket, logging_config=firehose.DisableLogging() ) firehose.DeliveryStream(self, "Delivery Stream", destination=destination )
Attributes
- logging
 If true, log errors when data transformation or data delivery fails.
truewhen usingEnableLogging,falsewhen usingDisableLogging.