Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CreateNetworkProfileRequest

import type { CreateNetworkProfileRequest } from "https://aws-api.deno.dev/v0.4/services/devicefarm.ts?docs=full";
interface CreateNetworkProfileRequest {
description?: string | null;
downlinkBandwidthBits?: number | null;
downlinkDelayMs?: number | null;
downlinkJitterMs?: number | null;
downlinkLossPercent?: number | null;
name: string;
projectArn: string;
type?: NetworkProfileType | null;
uplinkBandwidthBits?: number | null;
uplinkDelayMs?: number | null;
uplinkJitterMs?: number | null;
uplinkLossPercent?: number | null;
}

§Properties

§
description?: string | null
[src]

The description of the network profile.

§
downlinkBandwidthBits?: number | null
[src]

The data throughput rate in bits per second, as an integer from 0 to 104857600.

§
downlinkDelayMs?: number | null
[src]

Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

§
downlinkJitterMs?: number | null
[src]

Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

§
downlinkLossPercent?: number | null
[src]

Proportion of received packets that fail to arrive from 0 to 100 percent.

§
name: string
[src]

The name for the new network profile.

§
projectArn: string
[src]

The Amazon Resource Name (ARN) of the project for which you want to create a network profile.

§

The type of network profile to create. Valid values are listed here.

§
uplinkBandwidthBits?: number | null
[src]

The data throughput rate in bits per second, as an integer from 0 to 104857600.

§
uplinkDelayMs?: number | null
[src]

Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

§
uplinkJitterMs?: number | null
[src]

Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

§
uplinkLossPercent?: number | null
[src]

Proportion of transmitted packets that fail to arrive from 0 to 100 percent.