Class: Aws::AccessAnalyzer::Types::FindingSourceDetail
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::AccessAnalyzer::Types::FindingSourceDetail
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-accessanalyzer/types.rb
 
Overview
Includes details about how the access that generated the finding is granted. This is populated for Amazon S3 bucket findings.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #access_point_account  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The account of the cross-account access point that generated the finding.
 - 
  
    
      #access_point_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN of the access point that generated the finding.
 
Instance Attribute Details
#access_point_account ⇒ String
The account of the cross-account access point that generated the finding.
      1676 1677 1678 1679 1680 1681  | 
    
      # File 'lib/aws-sdk-accessanalyzer/types.rb', line 1676 class FindingSourceDetail < Struct.new( :access_point_arn, :access_point_account) SENSITIVE = [] include Aws::Structure end  | 
  
#access_point_arn ⇒ String
The ARN of the access point that generated the finding. The ARN format depends on whether the ARN represents an access point or a multi-region access point.
      1676 1677 1678 1679 1680 1681  | 
    
      # File 'lib/aws-sdk-accessanalyzer/types.rb', line 1676 class FindingSourceDetail < Struct.new( :access_point_arn, :access_point_account) SENSITIVE = [] include Aws::Structure end  |