Class: AWSCDK::DataPipeline::CfnPipeline::ParameterValueProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::DataPipeline::CfnPipeline::ParameterValueProperty
- Defined in:
- data_pipeline/cfn_pipeline.rb
Overview
A value or list of parameter values.
Instance Attribute Summary collapse
-
#id ⇒ String
readonly
The ID of the parameter value.
-
#string_value ⇒ String
readonly
The field value, expressed as a String.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(id:, string_value:) ⇒ ParameterValueProperty
constructor
A new instance of ParameterValueProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(id:, string_value:) ⇒ ParameterValueProperty
Returns a new instance of ParameterValueProperty.
783 784 785 786 787 788 |
# File 'data_pipeline/cfn_pipeline.rb', line 783 def initialize(id:, string_value:) @id = id Jsii::Type.check_type(@id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "id") @string_value = string_value Jsii::Type.check_type(@string_value, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "stringValue") end |
Instance Attribute Details
#id ⇒ String (readonly)
The ID of the parameter value.
794 795 796 |
# File 'data_pipeline/cfn_pipeline.rb', line 794 def id @id end |
#string_value ⇒ String (readonly)
The field value, expressed as a String.
799 800 801 |
# File 'data_pipeline/cfn_pipeline.rb', line 799 def string_value @string_value end |
Class Method Details
.jsii_properties ⇒ Object
801 802 803 804 805 806 |
# File 'data_pipeline/cfn_pipeline.rb', line 801 def self.jsii_properties { :id => "id", :string_value => "stringValue", } end |
Instance Method Details
#to_jsii ⇒ Object
808 809 810 811 812 813 814 815 |
# File 'data_pipeline/cfn_pipeline.rb', line 808 def to_jsii result = {} result.merge!({ "id" => @id, "stringValue" => @string_value, }) result.compact end |