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)


2695
2696
2697
2698
2699
2700
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2695

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)


2695
2696
2697
2698
2699
2700
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2695

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