Class: Aws::SageMaker::Types::ProcessingS3Output

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

Overview

Configuration for uploading output data to Amazon S3 from the processing container.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#local_pathString

The local path of a directory where you want Amazon SageMaker to upload its contents to Amazon S3. LocalPath is an absolute path to a directory containing output files. This directory will be created by the platform and exist when your container's entrypoint is invoked.

Returns:

  • (String)


35274
35275
35276
35277
35278
35279
35280
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 35274

class ProcessingS3Output < Struct.new(
  :s3_uri,
  :local_path,
  :s3_upload_mode)
  SENSITIVE = []
  include Aws::Structure
end

#s3_upload_modeString

Whether to upload the results of the processing job continuously or after the job completes.

Returns:

  • (String)


35274
35275
35276
35277
35278
35279
35280
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 35274

class ProcessingS3Output < Struct.new(
  :s3_uri,
  :local_path,
  :s3_upload_mode)
  SENSITIVE = []
  include Aws::Structure
end

#s3_uriString

A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to save the results of a processing job.

Returns:

  • (String)


35274
35275
35276
35277
35278
35279
35280
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 35274

class ProcessingS3Output < Struct.new(
  :s3_uri,
  :local_path,
  :s3_upload_mode)
  SENSITIVE = []
  include Aws::Structure
end