Class: Aws::SageMaker::Types::OutputParameter

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

Overview

An output parameter of a pipeline step.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the output parameter.

Returns:

  • (String)


31966
31967
31968
31969
31970
31971
# File 'lib/aws-sdk-sagemaker/types.rb', line 31966

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

#valueString

The value of the output parameter.

Returns:

  • (String)


31966
31967
31968
31969
31970
31971
# File 'lib/aws-sdk-sagemaker/types.rb', line 31966

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