interface NetworkPerformanceOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnLaunchTemplatePropsMixin.NetworkPerformanceOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnLaunchTemplatePropsMixin_NetworkPerformanceOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnLaunchTemplatePropsMixin.NetworkPerformanceOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnLaunchTemplatePropsMixin.NetworkPerformanceOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » 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 { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const networkPerformanceOptionsProperty: ec2.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