1. Packages
  2. AWS Classic
  3. API Docs
  4. devicefarm
  5. NetworkProfile

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.27.0 published on Monday, Mar 18, 2024 by Pulumi

aws.devicefarm.NetworkProfile

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.27.0 published on Monday, Mar 18, 2024 by Pulumi

    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

    new NetworkProfile(name: string, args: NetworkProfileArgs, opts?: CustomResourceOptions);
    @overload
    def NetworkProfile(resource_name: str,
                       opts: Optional[ResourceOptions] = 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,
                       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)
    @overload
    def NetworkProfile(resource_name: str,
                       args: NetworkProfileArgs,
                       opts: Optional[ResourceOptions] = 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.
    
    
    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.

    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:

    ProjectArn 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 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 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 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 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 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)
    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.
    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
    

    Package Details

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

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.27.0 published on Monday, Mar 18, 2024 by Pulumi