Class: Aws::SageMaker::Types::ProcessingS3Output
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ProcessingS3Output
- 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
-
#local_path ⇒ String
The local path of a directory where you want Amazon SageMaker to upload its contents to Amazon S3.
-
#s3_upload_mode ⇒ String
Whether to upload the results of the processing job continuously or after the job completes.
-
#s3_uri ⇒ String
A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to save the results of a processing job.
Instance Attribute Details
#local_path ⇒ String
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.
37387 37388 37389 37390 37391 37392 37393 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 37387 class ProcessingS3Output < Struct.new( :s3_uri, :local_path, :s3_upload_mode) SENSITIVE = [] include Aws::Structure end |
#s3_upload_mode ⇒ String
Whether to upload the results of the processing job continuously or after the job completes.
37387 37388 37389 37390 37391 37392 37393 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 37387 class ProcessingS3Output < Struct.new( :s3_uri, :local_path, :s3_upload_mode) SENSITIVE = [] include Aws::Structure end |
#s3_uri ⇒ String
A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to save the results of a processing job.
37387 37388 37389 37390 37391 37392 37393 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 37387 class ProcessingS3Output < Struct.new( :s3_uri, :local_path, :s3_upload_mode) SENSITIVE = [] include Aws::Structure end |