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
.
3202 3203 3204 3205 3206 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 3202 class AttributeBooleanValue < Struct.new( :value) SENSITIVE = [] include Aws::Structure end |