Class: Aws::EC2::Types::AttributeBooleanValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::AttributeBooleanValue
- Includes:
- Structure
- Defined in:
- 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`.
3255 3256 3257 3258 3259 |
# File 'lib/aws-sdk-ec2/types.rb', line 3255 class AttributeBooleanValue < Struct.new( :value) SENSITIVE = [] include Aws::Structure end |