Class: Aws::XRay::Types::InsightImpactGraphService
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::XRay::Types::InsightImpactGraphService
 
- Defined in:
- gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb
Overview
Information about an application that processed requests, users that made requests, or downstream services, resources, and applications that an application used.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #account_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifier of the Amazon Web Services account in which the service runs. 
- 
  
    
      #edges  ⇒ Array<Types::InsightImpactGraphEdge> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Connections to downstream services. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The canonical name of the service. 
- 
  
    
      #names  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of names for the service, including the canonical name. 
- 
  
    
      #reference_id  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifier for the service. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifier for the service. 
Instance Attribute Details
#account_id ⇒ String
Identifier of the Amazon Web Services account in which the service runs.
| 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 | # File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 1895 class InsightImpactGraphService < Struct.new( :reference_id, :type, :name, :names, :account_id, :edges) SENSITIVE = [] include Aws::Structure end | 
#edges ⇒ Array<Types::InsightImpactGraphEdge>
Connections to downstream services.
| 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 | # File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 1895 class InsightImpactGraphService < Struct.new( :reference_id, :type, :name, :names, :account_id, :edges) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
The canonical name of the service.
| 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 | # File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 1895 class InsightImpactGraphService < Struct.new( :reference_id, :type, :name, :names, :account_id, :edges) SENSITIVE = [] include Aws::Structure end | 
#names ⇒ Array<String>
A list of names for the service, including the canonical name.
| 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 | # File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 1895 class InsightImpactGraphService < Struct.new( :reference_id, :type, :name, :names, :account_id, :edges) SENSITIVE = [] include Aws::Structure end | 
#reference_id ⇒ Integer
Identifier for the service. Unique within the service map.
| 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 | # File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 1895 class InsightImpactGraphService < Struct.new( :reference_id, :type, :name, :names, :account_id, :edges) SENSITIVE = [] include Aws::Structure end | 
#type ⇒ String
Identifier for the service. Unique within the service map.
- Amazon Web Services Resource - The type of an Amazon Web Services resource. For example, AWS::EC2::Instance for an application running on Amazon EC2 or AWS::DynamoDB::Table for an Amazon DynamoDB table that the application used. 
- Amazon Web Services Service - The type of an Amazon Web Services service. For example, AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't target a specific table. 
- Amazon Web Services Service - The type of an Amazon Web Services service. For example, AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't target a specific table. 
- remote - A downstream service of indeterminate type. 
| 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 | # File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 1895 class InsightImpactGraphService < Struct.new( :reference_id, :type, :name, :names, :account_id, :edges) SENSITIVE = [] include Aws::Structure end |