/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The minimum and maximum baseline bandwidth to Amazon Elastic Block Store
* (Amazon EBS), in Mbps. For more information, see Amazon
* EBS–optimized instances in the Amazon EC2 User Guide. See
* Also:
AWS
* API Reference
The maximum baseline bandwidth, in Mbps. If this parameter is omitted, * there's no maximum limit.
*/ inline int GetMax() const{ return m_max; } /** *The maximum baseline bandwidth, in Mbps. If this parameter is omitted, * there's no maximum limit.
*/ inline bool MaxHasBeenSet() const { return m_maxHasBeenSet; } /** *The maximum baseline bandwidth, in Mbps. If this parameter is omitted, * there's no maximum limit.
*/ inline void SetMax(int value) { m_maxHasBeenSet = true; m_max = value; } /** *The maximum baseline bandwidth, in Mbps. If this parameter is omitted, * there's no maximum limit.
*/ inline AwsEc2LaunchTemplateDataInstanceRequirementsBaselineEbsBandwidthMbpsDetails& WithMax(int value) { SetMax(value); return *this;} /** *The minimum baseline bandwidth, in Mbps. If this parameter is omitted, * there's no minimum limit.
*/ inline int GetMin() const{ return m_min; } /** *The minimum baseline bandwidth, in Mbps. If this parameter is omitted, * there's no minimum limit.
*/ inline bool MinHasBeenSet() const { return m_minHasBeenSet; } /** *The minimum baseline bandwidth, in Mbps. If this parameter is omitted, * there's no minimum limit.
*/ inline void SetMin(int value) { m_minHasBeenSet = true; m_min = value; } /** *The minimum baseline bandwidth, in Mbps. If this parameter is omitted, * there's no minimum limit.
*/ inline AwsEc2LaunchTemplateDataInstanceRequirementsBaselineEbsBandwidthMbpsDetails& WithMin(int value) { SetMin(value); return *this;} private: int m_max; bool m_maxHasBeenSet = false; int m_min; bool m_minHasBeenSet = false; }; } // namespace Model } // namespace SecurityHub } // namespace Aws