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.
      4846 4847 4848 4849 4850 4851  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 4846 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.
      4846 4847 4848 4849 4850 4851  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 4846 class Denied < Struct.new( :implicit_deny, :explicit_deny) SENSITIVE = [] include Aws::Structure end  |