class DisableLogging
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.KinesisFirehose.Destinations.Alpha.DisableLogging |
![]() | github.com/aws/aws-cdk-go/awscdkkinesisfirehosedestinationsalpha/v2#DisableLogging |
![]() | software.amazon.awscdk.services.kinesisfirehose.destinations.alpha.DisableLogging |
![]() | aws_cdk.aws_kinesisfirehose_destinations_alpha.DisableLogging |
![]() | @aws-cdk/aws-kinesisfirehose-destinations-alpha » DisableLogging |
⚠️ Deprecated: undefined
Implements
ILogging
Disables logging for error logs.
When this class is used, logging is disabled (logging: false
)
and no CloudWatch log group can be specified.
Example
declare const bucket: s3.Bucket;
const destination = new destinations.S3Bucket(bucket, {
loggingConfig: new destinations.DisableLogging(),
});
new firehose.DeliveryStream(this, 'Delivery Stream', {
destination: destination,
});
Initializer
new DisableLogging()
⚠️ Deprecated: undefined
Properties
Name | Type | Description |
---|---|---|
logging | boolean | If true, log errors when data transformation or data delivery fails. |
logging
⚠️ Deprecated: undefined
Type:
boolean
If true, log errors when data transformation or data delivery fails.
true
when using EnableLogging
, false
when using DisableLogging
.