Show / Hide Table of Contents

Class CfnCapacityProviderPropsMixin.VCpuCountRangeRequestProperty

The minimum and maximum number of vCPUs for instance type selection.

Inheritance
object
CfnCapacityProviderPropsMixin.VCpuCountRangeRequestProperty
Implements
CfnCapacityProviderPropsMixin.IVCpuCountRangeRequestProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.ECS.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnCapacityProviderPropsMixin.VCpuCountRangeRequestProperty : CfnCapacityProviderPropsMixin.IVCpuCountRangeRequestProperty
Syntax (vb)
Public Class CfnCapacityProviderPropsMixin.VCpuCountRangeRequestProperty Implements CfnCapacityProviderPropsMixin.IVCpuCountRangeRequestProperty
Remarks

This allows you to specify a range of vCPU counts that meet your workload requirements.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-vcpucountrangerequest.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.Mixins.Preview.AWS.ECS.Mixins;

             var vCpuCountRangeRequestProperty = new VCpuCountRangeRequestProperty {
                 Max = 123,
                 Min = 123
             };

Synopsis

Constructors

VCpuCountRangeRequestProperty()

The minimum and maximum number of vCPUs for instance type selection.

Properties

Max

The maximum number of vCPUs.

Min

The minimum number of vCPUs.

Constructors

VCpuCountRangeRequestProperty()

The minimum and maximum number of vCPUs for instance type selection.

public VCpuCountRangeRequestProperty()
Remarks

This allows you to specify a range of vCPU counts that meet your workload requirements.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-vcpucountrangerequest.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.Mixins.Preview.AWS.ECS.Mixins;

             var vCpuCountRangeRequestProperty = new VCpuCountRangeRequestProperty {
                 Max = 123,
                 Min = 123
             };

Properties

Max

The maximum number of vCPUs.

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

double?

Remarks

Instance types with more vCPUs than this value are excluded from selection.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-vcpucountrangerequest.html#cfn-ecs-capacityprovider-vcpucountrangerequest-max

Min

The minimum number of vCPUs.

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

double?

Remarks

Instance types with fewer vCPUs than this value are excluded from selection.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-vcpucountrangerequest.html#cfn-ecs-capacityprovider-vcpucountrangerequest-min

Implements

CfnCapacityProviderPropsMixin.IVCpuCountRangeRequestProperty
Back to top Generated by DocFX