Show / Hide Table of Contents

Class CfnCapacityProviderPropsMixin.NetworkInterfaceCountRequestProperty

The minimum and maximum number of network interfaces for instance type selection.

Inheritance
object
CfnCapacityProviderPropsMixin.NetworkInterfaceCountRequestProperty
Implements
CfnCapacityProviderPropsMixin.INetworkInterfaceCountRequestProperty
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.NetworkInterfaceCountRequestProperty : CfnCapacityProviderPropsMixin.INetworkInterfaceCountRequestProperty
Syntax (vb)
Public Class CfnCapacityProviderPropsMixin.NetworkInterfaceCountRequestProperty Implements CfnCapacityProviderPropsMixin.INetworkInterfaceCountRequestProperty
Remarks

This is useful for workloads that require multiple network interfaces.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-networkinterfacecountrequest.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 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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-networkinterfacecountrequest.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 networkInterfaceCountRequestProperty = new NetworkInterfaceCountRequestProperty {
                 Max = 123,
                 Min = 123
             };

Properties

Max

The maximum number of network interfaces.

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

double?

Remarks

Instance types that support more network interfaces are excluded from selection.

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

Min

The minimum number of network interfaces.

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

double?

Remarks

Instance types that support fewer network interfaces are excluded from selection.

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

Implements

CfnCapacityProviderPropsMixin.INetworkInterfaceCountRequestProperty
Back to top Generated by DocFX