Class: Aws::ApplicationSignals::Types::ServiceOperationEntity
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationSignals::Types::ServiceOperationEntity
- Defined in:
- gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb
Overview
Represents a specific operation within a service that can be monitored and audited independently.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#metric_type ⇒ String
The type of metric associated with this service operation, such as "Latency", "ErrorRate", or "Throughput".
-
#operation ⇒ String
The name of the specific operation within the service.
-
#service ⇒ Types::ServiceEntity
The service entity that contains this operation.
Instance Attribute Details
#metric_type ⇒ String
The type of metric associated with this service operation, such as "Latency", "ErrorRate", or "Throughput".
3282 3283 3284 3285 3286 3287 3288 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 3282 class ServiceOperationEntity < Struct.new( :service, :operation, :metric_type) SENSITIVE = [] include Aws::Structure end |
#operation ⇒ String
The name of the specific operation within the service.
3282 3283 3284 3285 3286 3287 3288 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 3282 class ServiceOperationEntity < Struct.new( :service, :operation, :metric_type) SENSITIVE = [] include Aws::Structure end |
#service ⇒ Types::ServiceEntity
The service entity that contains this operation.
3282 3283 3284 3285 3286 3287 3288 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 3282 class ServiceOperationEntity < Struct.new( :service, :operation, :metric_type) SENSITIVE = [] include Aws::Structure end |