Class: Aws::AccessAnalyzer::Types::CheckNoNewAccessResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::AccessAnalyzer::Types::CheckNoNewAccessResponse
 
 
- 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 updated policy allows new access.
 - 
  
    
      #reasons  ⇒ Array<Types::ReasonSummary> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A description of the reasoning of the result.
 - 
  
    
      #result  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The result of the check for new access.
 
Instance Attribute Details
#message ⇒ String
The message indicating whether the updated policy allows new access.
      748 749 750 751 752 753 754  | 
    
      # File 'lib/aws-sdk-accessanalyzer/types.rb', line 748 class CheckNoNewAccessResponse < Struct.new( :result, :message, :reasons) SENSITIVE = [] include Aws::Structure end  | 
  
#reasons ⇒ Array<Types::ReasonSummary>
A description of the reasoning of the result.
      748 749 750 751 752 753 754  | 
    
      # File 'lib/aws-sdk-accessanalyzer/types.rb', line 748 class CheckNoNewAccessResponse < Struct.new( :result, :message, :reasons) SENSITIVE = [] include Aws::Structure end  | 
  
#result ⇒ String
The result of the check for new access. If the result is ‘PASS`, no new access is allowed by the updated policy. If the result is `FAIL`, the updated policy might allow new access.
      748 749 750 751 752 753 754  | 
    
      # File 'lib/aws-sdk-accessanalyzer/types.rb', line 748 class CheckNoNewAccessResponse < Struct.new( :result, :message, :reasons) SENSITIVE = [] include Aws::Structure end  |