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
Represents a logical grouping of services based on shared attributes or characteristics.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #group_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A unique identifier for the group within the grouping configuration. 
- 
  
    
      #group_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the group, such as "Environment", "Team", or "Application". 
- 
  
    
      #group_source  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The source of the grouping information, such as "Tag", "Attribute", or "Manual". 
- 
  
    
      #group_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The specific value for this group, such as "Production", "TeamA", or "WebApp". 
Instance Attribute Details
#group_identifier ⇒ String
A unique identifier for the group within the grouping configuration.
| 2685 2686 2687 2688 2689 2690 2691 2692 | # File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2685 class ServiceGroup < Struct.new( :group_name, :group_value, :group_source, :group_identifier) SENSITIVE = [] include Aws::Structure end | 
#group_name ⇒ String
The name of the group, such as "Environment", "Team", or "Application".
| 2685 2686 2687 2688 2689 2690 2691 2692 | # File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2685 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 information, such as "Tag", "Attribute", or "Manual".
| 2685 2686 2687 2688 2689 2690 2691 2692 | # File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2685 class ServiceGroup < Struct.new( :group_name, :group_value, :group_source, :group_identifier) SENSITIVE = [] include Aws::Structure end | 
#group_value ⇒ String
The specific value for this group, such as "Production", "TeamA", or "WebApp".
| 2685 2686 2687 2688 2689 2690 2691 2692 | # File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2685 class ServiceGroup < Struct.new( :group_name, :group_value, :group_source, :group_identifier) SENSITIVE = [] include Aws::Structure end |