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.
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.
3588 3589 3590 3591 3592 |
# File 'lib/aws-sdk-iot/types.rb', line 3588 class Denied < Struct.new( :implicit_deny, :explicit_deny) 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.
3588 3589 3590 3591 3592 |
# File 'lib/aws-sdk-iot/types.rb', line 3588 class Denied < Struct.new( :implicit_deny, :explicit_deny) include Aws::Structure end |