Interface CfnNetworkProfileProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnNetworkProfileProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:36.234Z")
@Stability(Stable)
public interface CfnNetworkProfileProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnNetworkProfile.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.devicefarm.*;
CfnNetworkProfileProps cfnNetworkProfileProps = CfnNetworkProfileProps.builder()
.name("name")
.projectArn("projectArn")
// the properties below are optional
.description("description")
.downlinkBandwidthBits(123)
.downlinkDelayMs(123)
.downlinkJitterMs(123)
.downlinkLossPercent(123)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.uplinkBandwidthBits(123)
.uplinkDelayMs(123)
.uplinkJitterMs(123)
.uplinkLossPercent(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnNetworkProfilePropsstatic final classAn implementation forCfnNetworkProfileProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe description of the network profile.default NumberThe data throughput rate in bits per second, as an integer from 0 to 104857600.default NumberDelay time for all packets to destination in milliseconds as an integer from 0 to 2000.default NumberTime variation in the delay of received packets in milliseconds as an integer from 0 to 2000.default NumberProportion of received packets that fail to arrive from 0 to 100 percent.getName()The name of the network profile.The Amazon Resource Name (ARN) of the specified project.getTags()An array of key-value pairs to apply to this resource.default NumberThe data throughput rate in bits per second, as an integer from 0 to 104857600.default NumberDelay time for all packets to destination in milliseconds as an integer from 0 to 2000.default NumberTime variation in the delay of received packets in milliseconds as an integer from 0 to 2000.default NumberProportion of transmitted packets that fail to arrive from 0 to 100 percent.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the network profile.- See Also:
-
getProjectArn
The Amazon Resource Name (ARN) of the specified project.- See Also:
-
getDescription
The description of the network profile.- See Also:
-
getDownlinkBandwidthBits
The data throughput rate in bits per second, as an integer from 0 to 104857600.- See Also:
-
getDownlinkDelayMs
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.- See Also:
-
getDownlinkJitterMs
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.- See Also:
-
getDownlinkLossPercent
Proportion of received packets that fail to arrive from 0 to 100 percent.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag in the guide .
- See Also:
-
getUplinkBandwidthBits
The data throughput rate in bits per second, as an integer from 0 to 104857600.- See Also:
-
getUplinkDelayMs
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.- See Also:
-
getUplinkJitterMs
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.- See Also:
-
getUplinkLossPercent
Proportion of transmitted packets that fail to arrive from 0 to 100 percent.- See Also:
-
builder
- Returns:
- a
CfnNetworkProfileProps.BuilderofCfnNetworkProfileProps
-