CfnNetworkProfileProps
- class aws_cdk.aws_devicefarm.CfnNetworkProfileProps(*, name, project_arn, description=None, downlink_bandwidth_bits=None, downlink_delay_ms=None, downlink_jitter_ms=None, downlink_loss_percent=None, tags=None, uplink_bandwidth_bits=None, uplink_delay_ms=None, uplink_jitter_ms=None, uplink_loss_percent=None)
Bases:
object
Properties for defining a
CfnNetworkProfile
.- Parameters:
name (
str
) – The name of the network profile.project_arn (
str
) – The Amazon Resource Name (ARN) of the specified project.description (
Optional
[str
]) – The description of the network profile.downlink_bandwidth_bits (
Union
[int
,float
,None
]) – The data throughput rate in bits per second, as an integer from 0 to 104857600.downlink_delay_ms (
Union
[int
,float
,None
]) – Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.downlink_jitter_ms (
Union
[int
,float
,None
]) – Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.downlink_loss_percent (
Union
[int
,float
,None
]) – Proportion of received packets that fail to arrive from 0 to 100 percent.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag in the guide .uplink_bandwidth_bits (
Union
[int
,float
,None
]) – The data throughput rate in bits per second, as an integer from 0 to 104857600.uplink_delay_ms (
Union
[int
,float
,None
]) – Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.uplink_jitter_ms (
Union
[int
,float
,None
]) – Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.uplink_loss_percent (
Union
[int
,float
,None
]) – Proportion of transmitted packets that fail to arrive from 0 to 100 percent.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_devicefarm as devicefarm cfn_network_profile_props = devicefarm.CfnNetworkProfileProps( name="name", project_arn="projectArn", # the properties below are optional description="description", downlink_bandwidth_bits=123, downlink_delay_ms=123, downlink_jitter_ms=123, downlink_loss_percent=123, tags=[CfnTag( key="key", value="value" )], uplink_bandwidth_bits=123, uplink_delay_ms=123, uplink_jitter_ms=123, uplink_loss_percent=123 )
Attributes
- description
The description of the network profile.
- downlink_bandwidth_bits
The data throughput rate in bits per second, as an integer from 0 to 104857600.
- downlink_delay_ms
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
- downlink_jitter_ms
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
- downlink_loss_percent
Proportion of received packets that fail to arrive from 0 to 100 percent.
- name
The name of the network profile.
- project_arn
The Amazon Resource Name (ARN) of the specified project.
- tags
An array of key-value pairs to apply to this resource.
For more information, see Tag in the guide .
- uplink_bandwidth_bits
The data throughput rate in bits per second, as an integer from 0 to 104857600.
- uplink_delay_ms
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
- uplink_jitter_ms
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
- uplink_loss_percent
Proportion of transmitted packets that fail to arrive from 0 to 100 percent.