Class: Aws::AccessAnalyzer::Types::CheckAccessNotGrantedResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::CheckAccessNotGrantedResponse
- Defined in:
- gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#message ⇒ String
The message indicating whether the specified access is allowed.
-
#reasons ⇒ Array<Types::ReasonSummary>
A description of the reasoning of the result.
-
#result ⇒ String
The result of the check for whether the access is allowed.
Instance Attribute Details
#message ⇒ String
The message indicating whether the specified access is allowed.
730 731 732 733 734 735 736 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 730 class CheckAccessNotGrantedResponse < Struct.new( :result, :message, :reasons) SENSITIVE = [] include Aws::Structure end |
#reasons ⇒ Array<Types::ReasonSummary>
A description of the reasoning of the result.
730 731 732 733 734 735 736 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 730 class CheckAccessNotGrantedResponse < Struct.new( :result, :message, :reasons) SENSITIVE = [] include Aws::Structure end |
#result ⇒ String
The result of the check for whether the access is allowed. If the
result is PASS, the specified policy doesn't allow any of the
specified permissions in the access object. If the result is FAIL,
the specified policy might allow some or all of the permissions in
the access object.
730 731 732 733 734 735 736 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 730 class CheckAccessNotGrantedResponse < Struct.new( :result, :message, :reasons) SENSITIVE = [] include Aws::Structure end |