Struct rusoto_lambda::TracingConfig[][src]

pub struct TracingConfig {
    pub mode: Option<String>,
}

The parent object that contains your function's tracing settings.

Fields

Can be either PassThrough or Active. If PassThrough, Lambda will only trace the request from an upstream service if it contains a tracing header with "sampled=1". If Active, Lambda will respect any tracing header it receives from an upstream service. If no tracing header is received, Lambda will call X-Ray for a tracing decision.

Trait Implementations

impl Default for TracingConfig
[src]

Returns the "default value" for a type. Read more

impl Debug for TracingConfig
[src]

Formats the value using the given formatter. Read more

impl Clone for TracingConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TracingConfig
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations