Class: Aws::SageMaker::Types::ProcessingInput

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

Overview

The inputs for a processing job. The processing input must specify exactly one of either S3Input or DatasetDefinition types.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#app_managedBoolean

When True, input operations such as data download are managed natively by the processing job application. When False (default), input operations are managed by Amazon SageMaker.

Returns:

  • (Boolean)


34835
34836
34837
34838
34839
34840
34841
34842
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 34835

class ProcessingInput < Struct.new(
  :input_name,
  :app_managed,
  :s3_input,
  :dataset_definition)
  SENSITIVE = []
  include Aws::Structure
end

#dataset_definitionTypes::DatasetDefinition

Configuration for a Dataset Definition input.



34835
34836
34837
34838
34839
34840
34841
34842
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 34835

class ProcessingInput < Struct.new(
  :input_name,
  :app_managed,
  :s3_input,
  :dataset_definition)
  SENSITIVE = []
  include Aws::Structure
end

#input_nameString

The name for the processing job input.

Returns:

  • (String)


34835
34836
34837
34838
34839
34840
34841
34842
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 34835

class ProcessingInput < Struct.new(
  :input_name,
  :app_managed,
  :s3_input,
  :dataset_definition)
  SENSITIVE = []
  include Aws::Structure
end

#s3_inputTypes::ProcessingS3Input

Configuration for downloading input data from Amazon S3 into the processing container.



34835
34836
34837
34838
34839
34840
34841
34842
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 34835

class ProcessingInput < Struct.new(
  :input_name,
  :app_managed,
  :s3_input,
  :dataset_definition)
  SENSITIVE = []
  include Aws::Structure
end