aws-cdk-lib.aws_ec2.CfnSpotFleet.BaselineEbsBandwidthMbpsRequestProperty

interface BaselineEbsBandwidthMbpsRequestProperty

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

The minimum and maximum baseline bandwidth to Amazon EBS, in Mbps.

For more information, see Amazon EBS–optimized instances in the Amazon EC2 User Guide .

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 baselineEbsBandwidthMbpsRequestProperty: ec2.CfnSpotFleet.BaselineEbsBandwidthMbpsRequestProperty = {
  max: 123,
  min: 123,
};

Properties

NameTypeDescription
max?numberThe maximum baseline bandwidth, in Mbps.
min?numberThe minimum baseline bandwidth, in Mbps.

max?

Type: number (optional)

The maximum baseline bandwidth, in Mbps.

To specify no maximum limit, omit this parameter.


min?

Type: number (optional)

The minimum baseline bandwidth, in Mbps.

To specify no minimum limit, omit this parameter.