You are viewing documentation for version 3 of the AWS SDK for Ruby. Version 2 documentation can be found here.
Class: Aws::EC2::Types::HibernationOptionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::HibernationOptionsRequest
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Note:
When making an API call, you may pass HibernationOptionsRequest data as a hash:
{
configured: false,
}
Indicates whether your instance is configured for hibernation. This parameter is valid only if the instance meets the hibernation prerequisites. For more information, see Hibernate Your Instance in the Amazon Elastic Compute Cloud User Guide.
Instance Attribute Summary collapse
-
#configured ⇒ Boolean
If you set this parameter to
true
, your instance is enabled for hibernation.
Instance Attribute Details
#configured ⇒ Boolean
If you set this parameter to true
, your instance is enabled for
hibernation.
Default: false
25041 25042 25043 25044 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 25041 class HibernationOptionsRequest < Struct.new( :configured) include Aws::Structure end |