Interface CfnLogging.EventConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnLogging.EventConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnLogging

@Stability(Stable) public static interface CfnLogging.EventConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration for event-based logging that specifies which event types to log and their logging settings.

Used for account-level logging overrides.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.iot.*;
 EventConfigurationProperty eventConfigurationProperty = EventConfigurationProperty.builder()
         .eventType("eventType")
         // the properties below are optional
         .logDestination("logDestination")
         .logLevel("logLevel")
         .build();
 

See Also: