Class: AWSCDK::Scheduler::CfnSchedule::SageMakerPipelineParameterProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Scheduler::CfnSchedule::SageMakerPipelineParameterProperty
- Defined in:
- scheduler/cfn_schedule.rb
Overview
The name and value pair of a parameter to use to start execution of a SageMaker Model Building Pipeline.
Instance Attribute Summary collapse
-
#name ⇒ String
readonly
Name of parameter to start execution of a SageMaker Model Building Pipeline.
-
#value ⇒ String
readonly
Value of parameter to start execution of a SageMaker 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.
1287 1288 1289 1290 1291 1292 |
# File 'scheduler/cfn_schedule.rb', line 1287 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 Model Building Pipeline.
1298 1299 1300 |
# File 'scheduler/cfn_schedule.rb', line 1298 def name @name end |
#value ⇒ String (readonly)
Value of parameter to start execution of a SageMaker Model Building Pipeline.
1303 1304 1305 |
# File 'scheduler/cfn_schedule.rb', line 1303 def value @value end |
Class Method Details
.jsii_properties ⇒ Object
1305 1306 1307 1308 1309 1310 |
# File 'scheduler/cfn_schedule.rb', line 1305 def self.jsii_properties { :name => "name", :value => "value", } end |
Instance Method Details
#to_jsii ⇒ Object
1312 1313 1314 1315 1316 1317 1318 1319 |
# File 'scheduler/cfn_schedule.rb', line 1312 def to_jsii result = {} result.merge!({ "name" => @name, "value" => @value, }) result.compact end |