Class: AWSCDK::EC2::CfnLaunchTemplate::BaselineEbsBandwidthMbpsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::EC2::CfnLaunchTemplate::BaselineEbsBandwidthMbpsProperty
- Defined in:
- ec2/cfn_launch_template.rb
Overview
The minimum and maximum baseline bandwidth to Amazon EBS, in Mbps.
For more information, see Amazon EBS–optimized instances in the Amazon EC2 User Guide .
Instance Attribute Summary collapse
-
#max ⇒ Numeric?
readonly
The maximum baseline bandwidth, in Mbps.
-
#min ⇒ Numeric?
readonly
The minimum baseline bandwidth, in Mbps.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(max: nil, min: nil) ⇒ BaselineEbsBandwidthMbpsProperty
constructor
A new instance of BaselineEbsBandwidthMbpsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(max: nil, min: nil) ⇒ BaselineEbsBandwidthMbpsProperty
Returns a new instance of BaselineEbsBandwidthMbpsProperty.
684 685 686 687 688 689 |
# File 'ec2/cfn_launch_template.rb', line 684 def initialize(max: nil, min: nil) @max = max Jsii::Type.check_type(@max, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJudW1iZXIifQ==")), "max") unless @max.nil? @min = min Jsii::Type.check_type(@min, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJudW1iZXIifQ==")), "min") unless @min.nil? end |
Instance Attribute Details
#max ⇒ Numeric? (readonly)
The maximum baseline bandwidth, in Mbps.
To specify no maximum limit, omit this parameter.
697 698 699 |
# File 'ec2/cfn_launch_template.rb', line 697 def max @max end |
#min ⇒ Numeric? (readonly)
The minimum baseline bandwidth, in Mbps.
To specify no minimum limit, omit this parameter.
704 705 706 |
# File 'ec2/cfn_launch_template.rb', line 704 def min @min end |
Class Method Details
.jsii_properties ⇒ Object
706 707 708 709 710 711 |
# File 'ec2/cfn_launch_template.rb', line 706 def self.jsii_properties { :max => "max", :min => "min", } end |
Instance Method Details
#to_jsii ⇒ Object
713 714 715 716 717 718 719 720 |
# File 'ec2/cfn_launch_template.rb', line 713 def to_jsii result = {} result.merge!({ "max" => @max, "min" => @min, }) result.compact end |