Class: Aws::IoT::Types::Denied
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::Denied
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Contains information that denied the authorization.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#explicit_deny ⇒ Types::ExplicitDeny
Information that explicitly denies the authorization.
-
#implicit_deny ⇒ Types::ImplicitDeny
Information that implicitly denies the authorization.
Instance Attribute Details
#explicit_deny ⇒ Types::ExplicitDeny
Information that explicitly denies the authorization.
5392 5393 5394 5395 5396 5397 |
# File 'lib/aws-sdk-iot/types.rb', line 5392 class Denied < Struct.new( :implicit_deny, :explicit_deny) SENSITIVE = [] include Aws::Structure end |
#implicit_deny ⇒ Types::ImplicitDeny
Information that implicitly denies the authorization. When a policy doesn’t explicitly deny or allow an action on a resource it is considered an implicit deny.
5392 5393 5394 5395 5396 5397 |
# File 'lib/aws-sdk-iot/types.rb', line 5392 class Denied < Struct.new( :implicit_deny, :explicit_deny) SENSITIVE = [] include Aws::Structure end |