Class: Aws::AccessAnalyzer::Types::Location
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::AccessAnalyzer::Types::Location
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-accessanalyzer/types.rb
 
Overview
A location in a policy that is represented as a path through the JSON representation and a corresponding span.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #path  ⇒ Array<Types::PathElement> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A path in a policy, represented as a sequence of path elements.
 - 
  
    
      #span  ⇒ Types::Span 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A span in a policy.
 
Instance Attribute Details
#path ⇒ Array<Types::PathElement>
A path in a policy, represented as a sequence of path elements.
      3057 3058 3059 3060 3061 3062  | 
    
      # File 'lib/aws-sdk-accessanalyzer/types.rb', line 3057 class Location < Struct.new( :path, :span) SENSITIVE = [] include Aws::Structure end  | 
  
#span ⇒ Types::Span
A span in a policy.
      3057 3058 3059 3060 3061 3062  | 
    
      # File 'lib/aws-sdk-accessanalyzer/types.rb', line 3057 class Location < Struct.new( :path, :span) SENSITIVE = [] include Aws::Structure end  |