Class CfnNetworkProfileMixinProps
Properties for CfnNetworkProfilePropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.DeviceFarm
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnNetworkProfileMixinProps : ICfnNetworkProfileMixinProps
Syntax (vb)
Public Class CfnNetworkProfileMixinProps Implements ICfnNetworkProfileMixinProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.DeviceFarm;
var cfnNetworkProfileMixinProps = new CfnNetworkProfileMixinProps {
Description = "description",
DownlinkBandwidthBits = 123,
DownlinkDelayMs = 123,
DownlinkJitterMs = 123,
DownlinkLossPercent = 123,
Name = "name",
ProjectArn = "projectArn",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
UplinkBandwidthBits = 123,
UplinkDelayMs = 123,
UplinkJitterMs = 123,
UplinkLossPercent = 123
};
Synopsis
Constructors
| CfnNetworkProfileMixinProps() | Properties for CfnNetworkProfilePropsMixin. |
Properties
| Description | The description of the network profile. |
| DownlinkBandwidthBits | The data throughput rate in bits per second, as an integer from 0 to 104857600. |
| DownlinkDelayMs | Delay time for all packets to destination in milliseconds as an integer from 0 to 2000. |
| DownlinkJitterMs | Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000. |
| DownlinkLossPercent | Proportion of received packets that fail to arrive from 0 to 100 percent. |
| Name | The name of the network profile. |
| ProjectArn | The Amazon Resource Name (ARN) of the specified project. |
| Tags | An array of key-value pairs to apply to this resource. |
| UplinkBandwidthBits | The data throughput rate in bits per second, as an integer from 0 to 104857600. |
| UplinkDelayMs | Delay time for all packets to destination in milliseconds as an integer from 0 to 2000. |
| UplinkJitterMs | Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000. |
| UplinkLossPercent | Proportion of transmitted packets that fail to arrive from 0 to 100 percent. |
Constructors
CfnNetworkProfileMixinProps()
Properties for CfnNetworkProfilePropsMixin.
public CfnNetworkProfileMixinProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.DeviceFarm;
var cfnNetworkProfileMixinProps = new CfnNetworkProfileMixinProps {
Description = "description",
DownlinkBandwidthBits = 123,
DownlinkDelayMs = 123,
DownlinkJitterMs = 123,
DownlinkLossPercent = 123,
Name = "name",
ProjectArn = "projectArn",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
UplinkBandwidthBits = 123,
UplinkDelayMs = 123,
UplinkJitterMs = 123,
UplinkLossPercent = 123
};
Properties
Description
The description of the network profile.
public string? Description { get; set; }
Property Value
Remarks
DownlinkBandwidthBits
The data throughput rate in bits per second, as an integer from 0 to 104857600.
public double? DownlinkBandwidthBits { get; set; }
Property Value
Remarks
DownlinkDelayMs
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
public double? DownlinkDelayMs { get; set; }
Property Value
Remarks
DownlinkJitterMs
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
public double? DownlinkJitterMs { get; set; }
Property Value
Remarks
DownlinkLossPercent
Proportion of received packets that fail to arrive from 0 to 100 percent.
public double? DownlinkLossPercent { get; set; }
Property Value
Remarks
Name
The name of the network profile.
public string? Name { get; set; }
Property Value
Remarks
ProjectArn
The Amazon Resource Name (ARN) of the specified project.
public string? ProjectArn { get; set; }
Property Value
Remarks
Tags
An array of key-value pairs to apply to this resource.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
For more information, see Tag in the guide .
UplinkBandwidthBits
The data throughput rate in bits per second, as an integer from 0 to 104857600.
public double? UplinkBandwidthBits { get; set; }
Property Value
Remarks
UplinkDelayMs
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
public double? UplinkDelayMs { get; set; }
Property Value
Remarks
UplinkJitterMs
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
public double? UplinkJitterMs { get; set; }
Property Value
Remarks
UplinkLossPercent
Proportion of transmitted packets that fail to arrive from 0 to 100 percent.
public double? UplinkLossPercent { get; set; }