Interface CfnLink.IBandwidthProperty
Describes bandwidth information.
Namespace: Amazon.CDK.AWS.NetworkManager
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IBandwidthProperty
Syntax (vb)
Public Interface IBandwidthProperty
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.AWS.NetworkManager;
var bandwidthProperty = new BandwidthProperty {
DownloadSpeed = 123,
UploadSpeed = 123
};
Synopsis
Properties
DownloadSpeed | Download speed in Mbps. |
UploadSpeed | Upload speed in Mbps. |
Properties
DownloadSpeed
Download speed in Mbps.
virtual Nullable<double> DownloadSpeed { get; }
Property Value
System.Nullable<System.Double>
Remarks
UploadSpeed
Upload speed in Mbps.
virtual Nullable<double> UploadSpeed { get; }
Property Value
System.Nullable<System.Double>