Class: Aws::AccessAnalyzer::Types::CheckNoPublicAccessResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::AccessAnalyzer::Types::CheckNoPublicAccessResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-accessanalyzer/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The message indicating whether the specified policy allows public access to resources.
 - 
  
    
      #reasons  ⇒ Array<Types::ReasonSummary> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of reasons why the specified resource policy grants public access for the resource type.
 - 
  
    
      #result  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The result of the check for public access to the specified resource type.
 
Instance Attribute Details
#message ⇒ String
The message indicating whether the specified policy allows public access to resources.
      797 798 799 800 801 802 803  | 
    
      # File 'lib/aws-sdk-accessanalyzer/types.rb', line 797 class CheckNoPublicAccessResponse < Struct.new( :result, :message, :reasons) SENSITIVE = [] include Aws::Structure end  | 
  
#reasons ⇒ Array<Types::ReasonSummary>
A list of reasons why the specified resource policy grants public access for the resource type.
      797 798 799 800 801 802 803  | 
    
      # File 'lib/aws-sdk-accessanalyzer/types.rb', line 797 class CheckNoPublicAccessResponse < Struct.new( :result, :message, :reasons) SENSITIVE = [] include Aws::Structure end  | 
  
#result ⇒ String
The result of the check for public access to the specified resource type. If the result is ‘PASS`, the policy doesn’t allow public access to the specified resource type. If the result is ‘FAIL`, the policy might allow public access to the specified resource type.
      797 798 799 800 801 802 803  | 
    
      # File 'lib/aws-sdk-accessanalyzer/types.rb', line 797 class CheckNoPublicAccessResponse < Struct.new( :result, :message, :reasons) SENSITIVE = [] include Aws::Structure end  |