1. Packages
  2. AWS
  3. API Docs
  4. devicefarm
  5. NetworkProfile
AWS v6.74.0 published on Wednesday, Mar 26, 2025 by Pulumi

aws.devicefarm.NetworkProfile

Explore with Pulumi AI

Provides a resource to manage AWS Device Farm Network Profiles. ∂

NOTE: AWS currently has limited regional support for Device Farm (e.g., us-west-2). See AWS Device Farm endpoints and quotas for information on supported regions.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const example = new aws.devicefarm.Project("example", {name: "example"});
const exampleNetworkProfile = new aws.devicefarm.NetworkProfile("example", {
    name: "example",
    projectArn: example.arn,
});
Copy
import pulumi
import pulumi_aws as aws

example = aws.devicefarm.Project("example", name="example")
example_network_profile = aws.devicefarm.NetworkProfile("example",
    name="example",
    project_arn=example.arn)
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/devicefarm"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := devicefarm.NewProject(ctx, "example", &devicefarm.ProjectArgs{
			Name: pulumi.String("example"),
		})
		if err != nil {
			return err
		}
		_, err = devicefarm.NewNetworkProfile(ctx, "example", &devicefarm.NetworkProfileArgs{
			Name:       pulumi.String("example"),
			ProjectArn: example.Arn,
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var example = new Aws.DeviceFarm.Project("example", new()
    {
        Name = "example",
    });

    var exampleNetworkProfile = new Aws.DeviceFarm.NetworkProfile("example", new()
    {
        Name = "example",
        ProjectArn = example.Arn,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.devicefarm.Project;
import com.pulumi.aws.devicefarm.ProjectArgs;
import com.pulumi.aws.devicefarm.NetworkProfile;
import com.pulumi.aws.devicefarm.NetworkProfileArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new Project("example", ProjectArgs.builder()
            .name("example")
            .build());

        var exampleNetworkProfile = new NetworkProfile("exampleNetworkProfile", NetworkProfileArgs.builder()
            .name("example")
            .projectArn(example.arn())
            .build());

    }
}
Copy
resources:
  example:
    type: aws:devicefarm:Project
    properties:
      name: example
  exampleNetworkProfile:
    type: aws:devicefarm:NetworkProfile
    name: example
    properties:
      name: example
      projectArn: ${example.arn}
Copy

Create NetworkProfile Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new NetworkProfile(name: string, args: NetworkProfileArgs, opts?: CustomResourceOptions);
@overload
def NetworkProfile(resource_name: str,
                   args: NetworkProfileArgs,
                   opts: Optional[ResourceOptions] = None)

@overload
def NetworkProfile(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   project_arn: Optional[str] = None,
                   downlink_jitter_ms: Optional[int] = None,
                   downlink_delay_ms: Optional[int] = None,
                   description: Optional[str] = None,
                   downlink_loss_percent: Optional[int] = None,
                   name: Optional[str] = None,
                   downlink_bandwidth_bits: Optional[int] = None,
                   tags: Optional[Mapping[str, str]] = None,
                   type: Optional[str] = None,
                   uplink_bandwidth_bits: Optional[int] = None,
                   uplink_delay_ms: Optional[int] = None,
                   uplink_jitter_ms: Optional[int] = None,
                   uplink_loss_percent: Optional[int] = None)
func NewNetworkProfile(ctx *Context, name string, args NetworkProfileArgs, opts ...ResourceOption) (*NetworkProfile, error)
public NetworkProfile(string name, NetworkProfileArgs args, CustomResourceOptions? opts = null)
public NetworkProfile(String name, NetworkProfileArgs args)
public NetworkProfile(String name, NetworkProfileArgs args, CustomResourceOptions options)
type: aws:devicefarm:NetworkProfile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. NetworkProfileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. NetworkProfileArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. NetworkProfileArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. NetworkProfileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. NetworkProfileArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var networkProfileResource = new Aws.DeviceFarm.NetworkProfile("networkProfileResource", new()
{
    ProjectArn = "string",
    DownlinkJitterMs = 0,
    DownlinkDelayMs = 0,
    Description = "string",
    DownlinkLossPercent = 0,
    Name = "string",
    DownlinkBandwidthBits = 0,
    Tags = 
    {
        { "string", "string" },
    },
    Type = "string",
    UplinkBandwidthBits = 0,
    UplinkDelayMs = 0,
    UplinkJitterMs = 0,
    UplinkLossPercent = 0,
});
Copy
example, err := devicefarm.NewNetworkProfile(ctx, "networkProfileResource", &devicefarm.NetworkProfileArgs{
	ProjectArn:            pulumi.String("string"),
	DownlinkJitterMs:      pulumi.Int(0),
	DownlinkDelayMs:       pulumi.Int(0),
	Description:           pulumi.String("string"),
	DownlinkLossPercent:   pulumi.Int(0),
	Name:                  pulumi.String("string"),
	DownlinkBandwidthBits: pulumi.Int(0),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Type:                pulumi.String("string"),
	UplinkBandwidthBits: pulumi.Int(0),
	UplinkDelayMs:       pulumi.Int(0),
	UplinkJitterMs:      pulumi.Int(0),
	UplinkLossPercent:   pulumi.Int(0),
})
Copy
var networkProfileResource = new NetworkProfile("networkProfileResource", NetworkProfileArgs.builder()
    .projectArn("string")
    .downlinkJitterMs(0)
    .downlinkDelayMs(0)
    .description("string")
    .downlinkLossPercent(0)
    .name("string")
    .downlinkBandwidthBits(0)
    .tags(Map.of("string", "string"))
    .type("string")
    .uplinkBandwidthBits(0)
    .uplinkDelayMs(0)
    .uplinkJitterMs(0)
    .uplinkLossPercent(0)
    .build());
Copy
network_profile_resource = aws.devicefarm.NetworkProfile("networkProfileResource",
    project_arn="string",
    downlink_jitter_ms=0,
    downlink_delay_ms=0,
    description="string",
    downlink_loss_percent=0,
    name="string",
    downlink_bandwidth_bits=0,
    tags={
        "string": "string",
    },
    type="string",
    uplink_bandwidth_bits=0,
    uplink_delay_ms=0,
    uplink_jitter_ms=0,
    uplink_loss_percent=0)
Copy
const networkProfileResource = new aws.devicefarm.NetworkProfile("networkProfileResource", {
    projectArn: "string",
    downlinkJitterMs: 0,
    downlinkDelayMs: 0,
    description: "string",
    downlinkLossPercent: 0,
    name: "string",
    downlinkBandwidthBits: 0,
    tags: {
        string: "string",
    },
    type: "string",
    uplinkBandwidthBits: 0,
    uplinkDelayMs: 0,
    uplinkJitterMs: 0,
    uplinkLossPercent: 0,
});
Copy
type: aws:devicefarm:NetworkProfile
properties:
    description: string
    downlinkBandwidthBits: 0
    downlinkDelayMs: 0
    downlinkJitterMs: 0
    downlinkLossPercent: 0
    name: string
    projectArn: string
    tags:
        string: string
    type: string
    uplinkBandwidthBits: 0
    uplinkDelayMs: 0
    uplinkJitterMs: 0
    uplinkLossPercent: 0
Copy

NetworkProfile Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The NetworkProfile resource accepts the following input properties:

ProjectArn This property is required. string
The ARN of the project for the network profile.
Description string
The description of the network profile.
DownlinkBandwidthBits int
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
DownlinkDelayMs int
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
DownlinkJitterMs int
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
DownlinkLossPercent int
Proportion of received packets that fail to arrive from 0 to 100 percent.
Name string
The name for the network profile.
Tags Dictionary<string, string>
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
Type string
The type of network profile to create. Valid values are listed are PRIVATE and CURATED.
UplinkBandwidthBits int
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
UplinkDelayMs int
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
UplinkJitterMs int
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
UplinkLossPercent int
Proportion of received packets that fail to arrive from 0 to 100 percent.
ProjectArn This property is required. string
The ARN of the project for the network profile.
Description string
The description of the network profile.
DownlinkBandwidthBits int
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
DownlinkDelayMs int
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
DownlinkJitterMs int
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
DownlinkLossPercent int
Proportion of received packets that fail to arrive from 0 to 100 percent.
Name string
The name for the network profile.
Tags map[string]string
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
Type string
The type of network profile to create. Valid values are listed are PRIVATE and CURATED.
UplinkBandwidthBits int
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
UplinkDelayMs int
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
UplinkJitterMs int
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
UplinkLossPercent int
Proportion of received packets that fail to arrive from 0 to 100 percent.
projectArn This property is required. String
The ARN of the project for the network profile.
description String
The description of the network profile.
downlinkBandwidthBits Integer
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
downlinkDelayMs Integer
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
downlinkJitterMs Integer
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
downlinkLossPercent Integer
Proportion of received packets that fail to arrive from 0 to 100 percent.
name String
The name for the network profile.
tags Map<String,String>
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
type String
The type of network profile to create. Valid values are listed are PRIVATE and CURATED.
uplinkBandwidthBits Integer
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
uplinkDelayMs Integer
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
uplinkJitterMs Integer
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
uplinkLossPercent Integer
Proportion of received packets that fail to arrive from 0 to 100 percent.
projectArn This property is required. string
The ARN of the project for the network profile.
description string
The description of the network profile.
downlinkBandwidthBits number
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
downlinkDelayMs number
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
downlinkJitterMs number
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
downlinkLossPercent number
Proportion of received packets that fail to arrive from 0 to 100 percent.
name string
The name for the network profile.
tags {[key: string]: string}
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
type string
The type of network profile to create. Valid values are listed are PRIVATE and CURATED.
uplinkBandwidthBits number
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
uplinkDelayMs number
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
uplinkJitterMs number
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
uplinkLossPercent number
Proportion of received packets that fail to arrive from 0 to 100 percent.
project_arn This property is required. str
The ARN of the project for the network profile.
description str
The description of the network profile.
downlink_bandwidth_bits int
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
downlink_delay_ms int
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
downlink_jitter_ms int
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
downlink_loss_percent int
Proportion of received packets that fail to arrive from 0 to 100 percent.
name str
The name for the network profile.
tags Mapping[str, str]
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
type str
The type of network profile to create. Valid values are listed are PRIVATE and CURATED.
uplink_bandwidth_bits int
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
uplink_delay_ms int
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
uplink_jitter_ms int
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
uplink_loss_percent int
Proportion of received packets that fail to arrive from 0 to 100 percent.
projectArn This property is required. String
The ARN of the project for the network profile.
description String
The description of the network profile.
downlinkBandwidthBits Number
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
downlinkDelayMs Number
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
downlinkJitterMs Number
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
downlinkLossPercent Number
Proportion of received packets that fail to arrive from 0 to 100 percent.
name String
The name for the network profile.
tags Map<String>
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
type String
The type of network profile to create. Valid values are listed are PRIVATE and CURATED.
uplinkBandwidthBits Number
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
uplinkDelayMs Number
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
uplinkJitterMs Number
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
uplinkLossPercent Number
Proportion of received packets that fail to arrive from 0 to 100 percent.

Outputs

All input properties are implicitly available as output properties. Additionally, the NetworkProfile resource produces the following output properties:

Arn string
The Amazon Resource Name of this network profile.
Id string
The provider-assigned unique ID for this managed resource.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Arn string
The Amazon Resource Name of this network profile.
Id string
The provider-assigned unique ID for this managed resource.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
The Amazon Resource Name of this network profile.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn string
The Amazon Resource Name of this network profile.
id string
The provider-assigned unique ID for this managed resource.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn str
The Amazon Resource Name of this network profile.
id str
The provider-assigned unique ID for this managed resource.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
The Amazon Resource Name of this network profile.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Look up Existing NetworkProfile Resource

Get an existing NetworkProfile resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: NetworkProfileState, opts?: CustomResourceOptions): NetworkProfile
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        description: Optional[str] = None,
        downlink_bandwidth_bits: Optional[int] = None,
        downlink_delay_ms: Optional[int] = None,
        downlink_jitter_ms: Optional[int] = None,
        downlink_loss_percent: Optional[int] = None,
        name: Optional[str] = None,
        project_arn: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None,
        type: Optional[str] = None,
        uplink_bandwidth_bits: Optional[int] = None,
        uplink_delay_ms: Optional[int] = None,
        uplink_jitter_ms: Optional[int] = None,
        uplink_loss_percent: Optional[int] = None) -> NetworkProfile
func GetNetworkProfile(ctx *Context, name string, id IDInput, state *NetworkProfileState, opts ...ResourceOption) (*NetworkProfile, error)
public static NetworkProfile Get(string name, Input<string> id, NetworkProfileState? state, CustomResourceOptions? opts = null)
public static NetworkProfile get(String name, Output<String> id, NetworkProfileState state, CustomResourceOptions options)
resources:  _:    type: aws:devicefarm:NetworkProfile    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Arn string
The Amazon Resource Name of this network profile.
Description string
The description of the network profile.
DownlinkBandwidthBits int
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
DownlinkDelayMs int
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
DownlinkJitterMs int
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
DownlinkLossPercent int
Proportion of received packets that fail to arrive from 0 to 100 percent.
Name string
The name for the network profile.
ProjectArn string
The ARN of the project for the network profile.
Tags Dictionary<string, string>
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Type string
The type of network profile to create. Valid values are listed are PRIVATE and CURATED.
UplinkBandwidthBits int
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
UplinkDelayMs int
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
UplinkJitterMs int
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
UplinkLossPercent int
Proportion of received packets that fail to arrive from 0 to 100 percent.
Arn string
The Amazon Resource Name of this network profile.
Description string
The description of the network profile.
DownlinkBandwidthBits int
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
DownlinkDelayMs int
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
DownlinkJitterMs int
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
DownlinkLossPercent int
Proportion of received packets that fail to arrive from 0 to 100 percent.
Name string
The name for the network profile.
ProjectArn string
The ARN of the project for the network profile.
Tags map[string]string
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Type string
The type of network profile to create. Valid values are listed are PRIVATE and CURATED.
UplinkBandwidthBits int
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
UplinkDelayMs int
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
UplinkJitterMs int
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
UplinkLossPercent int
Proportion of received packets that fail to arrive from 0 to 100 percent.
arn String
The Amazon Resource Name of this network profile.
description String
The description of the network profile.
downlinkBandwidthBits Integer
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
downlinkDelayMs Integer
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
downlinkJitterMs Integer
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
downlinkLossPercent Integer
Proportion of received packets that fail to arrive from 0 to 100 percent.
name String
The name for the network profile.
projectArn String
The ARN of the project for the network profile.
tags Map<String,String>
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

type String
The type of network profile to create. Valid values are listed are PRIVATE and CURATED.
uplinkBandwidthBits Integer
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
uplinkDelayMs Integer
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
uplinkJitterMs Integer
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
uplinkLossPercent Integer
Proportion of received packets that fail to arrive from 0 to 100 percent.
arn string
The Amazon Resource Name of this network profile.
description string
The description of the network profile.
downlinkBandwidthBits number
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
downlinkDelayMs number
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
downlinkJitterMs number
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
downlinkLossPercent number
Proportion of received packets that fail to arrive from 0 to 100 percent.
name string
The name for the network profile.
projectArn string
The ARN of the project for the network profile.
tags {[key: string]: string}
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

type string
The type of network profile to create. Valid values are listed are PRIVATE and CURATED.
uplinkBandwidthBits number
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
uplinkDelayMs number
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
uplinkJitterMs number
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
uplinkLossPercent number
Proportion of received packets that fail to arrive from 0 to 100 percent.
arn str
The Amazon Resource Name of this network profile.
description str
The description of the network profile.
downlink_bandwidth_bits int
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
downlink_delay_ms int
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
downlink_jitter_ms int
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
downlink_loss_percent int
Proportion of received packets that fail to arrive from 0 to 100 percent.
name str
The name for the network profile.
project_arn str
The ARN of the project for the network profile.
tags Mapping[str, str]
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

type str
The type of network profile to create. Valid values are listed are PRIVATE and CURATED.
uplink_bandwidth_bits int
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
uplink_delay_ms int
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
uplink_jitter_ms int
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
uplink_loss_percent int
Proportion of received packets that fail to arrive from 0 to 100 percent.
arn String
The Amazon Resource Name of this network profile.
description String
The description of the network profile.
downlinkBandwidthBits Number
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
downlinkDelayMs Number
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
downlinkJitterMs Number
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
downlinkLossPercent Number
Proportion of received packets that fail to arrive from 0 to 100 percent.
name String
The name for the network profile.
projectArn String
The ARN of the project for the network profile.
tags Map<String>
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

type String
The type of network profile to create. Valid values are listed are PRIVATE and CURATED.
uplinkBandwidthBits Number
The data throughput rate in bits per second, as an integer from 0 to 104857600. Default value is 104857600.
uplinkDelayMs Number
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
uplinkJitterMs Number
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
uplinkLossPercent Number
Proportion of received packets that fail to arrive from 0 to 100 percent.

Import

Using pulumi import, import DeviceFarm Network Profiles using their ARN. For example:

$ pulumi import aws:devicefarm/networkProfile:NetworkProfile example arn:aws:devicefarm:us-west-2:123456789012:networkprofile:4fa784c7-ccb4-4dbf-ba4f-02198320daa1
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.