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.
634 635 636 637 638 639 640 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 634 class CheckAccessNotGrantedResponse < Struct.new( :result, :message, :reasons) SENSITIVE = [] include Aws::Structure end |
#reasons ⇒ Array<Types::ReasonSummary>
A description of the reasoning of the result.
634 635 636 637 638 639 640 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 634 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.
634 635 636 637 638 639 640 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 634 class CheckAccessNotGrantedResponse < Struct.new( :result, :message, :reasons) SENSITIVE = [] include Aws::Structure end |