Show / Hide Table of Contents

Interface CfnCapacityProviderPropsMixin.INetworkBandwidthGbpsRequestProperty

The minimum and maximum network bandwidth in gigabits per second (Gbps) for instance type selection.

Namespace: Amazon.CDK.Mixins.Preview.AWS.ECS.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnCapacityProviderPropsMixin.INetworkBandwidthGbpsRequestProperty
Syntax (vb)
Public Interface CfnCapacityProviderPropsMixin.INetworkBandwidthGbpsRequestProperty
Remarks

This is important for network-intensive workloads.

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

Synopsis

Properties

Max

The maximum network bandwidth in Gbps.

Min

The minimum network bandwidth in Gbps.

Properties

Max

The maximum network bandwidth in Gbps.

double? Max { get; }
Property Value

double?

Remarks

Instance types with higher network bandwidth are excluded from selection.

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

Min

The minimum network bandwidth in Gbps.

double? Min { get; }
Property Value

double?

Remarks

Instance types with lower network bandwidth are excluded from selection.

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

Back to top Generated by DocFX