aws-cdk-lib.aws_ec2.CfnSpotFleet.NetworkBandwidthGbpsRequestProperty

interface NetworkBandwidthGbpsRequestProperty

LanguageType name
.NETAmazon.CDK.AWS.EC2.CfnSpotFleet.NetworkBandwidthGbpsRequestProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnSpotFleet_NetworkBandwidthGbpsRequestProperty
Javasoftware.amazon.awscdk.services.ec2.CfnSpotFleet.NetworkBandwidthGbpsRequestProperty
Pythonaws_cdk.aws_ec2.CfnSpotFleet.NetworkBandwidthGbpsRequestProperty
TypeScript aws-cdk-lib » aws_ec2 » CfnSpotFleet » NetworkBandwidthGbpsRequestProperty

The minimum and maximum amount of network bandwidth, in gigabits per second (Gbps).

Default: No minimum or maximum limits

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
const networkBandwidthGbpsRequestProperty: ec2.CfnSpotFleet.NetworkBandwidthGbpsRequestProperty = {
  max: 123,
  min: 123,
};

Properties

NameTypeDescription
max?numberThe maximum amount of network bandwidth, in Gbps.
min?numberThe minimum amount of network bandwidth, in Gbps.

max?

Type: number (optional)

The maximum amount of network bandwidth, in Gbps.

To specify no maximum limit, omit this parameter.


min?

Type: number (optional)

The minimum amount of network bandwidth, in Gbps.

To specify no minimum limit, omit this parameter.