Show / Hide Table of Contents

Class CfnLaunchTemplate.VCpuCountProperty

The minimum and maximum number of vCPUs.

Inheritance
object
CfnLaunchTemplate.VCpuCountProperty
Implements
CfnLaunchTemplate.IVCpuCountProperty
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.VCpuCountProperty : CfnLaunchTemplate.IVCpuCountProperty
Syntax (vb)
Public Class CfnLaunchTemplate.VCpuCountProperty Implements CfnLaunchTemplate.IVCpuCountProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-vcpucount.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 vCpuCountProperty = new VCpuCountProperty {
                 Max = 123,
                 Min = 123
             };

Synopsis

Constructors

VCpuCountProperty()

The minimum and maximum number of vCPUs.

Properties

Max

The maximum number of vCPUs.

Min

The minimum number of vCPUs.

Constructors

VCpuCountProperty()

The minimum and maximum number of vCPUs.

public VCpuCountProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-vcpucount.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 vCpuCountProperty = new VCpuCountProperty {
                 Max = 123,
                 Min = 123
             };

Properties

Max

The maximum number of vCPUs.

public double? Max { get; set; }
Property Value

double?

Remarks

To specify no maximum limit, omit this parameter.

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

Min

The minimum number of vCPUs.

public double? Min { get; set; }
Property Value

double?

Remarks

To specify no minimum limit, specify 0 .

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

Implements

CfnLaunchTemplate.IVCpuCountProperty
Back to top Generated by DocFX