Class: AWSCDK::DataPipeline::CfnPipeline::ParameterObjectProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::DataPipeline::CfnPipeline::ParameterObjectProperty
- Defined in:
- data_pipeline/cfn_pipeline.rb
Overview
Contains information about a parameter object.
Instance Attribute Summary collapse
-
#attributes ⇒ AWSCDK::IResolvable, Array<AWSCDK::IResolvable, AWSCDK::DataPipeline::CfnPipeline::ParameterAttributeProperty>
readonly
The attributes of the parameter object.
-
#id ⇒ String
readonly
The ID of the parameter object.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(attributes:, id:) ⇒ ParameterObjectProperty
constructor
A new instance of ParameterObjectProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(attributes:, id:) ⇒ ParameterObjectProperty
Returns a new instance of ParameterObjectProperty.
740 741 742 743 744 745 |
# File 'data_pipeline/cfn_pipeline.rb', line 740 def initialize(attributes:, id:) @attributes = attributes Jsii::Type.check_type(@attributes, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImNvbGxlY3Rpb24iOnsiZWxlbWVudHR5cGUiOnsidW5pb24iOnsidHlwZXMiOlt7ImZxbiI6ImF3cy1jZGstbGliLklSZXNvbHZhYmxlIn0seyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZGF0YXBpcGVsaW5lLkNmblBpcGVsaW5lLlBhcmFtZXRlckF0dHJpYnV0ZVByb3BlcnR5In1dfX0sImtpbmQiOiJhcnJheSJ9fV19fQ==")), "attributes") @id = id Jsii::Type.check_type(@id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "id") end |
Instance Attribute Details
#attributes ⇒ AWSCDK::IResolvable, Array<AWSCDK::IResolvable, AWSCDK::DataPipeline::CfnPipeline::ParameterAttributeProperty> (readonly)
The attributes of the parameter object.
751 752 753 |
# File 'data_pipeline/cfn_pipeline.rb', line 751 def attributes @attributes end |
#id ⇒ String (readonly)
The ID of the parameter object.
756 757 758 |
# File 'data_pipeline/cfn_pipeline.rb', line 756 def id @id end |
Class Method Details
.jsii_properties ⇒ Object
758 759 760 761 762 763 |
# File 'data_pipeline/cfn_pipeline.rb', line 758 def self.jsii_properties { :attributes => "attributes", :id => "id", } end |
Instance Method Details
#to_jsii ⇒ Object
765 766 767 768 769 770 771 772 |
# File 'data_pipeline/cfn_pipeline.rb', line 765 def to_jsii result = {} result.merge!({ "attributes" => @attributes, "id" => @id, }) result.compact end |