Show / Hide Table of Contents

Class MethodLoggingLevel

Inheritance
System.Object
MethodLoggingLevel
Namespace: Amazon.CDK.AWS.APIGateway
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public sealed class MethodLoggingLevel : Enum
Syntax (vb)
Public NotInheritable Class MethodLoggingLevel
    Inherits

     Enum
Remarks

ExampleMetadata: infused

Examples
var api = new RestApi(this, "books", new RestApiProps {
    CloudWatchRole = true,
    DeployOptions = new StageOptions {
        LoggingLevel = MethodLoggingLevel.INFO,
        DataTraceEnabled = true
    }
});

Synopsis

Fields

ERROR
INFO
OFF
value__

Fields

ERROR

public const MethodLoggingLevel ERROR
Field Value
Type Description
MethodLoggingLevel

INFO

public const MethodLoggingLevel INFO
Field Value
Type Description
MethodLoggingLevel

OFF

public const MethodLoggingLevel OFF
Field Value
Type Description
MethodLoggingLevel

value__

public int value__
Field Value
Type Description
System.Int32
Back to top Generated by DocFX