Class: AWSCDK::Pipes::CfnPipe::SageMakerPipelineParameterProperty

Inherits:
Jsii::Struct
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name:, value:) ⇒ SageMakerPipelineParameterProperty

Returns a new instance of SageMakerPipelineParameterProperty.

Parameters:

  • name (String)

    Name of parameter to start execution of a SageMaker AI Model Building Pipeline.

  • value (String)

    Value of parameter to start execution of a SageMaker AI Model Building Pipeline.



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

#nameString (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

#valueString (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_propertiesObject



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_jsiiObject



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