Class: Aws::ApplicationSignals::Types::ServiceGroup
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationSignals::Types::ServiceGroup
- Defined in:
- gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb
Overview
A structure that represents a logical grouping of services based on shared attributes such as business unit, environment, or entry point.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#group_identifier ⇒ String
A unique identifier for this grouping attribute value, used for filtering and API operations.
-
#group_name ⇒ String
The name of the grouping attribute, such as
BusinessUnit
orEnvironment
. -
#group_source ⇒ String
The source of the grouping attribute, such as
TAG
,OTEL
, orDEFAULT
. -
#group_value ⇒ String
The value of the grouping attribute for this service, such as
Payments
orProduction
.
Instance Attribute Details
#group_identifier ⇒ String
A unique identifier for this grouping attribute value, used for filtering and API operations.
2694 2695 2696 2697 2698 2699 2700 2701 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2694 class ServiceGroup < Struct.new( :group_name, :group_value, :group_source, :group_identifier) SENSITIVE = [] include Aws::Structure end |
#group_name ⇒ String
The name of the grouping attribute, such as BusinessUnit
or
Environment
.
2694 2695 2696 2697 2698 2699 2700 2701 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2694 class ServiceGroup < Struct.new( :group_name, :group_value, :group_source, :group_identifier) SENSITIVE = [] include Aws::Structure end |
#group_source ⇒ String
The source of the grouping attribute, such as TAG
, OTEL
, or
DEFAULT
.
2694 2695 2696 2697 2698 2699 2700 2701 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2694 class ServiceGroup < Struct.new( :group_name, :group_value, :group_source, :group_identifier) SENSITIVE = [] include Aws::Structure end |
#group_value ⇒ String
The value of the grouping attribute for this service, such as
Payments
or Production
.
2694 2695 2696 2697 2698 2699 2700 2701 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2694 class ServiceGroup < Struct.new( :group_name, :group_value, :group_source, :group_identifier) SENSITIVE = [] include Aws::Structure end |