Interface CfnNetworkProfileProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnNetworkProfileProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:17.270Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnNetworkProfileProps
static final class
An implementation forCfnNetworkProfileProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The description of the network profile.default Number
The data throughput rate in bits per second, as an integer from 0 to 104857600.default Number
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.default Number
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.default Number
Proportion 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 Number
The data throughput rate in bits per second, as an integer from 0 to 104857600.default Number
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.default Number
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.default Number
Proportion 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.Builder
ofCfnNetworkProfileProps
-