Class: Aws::IAMToolbox::Types::MatchedStatement

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#evaluated_effectString

The evaluated effect of this statement. Valid values:

  • ALLOW - The statement allows the action.

  • DENY - The statement denies the action.

Returns:

  • (String)


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

#sidString

The statement ID (Sid). If the statement has no Sid, one is generated for reference.

Returns:

  • (String)


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