Show / Hide Table of Contents

Class CfnLaunchTemplate.HibernationOptionsProperty

Specifies whether your instance is configured for hibernation.

Inheritance
object
CfnLaunchTemplate.HibernationOptionsProperty
Implements
CfnLaunchTemplate.IHibernationOptionsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnLaunchTemplate.HibernationOptionsProperty : CfnLaunchTemplate.IHibernationOptionsProperty
Syntax (vb)
Public Class CfnLaunchTemplate.HibernationOptionsProperty Implements CfnLaunchTemplate.IHibernationOptionsProperty
Remarks

This parameter is valid only if the instance meets the hibernation prerequisites . For more information, see Hibernate Your Instance in the Amazon EC2 User Guide .

HibernationOptions is a property of AWS::EC2::LaunchTemplate LaunchTemplateData .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-hibernationoptions.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.EC2;

             var hibernationOptionsProperty = new HibernationOptionsProperty {
                 Configured = false
             };

Synopsis

Constructors

HibernationOptionsProperty()

Specifies whether your instance is configured for hibernation.

Properties

Configured

If you set this parameter to true , the instance is enabled for hibernation.

Constructors

HibernationOptionsProperty()

Specifies whether your instance is configured for hibernation.

public HibernationOptionsProperty()
Remarks

This parameter is valid only if the instance meets the hibernation prerequisites . For more information, see Hibernate Your Instance in the Amazon EC2 User Guide .

HibernationOptions is a property of AWS::EC2::LaunchTemplate LaunchTemplateData .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-hibernationoptions.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.EC2;

             var hibernationOptionsProperty = new HibernationOptionsProperty {
                 Configured = false
             };

Properties

Configured

If you set this parameter to true , the instance is enabled for hibernation.

public object? Configured { get; set; }
Property Value

object

Remarks

Default: false

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-hibernationoptions.html#cfn-ec2-launchtemplate-hibernationoptions-configured

Implements

CfnLaunchTemplate.IHibernationOptionsProperty
Back to top Generated by DocFX