NetworkProfile

class NetworkProfile : KotlinCustomResource

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

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.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 exampleProject = new Project("exampleProject");
var exampleNetworkProfile = new NetworkProfile("exampleNetworkProfile", NetworkProfileArgs.builder()
.projectArn(exampleProject.arn())
.build());
}
}

Import

DeviceFarm Network Profiles can be imported by their arn

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

Properties

Link copied to clipboard
val arn: Output<String>

The Amazon Resource Name of this network profile.

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

The description of the network profile.

Link copied to clipboard

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>?

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

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

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>?

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

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

The name for the network profile.

Link copied to clipboard
val projectArn: Output<String>

The ARN of the project for the network profile.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val tags: Output<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.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

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

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

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

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>?

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

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

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>?

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

Link copied to clipboard
val urn: Output<String>