Class: Aws::XRay::Types::Group
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::XRay::Types::Group
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-xray/types.rb
 
Overview
Details and metadata for a group.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #filter_expression  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The filter expression defining the parameters to include traces.
 - 
  
    
      #group_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the group generated based on the GroupName.
 - 
  
    
      #group_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique case-sensitive name of the group.
 - 
  
    
      #insights_configuration  ⇒ Types::InsightsConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The structure containing configurations related to insights.
 
Instance Attribute Details
#filter_expression ⇒ String
The filter expression defining the parameters to include traces.
      1534 1535 1536 1537 1538 1539 1540 1541  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 1534 class Group < Struct.new( :group_name, :group_arn, :filter_expression, :insights_configuration) SENSITIVE = [] include Aws::Structure end  | 
  
#group_arn ⇒ String
The Amazon Resource Name (ARN) of the group generated based on the GroupName.
      1534 1535 1536 1537 1538 1539 1540 1541  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 1534 class Group < Struct.new( :group_name, :group_arn, :filter_expression, :insights_configuration) SENSITIVE = [] include Aws::Structure end  | 
  
#group_name ⇒ String
The unique case-sensitive name of the group.
      1534 1535 1536 1537 1538 1539 1540 1541  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 1534 class Group < Struct.new( :group_name, :group_arn, :filter_expression, :insights_configuration) SENSITIVE = [] include Aws::Structure end  | 
  
#insights_configuration ⇒ Types::InsightsConfiguration
The structure containing configurations related to insights.
- 
The InsightsEnabled boolean can be set to true to enable insights for the group or false to disable insights for the group.
 - 
The NotificationsEnabled boolean can be set to true to enable insights notifications through Amazon EventBridge for the group.
 
      1534 1535 1536 1537 1538 1539 1540 1541  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 1534 class Group < Struct.new( :group_name, :group_arn, :filter_expression, :insights_configuration) SENSITIVE = [] include Aws::Structure end  |