Class: Aws::IAMToolbox::Types::MatchedStatement
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAMToolbox::Types::MatchedStatement
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iamtoolbox/types.rb
Overview
A statement that matched during evaluation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#evaluated_effect ⇒ String
The evaluated effect of this statement.
-
#sid ⇒ String
The statement ID (Sid).
Instance Attribute Details
#evaluated_effect ⇒ String
The evaluated effect of this statement. Valid values:
-
ALLOW- The statement allows the action. -
DENY- The statement denies the action.
201 202 203 204 205 206 |
# File 'lib/aws-sdk-iamtoolbox/types.rb', line 201 class MatchedStatement < Struct.new( :sid, :evaluated_effect) SENSITIVE = [] include Aws::Structure end |
#sid ⇒ String
The statement ID (Sid). If the statement has no Sid, one is generated for reference.
201 202 203 204 205 206 |
# File 'lib/aws-sdk-iamtoolbox/types.rb', line 201 class MatchedStatement < Struct.new( :sid, :evaluated_effect) SENSITIVE = [] include Aws::Structure end |