Class: Aws::Pipes::Types::SageMakerPipelineParameter

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb

Overview

Name/Value pair of a parameter to start execution of a SageMaker Model Building Pipeline.

Constant Summary collapse

SENSITIVE =
[:name, :value]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

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

Returns:

  • (String)


2900
2901
2902
2903
2904
2905
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2900

class SageMakerPipelineParameter < Struct.new(
  :name,
  :value)
  SENSITIVE = [:name, :value]
  include Aws::Structure
end

#valueString

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

Returns:

  • (String)


2900
2901
2902
2903
2904
2905
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2900

class SageMakerPipelineParameter < Struct.new(
  :name,
  :value)
  SENSITIVE = [:name, :value]
  include Aws::Structure
end