CfnNetworkProfileMixinProps
- class aws_cdk.mixins_preview.aws_devicefarm.mixins.CfnNetworkProfileMixinProps(*, description=None, downlink_bandwidth_bits=None, downlink_delay_ms=None, downlink_jitter_ms=None, downlink_loss_percent=None, name=None, project_arn=None, tags=None, uplink_bandwidth_bits=None, uplink_delay_ms=None, uplink_jitter_ms=None, uplink_loss_percent=None)
Bases:
objectProperties for CfnNetworkProfilePropsMixin.
- Parameters:
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.name (
Optional[str]) – The name of the network profile.project_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the specified project.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.mixins_preview.aws_devicefarm import mixins as devicefarm_mixins cfn_network_profile_mixin_props = devicefarm_mixins.CfnNetworkProfileMixinProps( description="description", downlink_bandwidth_bits=123, downlink_delay_ms=123, downlink_jitter_ms=123, downlink_loss_percent=123, name="name", project_arn="projectArn", 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.