Interface CfnAutoScalingGroup.NetworkInterfaceCountRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAutoScalingGroup.NetworkInterfaceCountRequestProperty.Jsii$Proxy
- Enclosing class:
CfnAutoScalingGroup
@Stability(Stable)
public static interface CfnAutoScalingGroup.NetworkInterfaceCountRequestProperty
extends software.amazon.jsii.JsiiSerializable
NetworkInterfaceCountRequest
is a property of the InstanceRequirements
property of the AWS::AutoScaling::AutoScalingGroup LaunchTemplateOverrides property type that describes the minimum and maximum number of network interfaces for an instance type.
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.autoscaling.*; NetworkInterfaceCountRequestProperty networkInterfaceCountRequestProperty = NetworkInterfaceCountRequestProperty.builder() .max(123) .min(123) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAutoScalingGroup.NetworkInterfaceCountRequestProperty
static final class
An implementation forCfnAutoScalingGroup.NetworkInterfaceCountRequestProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMax
The maximum number of network interfaces. -
getMin
The minimum number of network interfaces. -
builder
@Stability(Stable) static CfnAutoScalingGroup.NetworkInterfaceCountRequestProperty.Builder builder()
-