Class: Aws::SageMaker::Types::Parameter

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Assigns a value to a named Pipeline parameter.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the parameter to assign a value to. This parameter name must match a named parameter in the pipeline definition.

Returns:

  • (String)


33988
33989
33990
33991
33992
33993
# File 'lib/aws-sdk-sagemaker/types.rb', line 33988

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

#valueString

The literal value for the parameter.

Returns:

  • (String)


33988
33989
33990
33991
33992
33993
# File 'lib/aws-sdk-sagemaker/types.rb', line 33988

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