Class CfnCapacityProviderPropsMixin.NetworkInterfaceCountRequestProperty
The minimum and maximum number of network interfaces for instance type selection.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.ECS.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnCapacityProviderPropsMixin.NetworkInterfaceCountRequestProperty : CfnCapacityProviderPropsMixin.INetworkInterfaceCountRequestProperty
Syntax (vb)
Public Class CfnCapacityProviderPropsMixin.NetworkInterfaceCountRequestProperty Implements CfnCapacityProviderPropsMixin.INetworkInterfaceCountRequestProperty
Remarks
This is useful for workloads that require multiple network interfaces.
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 networkInterfaceCountRequestProperty = new NetworkInterfaceCountRequestProperty {
Max = 123,
Min = 123
};
Synopsis
Constructors
| NetworkInterfaceCountRequestProperty() | The minimum and maximum number of network interfaces for instance type selection. |
Properties
| Max | The maximum number of network interfaces. |
| Min | The minimum number of network interfaces. |
Constructors
NetworkInterfaceCountRequestProperty()
The minimum and maximum number of network interfaces for instance type selection.
public NetworkInterfaceCountRequestProperty()
Remarks
This is useful for workloads that require multiple network interfaces.
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 networkInterfaceCountRequestProperty = new NetworkInterfaceCountRequestProperty {
Max = 123,
Min = 123
};
Properties
Max
The maximum number of network interfaces.
public double? Max { get; set; }
Property Value
Remarks
Instance types that support more network interfaces are excluded from selection.
Min
The minimum number of network interfaces.
public double? Min { get; set; }
Property Value
Remarks
Instance types that support fewer network interfaces are excluded from selection.