Show / Hide Table of Contents

Interface IInstanceRequirementsConfig

The attributes for the instance types for a mixed instances policy.

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IInstanceRequirementsConfig
Syntax (vb)
Public Interface IInstanceRequirementsConfig
Remarks

When you specify multiple attributes, you get instance types that satisfy all of the specified attributes. If you specify multiple values for an attribute, you get instance types that satisfy any of the specified values.

To limit the list of instance types from which Amazon EC2 can identify matching instance types, you can use one of the following parameters, but not both in the same request:

    Note: You must specify VCpuCount and MemoryMiB. All other attributes are optional. Any unspecified optional attribute is set to its default.

    ExampleMetadata: infused

    Examples
    Vpc vpc;
    
    
                 var cluster = new Cluster(this, "Cluster", new ClusterProps { Vpc = vpc });
    
                 var securityGroup = new SecurityGroup(this, "SecurityGroup", new SecurityGroupProps {
                     Vpc = vpc,
                     Description = "Security group for managed instances"
                 });
    
                 var miCapacityProvider = new ManagedInstancesCapacityProvider(this, "MICapacityProvider", new ManagedInstancesCapacityProviderProps {
                     CapacityOptionType = CapacityOptionType.SPOT,
                     Subnets = vpc.PrivateSubnets,
                     SecurityGroups = new [] { securityGroup },
                     InstanceRequirements = new InstanceRequirementsConfig {
                         VCpuCountMin = 1,
                         MemoryMin = Size.Gibibytes(2)
                     }
                 });
    
                 // Optionally configure security group rules using IConnectable interface
                 miCapacityProvider.Connections.AllowFrom(Peer.Ipv4(vpc.VpcCidrBlock), Port.Tcp(80));
    
                 // Add the capacity provider to the cluster
                 cluster.AddManagedInstancesCapacityProvider(miCapacityProvider);
    
                 var taskDefinition = new TaskDefinition(this, "TaskDef", new TaskDefinitionProps {
                     MemoryMiB = "512",
                     Cpu = "256",
                     NetworkMode = NetworkMode.AWS_VPC,
                     Compatibility = Compatibility.MANAGED_INSTANCES
                 });
    
                 taskDefinition.AddContainer("web", new ContainerDefinitionOptions {
                     Image = ContainerImage.FromRegistry("amazon/amazon-ecs-sample"),
                     MemoryReservationMiB = 256
                 });
    
                 new FargateService(this, "FargateService", new FargateServiceProps {
                     Cluster = cluster,
                     TaskDefinition = taskDefinition,
                     MinHealthyPercent = 100,
                     CapacityProviderStrategies = new [] { new CapacityProviderStrategy {
                         CapacityProvider = miCapacityProvider.CapacityProviderName,
                         Weight = 1
                     } }
                 });

    Synopsis

    Properties

    AcceleratorCountMax

    The maximum number of accelerators (GPUs, FPGAs, or AWS Inferentia chips) for an instance type.

    AcceleratorCountMin

    The minimum number of accelerators (GPUs, FPGAs, or AWS Inferentia chips) for an instance type.

    AcceleratorManufacturers

    Indicates whether instance types must have accelerators by specific manufacturers.

    AcceleratorNames

    Lists the accelerators that must be on an instance type.

    AcceleratorTotalMemoryMax

    The maximum total memory size for the accelerators on an instance type, in MiB.

    AcceleratorTotalMemoryMin

    The minimum total memory size for the accelerators on an instance type, in MiB.

    AcceleratorTypes

    Lists the accelerator types that must be on an instance type.

    AllowedInstanceTypes

    The instance types to apply your specified attributes against.

    BareMetal

    Indicates whether bare metal instance types are included, excluded, or required.

    BaselineEbsBandwidthMbpsMax

    The maximum baseline bandwidth performance for an instance type, in Mbps.

    BaselineEbsBandwidthMbpsMin

    The minimum baseline bandwidth performance for an instance type, in Mbps.

    BurstablePerformance

    Indicates whether burstable performance instance types are included, excluded, or required.

    CpuManufacturers

    Lists which specific CPU manufacturers to include.

    ExcludedInstanceTypes

    The instance types to exclude.

    InstanceGenerations

    Indicates whether current or previous generation instance types are included.

    LocalStorage

    Indicates whether instance types with instance store volumes are included, excluded, or required.

    LocalStorageTypes

    Indicates the type of local storage that is required.

    MaxSpotPriceAsPercentageOfOptimalOnDemandPrice

    [Price protection] The price protection threshold for Spot Instances, as a percentage of an identified On-Demand price.

    MemoryMax

    The maximum instance memory size for an instance type, in MiB.

    MemoryMin

    The minimum instance memory size for an instance type, in MiB.

    MemoryPerVCpuMax

    The maximum amount of memory per vCPU for an instance type, in GiB.

    MemoryPerVCpuMin

    The minimum amount of memory per vCPU for an instance type, in GiB.

    NetworkBandwidthGbpsMax

    The maximum amount of network bandwidth, in gigabits per second (Gbps).

    NetworkBandwidthGbpsMin

    The minimum amount of network bandwidth, in gigabits per second (Gbps).

    NetworkInterfaceCountMax

    The maximum number of network interfaces for an instance type.

    NetworkInterfaceCountMin

    The minimum number of network interfaces for an instance type.

    OnDemandMaxPricePercentageOverLowestPrice

    [Price protection] The price protection threshold for On-Demand Instances, as a percentage higher than an identified On-Demand price.

    RequireHibernateSupport

    Indicates whether instance types must provide On-Demand Instance hibernation support.

    SpotMaxPricePercentageOverLowestPrice

    [Price protection] The price protection threshold for Spot Instances, as a percentage higher than an identified Spot price.

    TotalLocalStorageGBMax

    The maximum total local storage size for an instance type, in GB.

    TotalLocalStorageGBMin

    The minimum total local storage size for an instance type, in GB.

    VCpuCountMax

    The maximum number of vCPUs for an instance type.

    VCpuCountMin

    The minimum number of vCPUs for an instance type.

    Properties

    AcceleratorCountMax

    The maximum number of accelerators (GPUs, FPGAs, or AWS Inferentia chips) for an instance type.

    double? AcceleratorCountMax { get; }
    Property Value

    double?

    Remarks

    To exclude accelerator-enabled instance types, set Max to 0.

    Default: - No minimum or maximum limits

    AcceleratorCountMin

    The minimum number of accelerators (GPUs, FPGAs, or AWS Inferentia chips) for an instance type.

    double? AcceleratorCountMin { get; }
    Property Value

    double?

    Remarks

    To exclude accelerator-enabled instance types, set acceleratorCountMax to 0.

    Default: - No minimum or maximum limits

    AcceleratorManufacturers

    Indicates whether instance types must have accelerators by specific manufacturers.

    AcceleratorManufacturer[]? AcceleratorManufacturers { get; }
    Property Value

    AcceleratorManufacturer[]

    Remarks

      Default: - Any manufacturer

      AcceleratorNames

      Lists the accelerators that must be on an instance type.

      AcceleratorName[]? AcceleratorNames { get; }
      Property Value

      AcceleratorName[]

      Remarks

        Default: - Any accelerator

        AcceleratorTotalMemoryMax

        The maximum total memory size for the accelerators on an instance type, in MiB.

        Size? AcceleratorTotalMemoryMax { get; }
        Property Value

        Size

        Remarks

        Default: - No minimum or maximum limits

        AcceleratorTotalMemoryMin

        The minimum total memory size for the accelerators on an instance type, in MiB.

        Size? AcceleratorTotalMemoryMin { get; }
        Property Value

        Size

        Remarks

        Default: - No minimum or maximum limits

        AcceleratorTypes

        Lists the accelerator types that must be on an instance type.

        AcceleratorType[]? AcceleratorTypes { get; }
        Property Value

        AcceleratorType[]

        Remarks

          Default: - Any accelerator type

          AllowedInstanceTypes

          The instance types to apply your specified attributes against.

          string[]? AllowedInstanceTypes { get; }
          Property Value

          string[]

          Remarks

          All other instance types are ignored, even if they match your specified attributes.

          You can use strings with one or more wild cards, represented by an asterisk (), to allow an instance type, size, or generation. The following are examples: m5.8xlarge, c5., m5a., r*, 3.

          For example, if you specify c5*, Amazon EC2 Auto Scaling will allow the entire C5 instance family, which includes all C5a and C5n instance types. If you specify m5a.*, Amazon EC2 Auto Scaling will allow all the M5a instance types, but not the M5n instance types.

          Note: If you specify AllowedInstanceTypes, you can't specify ExcludedInstanceTypes.

          Default: - All instance types

          BareMetal

          Indicates whether bare metal instance types are included, excluded, or required.

          BareMetal? BareMetal { get; }
          Property Value

          BareMetal?

          Remarks

          Default: - excluded

          BaselineEbsBandwidthMbpsMax

          The maximum baseline bandwidth performance for an instance type, in Mbps.

          double? BaselineEbsBandwidthMbpsMax { get; }
          Property Value

          double?

          Remarks

          For more information, see Amazon EBS–optimized instances in the Amazon EC2 User Guide.

          Default: - No minimum or maximum limits

          BaselineEbsBandwidthMbpsMin

          The minimum baseline bandwidth performance for an instance type, in Mbps.

          double? BaselineEbsBandwidthMbpsMin { get; }
          Property Value

          double?

          Remarks

          For more information, see Amazon EBS–optimized instances in the Amazon EC2 User Guide.

          Default: - No minimum or maximum limits

          BurstablePerformance

          Indicates whether burstable performance instance types are included, excluded, or required.

          BurstablePerformance? BurstablePerformance { get; }
          Property Value

          BurstablePerformance?

          Remarks

          For more information, see Burstable performance instances in the Amazon EC2 User Guide.

          Default: - excluded

          CpuManufacturers

          Lists which specific CPU manufacturers to include.

          CpuManufacturer[]? CpuManufacturers { get; }
          Property Value

          CpuManufacturer[]

          Remarks

            Note: Don't confuse the CPU hardware manufacturer with the CPU hardware architecture. Instances will be launched with a compatible CPU architecture based on the Amazon Machine Image (AMI) that you specify in your launch template.

            Default: - Any manufacturer

            ExcludedInstanceTypes

            The instance types to exclude.

            string[]? ExcludedInstanceTypes { get; }
            Property Value

            string[]

            Remarks

            You can use strings with one or more wild cards, represented by an asterisk (), to exclude an instance family, type, size, or generation. The following are examples: m5.8xlarge, c5., m5a., r*, 3.

            For example, if you specify c5*, you are excluding the entire C5 instance family, which includes all C5a and C5n instance types. If you specify m5a.*, Amazon EC2 Auto Scaling will exclude all the M5a instance types, but not the M5n instance types.

            Note: If you specify ExcludedInstanceTypes, you can't specify AllowedInstanceTypes.

            Default: - No excluded instance types

            InstanceGenerations

            Indicates whether current or previous generation instance types are included.

            InstanceGeneration[]? InstanceGenerations { get; }
            Property Value

            InstanceGeneration[]

            Remarks

              Default: - Any current or previous generation

              LocalStorage

              Indicates whether instance types with instance store volumes are included, excluded, or required.

              LocalStorage? LocalStorage { get; }
              Property Value

              LocalStorage?

              Remarks

              For more information, see Amazon EC2 instance store in the Amazon EC2 User Guide.

              Default: - included

              LocalStorageTypes

              Indicates the type of local storage that is required.

              LocalStorageType[]? LocalStorageTypes { get; }
              Property Value

              LocalStorageType[]

              Remarks

                Default: - Any local storage type

                MaxSpotPriceAsPercentageOfOptimalOnDemandPrice

                [Price protection] The price protection threshold for Spot Instances, as a percentage of an identified On-Demand price.

                double? MaxSpotPriceAsPercentageOfOptimalOnDemandPrice { get; }
                Property Value

                double?

                Remarks

                The identified On-Demand price is the price of the lowest priced current generation C, M, or R instance type with your specified attributes. If no current generation C, M, or R instance type matches your attributes, then the identified price is from either the lowest priced current generation instance types or, failing that, the lowest priced previous generation instance types that match your attributes. When Amazon EC2 Auto Scaling selects instance types with your attributes, we will exclude instance types whose price exceeds your specified threshold.

                The parameter accepts an integer, which Amazon EC2 Auto Scaling interprets as a percentage.

                If you set DesiredCapacityType to vcpu or memory-mib, the price protection threshold is based on the per-vCPU or per-memory price instead of the per instance price.

                Note: Only one of SpotMaxPricePercentageOverLowestPrice or MaxSpotPriceAsPercentageOfOptimalOnDemandPrice can be specified. If you don't specify either, Amazon EC2 Auto Scaling will automatically apply optimal price protection to consistently select from a wide range of instance types. To indicate no price protection threshold for Spot Instances, meaning you want to consider all instance types that match your attributes, include one of these parameters and specify a high value, such as 999999.

                Default: - Automatic optimal price protection

                MemoryMax

                The maximum instance memory size for an instance type, in MiB.

                Size? MemoryMax { get; }
                Property Value

                Size

                Remarks

                Default: - No maximum limit

                MemoryMin

                The minimum instance memory size for an instance type, in MiB.

                Size MemoryMin { get; }
                Property Value

                Size

                Remarks

                Required: Yes

                MemoryPerVCpuMax

                The maximum amount of memory per vCPU for an instance type, in GiB.

                Size? MemoryPerVCpuMax { get; }
                Property Value

                Size

                Remarks

                Default: - No minimum or maximum limits

                MemoryPerVCpuMin

                The minimum amount of memory per vCPU for an instance type, in GiB.

                Size? MemoryPerVCpuMin { get; }
                Property Value

                Size

                Remarks

                Default: - No minimum or maximum limits

                NetworkBandwidthGbpsMax

                The maximum amount of network bandwidth, in gigabits per second (Gbps).

                double? NetworkBandwidthGbpsMax { get; }
                Property Value

                double?

                Remarks

                Default: - No minimum or maximum limits

                NetworkBandwidthGbpsMin

                The minimum amount of network bandwidth, in gigabits per second (Gbps).

                double? NetworkBandwidthGbpsMin { get; }
                Property Value

                double?

                Remarks

                Default: - No minimum or maximum limits

                NetworkInterfaceCountMax

                The maximum number of network interfaces for an instance type.

                double? NetworkInterfaceCountMax { get; }
                Property Value

                double?

                Remarks

                Default: - No minimum or maximum limits

                NetworkInterfaceCountMin

                The minimum number of network interfaces for an instance type.

                double? NetworkInterfaceCountMin { get; }
                Property Value

                double?

                Remarks

                Default: - No minimum or maximum limits

                OnDemandMaxPricePercentageOverLowestPrice

                [Price protection] The price protection threshold for On-Demand Instances, as a percentage higher than an identified On-Demand price.

                double? OnDemandMaxPricePercentageOverLowestPrice { get; }
                Property Value

                double?

                Remarks

                The identified On-Demand price is the price of the lowest priced current generation C, M, or R instance type with your specified attributes. If no current generation C, M, or R instance type matches your attributes, then the identified price is from either the lowest priced current generation instance types or, failing that, the lowest priced previous generation instance types that match your attributes. When Amazon EC2 Auto Scaling selects instance types with your attributes, we will exclude instance types whose price exceeds your specified threshold.

                The parameter accepts an integer, which Amazon EC2 Auto Scaling interprets as a percentage.

                To turn off price protection, specify a high value, such as 999999.

                If you set DesiredCapacityType to vcpu or memory-mib, the price protection threshold is applied based on the per-vCPU or per-memory price instead of the per instance price.

                Default: - 20

                RequireHibernateSupport

                Indicates whether instance types must provide On-Demand Instance hibernation support.

                bool? RequireHibernateSupport { get; }
                Property Value

                bool?

                Remarks

                Default: - false

                SpotMaxPricePercentageOverLowestPrice

                [Price protection] The price protection threshold for Spot Instances, as a percentage higher than an identified Spot price.

                double? SpotMaxPricePercentageOverLowestPrice { get; }
                Property Value

                double?

                Remarks

                The identified Spot price is the price of the lowest priced current generation C, M, or R instance type with your specified attributes. If no current generation C, M, or R instance type matches your attributes, then the identified price is from either the lowest priced current generation instance types or, failing that, the lowest priced previous generation instance types that match your attributes. When Amazon EC2 Auto Scaling selects instance types with your attributes, we will exclude instance types whose price exceeds your specified threshold.

                The parameter accepts an integer, which Amazon EC2 Auto Scaling interprets as a percentage.

                If you set DesiredCapacityType to vcpu or memory-mib, the price protection threshold is based on the per-vCPU or per-memory price instead of the per instance price.

                Note: Only one of SpotMaxPricePercentageOverLowestPrice or MaxSpotPriceAsPercentageOfOptimalOnDemandPrice can be specified. If you don't specify either, Amazon EC2 Auto Scaling will automatically apply optimal price protection to consistently select from a wide range of instance types. To indicate no price protection threshold for Spot Instances, meaning you want to consider all instance types that match your attributes, include one of these parameters and specify a high value, such as 999999.

                Default: - Automatic optimal price protection

                TotalLocalStorageGBMax

                The maximum total local storage size for an instance type, in GB.

                double? TotalLocalStorageGBMax { get; }
                Property Value

                double?

                Remarks

                Default: - No minimum or maximum limits

                TotalLocalStorageGBMin

                The minimum total local storage size for an instance type, in GB.

                double? TotalLocalStorageGBMin { get; }
                Property Value

                double?

                Remarks

                Default: - No minimum or maximum limits

                VCpuCountMax

                The maximum number of vCPUs for an instance type.

                double? VCpuCountMax { get; }
                Property Value

                double?

                Remarks

                Default: - No maximum limit

                VCpuCountMin

                The minimum number of vCPUs for an instance type.

                double VCpuCountMin { get; }
                Property Value

                double

                Remarks

                Required: Yes

                Back to top Generated by DocFX