NetworkProfileArgs

data class NetworkProfileArgs(val description: Output<String>? = null, val downlinkBandwidthBits: Output<Int>? = null, val downlinkDelayMs: Output<Int>? = null, val downlinkJitterMs: Output<Int>? = null, val downlinkLossPercent: Output<Int>? = null, val name: Output<String>? = null, val projectArn: Output<String>? = null, val tags: Output<Map<String, String>>? = null, val type: Output<String>? = null, val uplinkBandwidthBits: Output<Int>? = null, val uplinkDelayMs: Output<Int>? = null, val uplinkJitterMs: Output<Int>? = null, val uplinkLossPercent: Output<Int>? = null) : ConvertibleToJava<NetworkProfileArgs>

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,
});
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)
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,
});
});
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
})
}
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());
}
}
resources:
example:
type: aws:devicefarm:Project
properties:
name: example
exampleNetworkProfile:
type: aws:devicefarm:NetworkProfile
name: example
properties:
name: example
projectArn: ${example.arn}

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

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, downlinkBandwidthBits: Output<Int>? = null, downlinkDelayMs: Output<Int>? = null, downlinkJitterMs: Output<Int>? = null, downlinkLossPercent: Output<Int>? = null, name: Output<String>? = null, projectArn: Output<String>? = null, tags: Output<Map<String, String>>? = null, type: Output<String>? = null, uplinkBandwidthBits: Output<Int>? = null, uplinkDelayMs: Output<Int>? = null, uplinkJitterMs: Output<Int>? = null, uplinkLossPercent: Output<Int>? = null)

Properties

Link copied to clipboard
val description: Output<String>? = null

The description of the network profile.

Link copied to clipboard
val downlinkBandwidthBits: Output<Int>? = null

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

Link copied to clipboard
val downlinkDelayMs: Output<Int>? = null

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

Link copied to clipboard
val downlinkJitterMs: Output<Int>? = null

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

Link copied to clipboard
val downlinkLossPercent: Output<Int>? = null

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

Link copied to clipboard
val name: Output<String>? = null

The name for the network profile.

Link copied to clipboard
val projectArn: Output<String>? = null

The ARN of the project for the network profile.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

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.

Link copied to clipboard
val type: Output<String>? = null

The type of network profile to create. Valid values are listed are PRIVATE and CURATED.

Link copied to clipboard
val uplinkBandwidthBits: Output<Int>? = null

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

Link copied to clipboard
val uplinkDelayMs: Output<Int>? = null

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

Link copied to clipboard
val uplinkJitterMs: Output<Int>? = null

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

Link copied to clipboard
val uplinkLossPercent: Output<Int>? = null

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

Functions

Link copied to clipboard
open override fun toJava(): NetworkProfileArgs