Enum MethodLoggingLevel
- Namespace
- Amazon.CDK.AWS.APIGateway
- Assembly
- Amazon.CDK.AWS.APIGateway.dll
public enum MethodLoggingLevel
Fields
ERROR = 1
INFO = 2
OFF = 0
Examples
var api = new RestApi(this, "books", new RestApiProps {
DeployOptions = new StageOptions {
LoggingLevel = MethodLoggingLevel.INFO,
DataTraceEnabled = true
}
});
Remarks
ExampleMetadata: infused