Class: AWSCDK::Pipes::CfnPipe::SageMakerPipelineParameterProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Pipes::CfnPipe::SageMakerPipelineParameterProperty
- Defined in:
- pipes/cfn_pipe.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.
4179 4180 4181 4182 4183 4184 |
# File 'pipes/cfn_pipe.rb', line 4179 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.
4190 4191 4192 |
# File 'pipes/cfn_pipe.rb', line 4190 def name @name end |
#value ⇒ String (readonly)
Value of parameter to start execution of a SageMaker AI Model Building Pipeline.
4195 4196 4197 |
# File 'pipes/cfn_pipe.rb', line 4195 def value @value end |
Class Method Details
.jsii_properties ⇒ Object
4197 4198 4199 4200 4201 4202 |
# File 'pipes/cfn_pipe.rb', line 4197 def self.jsii_properties { :name => "name", :value => "value", } end |
Instance Method Details
#to_jsii ⇒ Object
4204 4205 4206 4207 4208 4209 4210 4211 |
# File 'pipes/cfn_pipe.rb', line 4204 def to_jsii result = {} result.merge!({ "name" => @name, "value" => @value, }) result.compact end |