Class: AWSCDK::Events::CfnRule::SageMakerPipelineParameterProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Events::CfnRule::SageMakerPipelineParameterProperty
- Defined in:
- events/cfn_rule.rb
Overview
Name/Value pair of a parameter to start execution of a SageMaker AI Model Building Pipeline.
Instance Attribute Summary collapse
-
#name ⇒ String
readonly
Name of parameter to start execution of a SageMaker AI Model Building Pipeline.
-
#value ⇒ String
readonly
Value of parameter to start execution of a SageMaker AI Model Building Pipeline.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(name:, value:) ⇒ SageMakerPipelineParameterProperty
constructor
A new instance of SageMakerPipelineParameterProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(name:, value:) ⇒ SageMakerPipelineParameterProperty
Returns a new instance of SageMakerPipelineParameterProperty.
1723 1724 1725 1726 1727 1728 |
# File 'events/cfn_rule.rb', line 1723 def initialize(name:, value:) @name = name Jsii::Type.check_type(@name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "name") @value = value Jsii::Type.check_type(@value, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "value") end |
Instance Attribute Details
#name ⇒ String (readonly)
Name of parameter to start execution of a SageMaker AI Model Building Pipeline.
1734 1735 1736 |
# File 'events/cfn_rule.rb', line 1734 def name @name end |
#value ⇒ String (readonly)
Value of parameter to start execution of a SageMaker AI Model Building Pipeline.
1739 1740 1741 |
# File 'events/cfn_rule.rb', line 1739 def value @value end |
Class Method Details
.jsii_properties ⇒ Object
1741 1742 1743 1744 1745 1746 |
# File 'events/cfn_rule.rb', line 1741 def self.jsii_properties { :name => "name", :value => "value", } end |
Instance Method Details
#to_jsii ⇒ Object
1748 1749 1750 1751 1752 1753 1754 1755 |
# File 'events/cfn_rule.rb', line 1748 def to_jsii result = {} result.merge!({ "name" => @name, "value" => @value, }) result.compact end |