Interface CfnCapacityProvider.NetworkInterfaceCountRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCapacityProvider.NetworkInterfaceCountRequestProperty.Jsii$Proxy
- Enclosing class:
CfnCapacityProvider
@Stability(Stable)
public static interface CfnCapacityProvider.NetworkInterfaceCountRequestProperty
extends software.amazon.jsii.JsiiSerializable
The minimum and maximum number of network interfaces for instance type selection.
This is useful for workloads that require multiple network interfaces.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.ecs.*;
NetworkInterfaceCountRequestProperty networkInterfaceCountRequestProperty = NetworkInterfaceCountRequestProperty.builder()
.max(123)
.min(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCapacityProvider.NetworkInterfaceCountRequestPropertystatic final classAn implementation forCfnCapacityProvider.NetworkInterfaceCountRequestProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMax
The maximum number of network interfaces.Instance types that support more network interfaces are excluded from selection.
- See Also:
-
getMin
The minimum number of network interfaces.Instance types that support fewer network interfaces are excluded from selection.
- See Also:
-
builder
@Stability(Stable) static CfnCapacityProvider.NetworkInterfaceCountRequestProperty.Builder builder()
-