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,
});
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)
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
})
}
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 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}
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 string
- The unique name of the resource.
- args NetworkProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args 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 string
- The unique name of the resource.
- args NetworkProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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,
});
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),
})
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());
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)
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,
});
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
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
The NetworkProfile resource accepts the following input properties:
- Project
Arn string - The ARN of the project for the network profile.
- Description string
- The description of the network profile.
- Downlink
Bandwidth intBits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - Downlink
Delay intMs - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - Downlink
Jitter intMs - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - Downlink
Loss intPercent - Proportion of received packets that fail to arrive from
0
to100
percent. - Name string
- The name for the network profile.
- 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
andCURATED
. - Uplink
Bandwidth intBits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - Uplink
Delay intMs - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - Uplink
Jitter intMs - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - Uplink
Loss intPercent - Proportion of received packets that fail to arrive from
0
to100
percent.
- Project
Arn string - The ARN of the project for the network profile.
- Description string
- The description of the network profile.
- Downlink
Bandwidth intBits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - Downlink
Delay intMs - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - Downlink
Jitter intMs - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - Downlink
Loss intPercent - Proportion of received packets that fail to arrive from
0
to100
percent. - Name string
- The name for the network profile.
- 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
andCURATED
. - Uplink
Bandwidth intBits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - Uplink
Delay intMs - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - Uplink
Jitter intMs - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - Uplink
Loss intPercent - Proportion of received packets that fail to arrive from
0
to100
percent.
- project
Arn String - The ARN of the project for the network profile.
- description String
- The description of the network profile.
- downlink
Bandwidth IntegerBits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - downlink
Delay IntegerMs - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - downlink
Jitter IntegerMs - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - downlink
Loss IntegerPercent - Proportion of received packets that fail to arrive from
0
to100
percent. - name String
- The name for the network profile.
- 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
andCURATED
. - uplink
Bandwidth IntegerBits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - uplink
Delay IntegerMs - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - uplink
Jitter IntegerMs - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - uplink
Loss IntegerPercent - Proportion of received packets that fail to arrive from
0
to100
percent.
- project
Arn string - The ARN of the project for the network profile.
- description string
- The description of the network profile.
- downlink
Bandwidth numberBits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - downlink
Delay numberMs - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - downlink
Jitter numberMs - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - downlink
Loss numberPercent - Proportion of received packets that fail to arrive from
0
to100
percent. - name string
- The name for the network profile.
- {[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
andCURATED
. - uplink
Bandwidth numberBits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - uplink
Delay numberMs - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - uplink
Jitter numberMs - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - uplink
Loss numberPercent - Proportion of received packets that fail to arrive from
0
to100
percent.
- project_
arn str - The ARN of the project for the network profile.
- description str
- The description of the network profile.
- downlink_
bandwidth_ intbits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - downlink_
delay_ intms - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - downlink_
jitter_ intms - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - downlink_
loss_ intpercent - Proportion of received packets that fail to arrive from
0
to100
percent. - name str
- The name for the network profile.
- 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
andCURATED
. - uplink_
bandwidth_ intbits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - uplink_
delay_ intms - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - uplink_
jitter_ intms - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - uplink_
loss_ intpercent - Proportion of received packets that fail to arrive from
0
to100
percent.
- project
Arn String - The ARN of the project for the network profile.
- description String
- The description of the network profile.
- downlink
Bandwidth NumberBits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - downlink
Delay NumberMs - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - downlink
Jitter NumberMs - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - downlink
Loss NumberPercent - Proportion of received packets that fail to arrive from
0
to100
percent. - name String
- The name for the network profile.
- 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
andCURATED
. - uplink
Bandwidth NumberBits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - uplink
Delay NumberMs - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - uplink
Jitter NumberMs - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - uplink
Loss NumberPercent - Proportion of received packets that fail to arrive from
0
to100
percent.
Outputs
All input properties are implicitly available as output properties. Additionally, the NetworkProfile resource produces the following output properties:
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)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- Arn string
- The Amazon Resource Name of this network profile.
- Description string
- The description of the network profile.
- Downlink
Bandwidth intBits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - Downlink
Delay intMs - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - Downlink
Jitter intMs - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - Downlink
Loss intPercent - Proportion of received packets that fail to arrive from
0
to100
percent. - Name string
- The name for the network profile.
- Project
Arn string - The ARN of the project for the network profile.
- 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. - Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Type string
- The type of network profile to create. Valid values are listed are
PRIVATE
andCURATED
. - Uplink
Bandwidth intBits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - Uplink
Delay intMs - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - Uplink
Jitter intMs - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - Uplink
Loss intPercent - Proportion of received packets that fail to arrive from
0
to100
percent.
- Arn string
- The Amazon Resource Name of this network profile.
- Description string
- The description of the network profile.
- Downlink
Bandwidth intBits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - Downlink
Delay intMs - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - Downlink
Jitter intMs - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - Downlink
Loss intPercent - Proportion of received packets that fail to arrive from
0
to100
percent. - Name string
- The name for the network profile.
- Project
Arn string - The ARN of the project for the network profile.
- 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. - map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Type string
- The type of network profile to create. Valid values are listed are
PRIVATE
andCURATED
. - Uplink
Bandwidth intBits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - Uplink
Delay intMs - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - Uplink
Jitter intMs - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - Uplink
Loss intPercent - Proportion of received packets that fail to arrive from
0
to100
percent.
- arn String
- The Amazon Resource Name of this network profile.
- description String
- The description of the network profile.
- downlink
Bandwidth IntegerBits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - downlink
Delay IntegerMs - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - downlink
Jitter IntegerMs - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - downlink
Loss IntegerPercent - Proportion of received packets that fail to arrive from
0
to100
percent. - name String
- The name for the network profile.
- project
Arn String - The ARN of the project for the network profile.
- 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. - Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - type String
- The type of network profile to create. Valid values are listed are
PRIVATE
andCURATED
. - uplink
Bandwidth IntegerBits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - uplink
Delay IntegerMs - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - uplink
Jitter IntegerMs - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - uplink
Loss IntegerPercent - Proportion of received packets that fail to arrive from
0
to100
percent.
- arn string
- The Amazon Resource Name of this network profile.
- description string
- The description of the network profile.
- downlink
Bandwidth numberBits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - downlink
Delay numberMs - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - downlink
Jitter numberMs - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - downlink
Loss numberPercent - Proportion of received packets that fail to arrive from
0
to100
percent. - name string
- The name for the network profile.
- project
Arn string - The ARN of the project for the network profile.
- {[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. - {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - type string
- The type of network profile to create. Valid values are listed are
PRIVATE
andCURATED
. - uplink
Bandwidth numberBits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - uplink
Delay numberMs - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - uplink
Jitter numberMs - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - uplink
Loss numberPercent - Proportion of received packets that fail to arrive from
0
to100
percent.
- arn str
- The Amazon Resource Name of this network profile.
- description str
- The description of the network profile.
- downlink_
bandwidth_ intbits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - downlink_
delay_ intms - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - downlink_
jitter_ intms - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - downlink_
loss_ intpercent - Proportion of received packets that fail to arrive from
0
to100
percent. - name str
- The name for the network profile.
- project_
arn str - The ARN of the project for the network profile.
- 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. - Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - type str
- The type of network profile to create. Valid values are listed are
PRIVATE
andCURATED
. - uplink_
bandwidth_ intbits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - uplink_
delay_ intms - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - uplink_
jitter_ intms - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - uplink_
loss_ intpercent - Proportion of received packets that fail to arrive from
0
to100
percent.
- arn String
- The Amazon Resource Name of this network profile.
- description String
- The description of the network profile.
- downlink
Bandwidth NumberBits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - downlink
Delay NumberMs - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - downlink
Jitter NumberMs - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - downlink
Loss NumberPercent - Proportion of received packets that fail to arrive from
0
to100
percent. - name String
- The name for the network profile.
- project
Arn String - The ARN of the project for the network profile.
- 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. - Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - type String
- The type of network profile to create. Valid values are listed are
PRIVATE
andCURATED
. - uplink
Bandwidth NumberBits - The data throughput rate in bits per second, as an integer from
0
to104857600
. Default value is104857600
. - uplink
Delay NumberMs - Delay time for all packets to destination in milliseconds as an integer from
0
to2000
. - uplink
Jitter NumberMs - Time variation in the delay of received packets in milliseconds as an integer from
0
to2000
. - uplink
Loss NumberPercent - Proportion of received packets that fail to arrive from
0
to100
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
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.