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
BusinessUnitorEnvironment. -
#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
PaymentsorProduction.
Instance Attribute Details
#group_identifier ⇒ String
A unique identifier for this grouping attribute value, used for filtering and API operations.
2899 2900 2901 2902 2903 2904 2905 2906 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2899 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.
2899 2900 2901 2902 2903 2904 2905 2906 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2899 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.
2899 2900 2901 2902 2903 2904 2905 2906 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2899 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.
2899 2900 2901 2902 2903 2904 2905 2906 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2899 class ServiceGroup < Struct.new( :group_name, :group_value, :group_source, :group_identifier) SENSITIVE = [] include Aws::Structure end |