package awsnetworkmanager // Describes bandwidth information. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // bandwidthProperty := &BandwidthProperty{ // DownloadSpeed: jsii.Number(123), // UploadSpeed: jsii.Number(123), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html // type CfnLink_BandwidthProperty struct { // Download speed in Mbps. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-downloadspeed // DownloadSpeed *float64 `field:"optional" json:"downloadSpeed" yaml:"downloadSpeed"` // Upload speed in Mbps. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html#cfn-networkmanager-link-bandwidth-uploadspeed // UploadSpeed *float64 `field:"optional" json:"uploadSpeed" yaml:"uploadSpeed"` }