DisableLogging

class aws_cdk.aws_kinesisfirehose_destinations_alpha.DisableLogging

Bases: object

(deprecated) Disables logging for error logs.

When this class is used, logging is disabled (logging: false) and no CloudWatch log group can be specified.

Stability:

deprecated

ExampleMetadata:

infused

Example:

# bucket: s3.Bucket

destination = destinations.S3Bucket(bucket,
    logging_config=destinations.DisableLogging()
)
firehose.DeliveryStream(self, "Delivery Stream",
    destination=destination
)
Stability:

deprecated

Attributes

logging

(deprecated) If true, log errors when data transformation or data delivery fails.

true when using EnableLogging, false when using DisableLogging.

Stability:

deprecated