EventSourceMappingMetricsConfig — AWS SDK for Ruby V3 (original) (raw)
Class: Aws::Lambda::Types::EventSourceMappingMetricsConfig
Inherits:
Struct
- Object
- Struct
- Aws::Lambda::Types::EventSourceMappingMetricsConfig show all
Defined in:
gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
The metrics configuration for your event source. Use this configuration object to define which metrics you want your event source mapping to produce.
Constant Summarycollapse
SENSITIVE =
[]
Instance Attribute Summary collapse
- #metrics ⇒ Array
The metrics you want your event source mapping to produce.
Instance Attribute Details
#metrics ⇒ Array
The metrics you want your event source mapping to produce. IncludeEventCount
to receive event source mapping metrics related to the number of events processed by your event source mapping. For more information about these metrics, see Event source mapping metrics.
2147 2148 2149 2150 2151 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 2147 class EventSourceMappingMetricsConfig < Struct.new( :metrics) SENSITIVE = [] include Aws::Structure end |
---|