Class: AWSCDK::QuickSight::CfnDashboard::IntegerParameterProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::IntegerParameterProperty
- Defined in:
- quick_sight/cfn_dashboard.rb
Overview
An integer parameter.
Instance Attribute Summary collapse
-
#name ⇒ String
readonly
The name of the integer parameter.
-
#values ⇒ Array<Numeric>, AWSCDK::IResolvable
readonly
The values for the integer parameter.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(name:, values:) ⇒ IntegerParameterProperty
constructor
A new instance of IntegerParameterProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(name:, values:) ⇒ IntegerParameterProperty
Returns a new instance of IntegerParameterProperty.
17177 17178 17179 17180 17181 17182 |
# File 'quick_sight/cfn_dashboard.rb', line 17177 def initialize(name:, values:) @name = name Jsii::Type.check_type(@name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "name") @values = values Jsii::Type.check_type(@values, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siY29sbGVjdGlvbiI6eyJlbGVtZW50dHlwZSI6eyJwcmltaXRpdmUiOiJudW1iZXIifSwia2luZCI6ImFycmF5In19LHsiZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifV19fQ==")), "values") end |
Instance Attribute Details
#name ⇒ String (readonly)
The name of the integer parameter.
17188 17189 17190 |
# File 'quick_sight/cfn_dashboard.rb', line 17188 def name @name end |
#values ⇒ Array<Numeric>, AWSCDK::IResolvable (readonly)
The values for the integer parameter.
17193 17194 17195 |
# File 'quick_sight/cfn_dashboard.rb', line 17193 def values @values end |
Class Method Details
.jsii_properties ⇒ Object
17195 17196 17197 17198 17199 17200 |
# File 'quick_sight/cfn_dashboard.rb', line 17195 def self.jsii_properties { :name => "name", :values => "values", } end |
Instance Method Details
#to_jsii ⇒ Object
17202 17203 17204 17205 17206 17207 17208 17209 |
# File 'quick_sight/cfn_dashboard.rb', line 17202 def to_jsii result = {} result.merge!({ "name" => @name, "values" => @values, }) result.compact end |