aws-cdk-lib.aws_devicefarm.CfnNetworkProfileProps

interface CfnNetworkProfileProps

LanguageType name
.NETAmazon.CDK.AWS.DeviceFarm.CfnNetworkProfileProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdevicefarm#CfnNetworkProfileProps
Javasoftware.amazon.awscdk.services.devicefarm.CfnNetworkProfileProps
Pythonaws_cdk.aws_devicefarm.CfnNetworkProfileProps
TypeScript aws-cdk-lib » aws_devicefarm » CfnNetworkProfileProps

Properties for defining a CfnNetworkProfile.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devicefarm as devicefarm } from 'aws-cdk-lib';
const cfnNetworkProfileProps: devicefarm.CfnNetworkProfileProps = {
  name: 'name',
  projectArn: 'projectArn',

  // the properties below are optional
  description: 'description',
  downlinkBandwidthBits: 123,
  downlinkDelayMs: 123,
  downlinkJitterMs: 123,
  downlinkLossPercent: 123,
  tags: [{
    key: 'key',
    value: 'value',
  }],
  uplinkBandwidthBits: 123,
  uplinkDelayMs: 123,
  uplinkJitterMs: 123,
  uplinkLossPercent: 123,
};

Properties

NameTypeDescription
namestringThe name of the network profile.
projectArnstringThe Amazon Resource Name (ARN) of the specified project.
description?stringThe description of the network profile.
downlinkBandwidthBits?numberThe data throughput rate in bits per second, as an integer from 0 to 104857600.
downlinkDelayMs?numberDelay time for all packets to destination in milliseconds as an integer from 0 to 2000.
downlinkJitterMs?numberTime variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
downlinkLossPercent?numberProportion of received packets that fail to arrive from 0 to 100 percent.
tags?CfnTag[]An array of key-value pairs to apply to this resource.
uplinkBandwidthBits?numberThe data throughput rate in bits per second, as an integer from 0 to 104857600.
uplinkDelayMs?numberDelay time for all packets to destination in milliseconds as an integer from 0 to 2000.
uplinkJitterMs?numberTime variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
uplinkLossPercent?numberProportion of transmitted packets that fail to arrive from 0 to 100 percent.

name

Type: string

The name of the network profile.


projectArn

Type: string

The Amazon Resource Name (ARN) of the specified project.


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.


tags?

Type: CfnTag[] (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.