interface BaselineEbsBandwidthMbpsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnLaunchTemplatePropsMixin.BaselineEbsBandwidthMbpsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnLaunchTemplatePropsMixin_BaselineEbsBandwidthMbpsProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnLaunchTemplatePropsMixin.BaselineEbsBandwidthMbpsProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnLaunchTemplatePropsMixin.BaselineEbsBandwidthMbpsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnLaunchTemplatePropsMixin » BaselineEbsBandwidthMbpsProperty |
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 { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const baselineEbsBandwidthMbpsProperty: ec2_mixins.CfnLaunchTemplatePropsMixin.BaselineEbsBandwidthMbpsProperty = {
max: 123,
min: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max? | number | The maximum baseline bandwidth, in Mbps. |
| min? | number | The 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.

.NET
Go
Java
Python
TypeScript