interface NetworkPerformanceOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnLaunchTemplatePropsMixin.NetworkPerformanceOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnLaunchTemplatePropsMixin_NetworkPerformanceOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnLaunchTemplatePropsMixin.NetworkPerformanceOptionsProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnLaunchTemplatePropsMixin.NetworkPerformanceOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnLaunchTemplatePropsMixin » NetworkPerformanceOptionsProperty |
Contains settings for the network performance options for the instance.
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 networkPerformanceOptionsProperty: ec2_mixins.CfnLaunchTemplatePropsMixin.NetworkPerformanceOptionsProperty = {
bandwidthWeighting: 'bandwidthWeighting',
};
Properties
| Name | Type | Description |
|---|---|---|
| bandwidth | string | Specify the bandwidth weighting option to boost the associated type of baseline bandwidth, as follows:. |
bandwidthWeighting?
Type:
string
(optional)
Specify the bandwidth weighting option to boost the associated type of baseline bandwidth, as follows:.
- default - This option uses the standard bandwidth configuration for your instance type.
- vpc-1 - This option boosts your networking baseline bandwidth and reduces your EBS baseline bandwidth.
- ebs-1 - This option boosts your EBS baseline bandwidth and reduces your networking baseline bandwidth.

.NET
Go
Java
Python
TypeScript