Class: Aws::Lambda::Types::TracingConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::TracingConfig
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Note:
When making an API call, you may pass TracingConfig data as a hash:
{
mode: "Active", # accepts Active, PassThrough
}
The function's AWS X-Ray tracing configuration. To sample and record
incoming requests, set Mode
to Active
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#mode ⇒ String
The tracing mode.
Instance Attribute Details
#mode ⇒ String
The tracing mode.
4906 4907 4908 4909 4910 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4906 class TracingConfig < Struct.new( :mode) SENSITIVE = [] include Aws::Structure end |