Interface CfnFunction.LoggingConfigProperty

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

@Stability(Stable) public static interface CfnFunction.LoggingConfigProperty extends software.amazon.jsii.JsiiSerializable
The function's Amazon CloudWatch Logs configuration settings.

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.lambda.*;
 LoggingConfigProperty loggingConfigProperty = LoggingConfigProperty.builder()
         .applicationLogLevel("applicationLogLevel")
         .logFormat("logFormat")
         .logGroup("logGroup")
         .systemLogLevel("systemLogLevel")
         .build();
 

See Also: