java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.kinesisfirehose.destinations.alpha.DisableLogging
All Implemented Interfaces:
ILoggingConfig, software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.106.0 (build e852934)", date="2025-02-26T00:07:49.411Z") @Stability(Deprecated) @Deprecated public class DisableLogging extends software.amazon.jsii.JsiiObject implements ILoggingConfig
Deprecated.
(deprecated) Disables logging for error logs.

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

Example:

 Bucket bucket;
 S3Bucket destination = S3Bucket.Builder.create(bucket)
         .loggingConfig(new DisableLogging())
         .build();
 DeliveryStream.Builder.create(this, "Delivery Stream")
         .destination(destination)
         .build();
 
  • Nested Class Summary

    Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject

    software.amazon.jsii.JsiiObject.InitializationMode

    Nested classes/interfaces inherited from interface software.amazon.awscdk.services.kinesisfirehose.destinations.alpha.ILoggingConfig

    ILoggingConfig.Jsii$Default, ILoggingConfig.Jsii$Proxy
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
     
    Deprecated.
    protected
    DisableLogging(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    Deprecated.
     
    protected
    DisableLogging(software.amazon.jsii.JsiiObjectRef objRef)
    Deprecated.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Deprecated.

    Methods inherited from class software.amazon.jsii.JsiiObject

    jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface software.amazon.awscdk.services.kinesisfirehose.destinations.alpha.ILoggingConfig

    getLogGroup

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Constructor Details

    • DisableLogging

      protected DisableLogging(software.amazon.jsii.JsiiObjectRef objRef)
      Deprecated.
    • DisableLogging

      protected DisableLogging(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
      Deprecated.
    • DisableLogging

      @Stability(Deprecated) @Deprecated public DisableLogging()
      Deprecated.
  • Method Details

    • getLogging

      @Stability(Deprecated) @Deprecated @NotNull public Boolean getLogging()
      Deprecated.
      (deprecated) If true, log errors when data transformation or data delivery fails.

      true when using EnableLogging, false when using DisableLogging.

      Specified by:
      getLogging in interface ILoggingConfig