@Generated(value="jsii-pacmak/0.7.8 (build 100f5ad)", date="2018-10-26T17:58:07.475Z") public enum Tracing extends Enum<Tracing>
| Enum Constant and Description |
|---|
Active
Lambda will respect any tracing header it receives from an upstream service.
|
Disabled
Lambda will not trace any request.
|
PassThrough
Lambda will only trace the request from an upstream service
if it contains a tracing header with "sampled=1"
|
| Modifier and Type | Method and Description |
|---|---|
static Tracing |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Tracing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tracing Active
public static final Tracing PassThrough
public static final Tracing Disabled
public static Tracing[] values()
for (Tracing c : Tracing.values()) System.out.println(c);
public static Tracing valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018. All rights reserved.