interface CfnNetworkProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DeviceFarm.Mixins.CfnNetworkProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevicefarm/mixins#CfnNetworkProfileMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.devicefarm.mixins.CfnNetworkProfileMixinProps |
Python | aws_cdk.mixins_preview.aws_devicefarm.mixins.CfnNetworkProfileMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_devicefarm » mixins » CfnNetworkProfileMixinProps |
Properties for CfnNetworkProfilePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as devicefarm_mixins } from '@aws-cdk/mixins-preview/aws-devicefarm';
const cfnNetworkProfileMixinProps: devicefarm_mixins.CfnNetworkProfileMixinProps = {
description: 'description',
downlinkBandwidthBits: 123,
downlinkDelayMs: 123,
downlinkJitterMs: 123,
downlinkLossPercent: 123,
name: 'name',
projectArn: 'projectArn',
tags: [{
key: 'key',
value: 'value',
}],
uplinkBandwidthBits: 123,
uplinkDelayMs: 123,
uplinkJitterMs: 123,
uplinkLossPercent: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the network profile. |
| downlink | number | The data throughput rate in bits per second, as an integer from 0 to 104857600. |
| downlink | number | Delay time for all packets to destination in milliseconds as an integer from 0 to 2000. |
| downlink | number | Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000. |
| downlink | number | Proportion of received packets that fail to arrive from 0 to 100 percent. |
| name? | string | The name of the network profile. |
| project | string | The Amazon Resource Name (ARN) of the specified project. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| uplink | number | The data throughput rate in bits per second, as an integer from 0 to 104857600. |
| uplink | number | Delay time for all packets to destination in milliseconds as an integer from 0 to 2000. |
| uplink | number | Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000. |
| uplink | number | Proportion of transmitted packets that fail to arrive from 0 to 100 percent. |
description?
Type:
string
(optional)
The description of the network profile.
downlinkBandwidthBits?
Type:
number
(optional)
The data throughput rate in bits per second, as an integer from 0 to 104857600.
downlinkDelayMs?
Type:
number
(optional)
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
downlinkJitterMs?
Type:
number
(optional)
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
downlinkLossPercent?
Type:
number
(optional)
Proportion of received packets that fail to arrive from 0 to 100 percent.
name?
Type:
string
(optional)
The name of the network profile.
projectArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the specified project.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag in the guide .
uplinkBandwidthBits?
Type:
number
(optional)
The data throughput rate in bits per second, as an integer from 0 to 104857600.
uplinkDelayMs?
Type:
number
(optional)
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
uplinkJitterMs?
Type:
number
(optional)
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
uplinkLossPercent?
Type:
number
(optional)
Proportion of transmitted packets that fail to arrive from 0 to 100 percent.

.NET
Go
Java
Python
TypeScript