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

UpdateNetworkProfileRequest

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

§Properties

§
arn: string
[src]

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

§
description?: string | null
[src]

The description of the network profile about which you are returning information.

§
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 | null
[src]

The name of the network profile about which you are returning information.

§

The type of network profile to return information about. 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.