Class: Aws::EC2::Types::AttributeBooleanValue
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::AttributeBooleanValue
 
 
- Defined in:
 - gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
 
Overview
Describes a value for a resource attribute that is a Boolean value.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #value  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The attribute value.
 
Instance Attribute Details
#value ⇒ Boolean
The attribute value. The valid values are true or false.
      3386 3387 3388 3389 3390  | 
    
      # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 3386 class AttributeBooleanValue < Struct.new( :value) SENSITIVE = [] include Aws::Structure end  |