You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ProcessingInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  input_name: "String", # required
  s3_input: { # required
    s3_uri: "S3Uri", # required
    local_path: "ProcessingLocalPath", # required
    s3_data_type: "ManifestFile", # required, accepts ManifestFile, S3Prefix
    s3_input_mode: "Pipe", # required, accepts Pipe, File
    s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
    s3_compression_type: "None", # accepts None, Gzip
  },
}

The inputs for a processing job.

Instance Attribute Summary collapse

Instance Attribute Details

#input_nameString

The name of the inputs for the processing job.

Returns:

  • (String)

    The name of the inputs for the processing job.

#s3_inputTypes::ProcessingS3Input

The S3 inputs for the processing job.

Returns: