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: