Interface ProcessingS3Output.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ProcessingS3Output.Builder,ProcessingS3Output>
,SdkBuilder<ProcessingS3Output.Builder,ProcessingS3Output>
,SdkPojo
- Enclosing class:
- ProcessingS3Output
public static interface ProcessingS3Output.Builder extends SdkPojo, CopyableBuilder<ProcessingS3Output.Builder,ProcessingS3Output>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProcessingS3Output.Builder
localPath(String localPath)
The local path of a directory where you want Amazon SageMaker to upload its contents to Amazon S3.ProcessingS3Output.Builder
s3UploadMode(String s3UploadMode)
Whether to upload the results of the processing job continuously or after the job completes.ProcessingS3Output.Builder
s3UploadMode(ProcessingS3UploadMode s3UploadMode)
Whether to upload the results of the processing job continuously or after the job completes.ProcessingS3Output.Builder
s3Uri(String s3Uri)
A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to save the results of a processing job.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
s3Uri
ProcessingS3Output.Builder s3Uri(String s3Uri)
A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to save the results of a processing job.
- Parameters:
s3Uri
- A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to save the results of a processing job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
localPath
ProcessingS3Output.Builder localPath(String localPath)
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.- Parameters:
localPath
- 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:
- Returns a reference to this object so that method calls can be chained together.
-
s3UploadMode
ProcessingS3Output.Builder s3UploadMode(String s3UploadMode)
Whether to upload the results of the processing job continuously or after the job completes.
- Parameters:
s3UploadMode
- Whether to upload the results of the processing job continuously or after the job completes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ProcessingS3UploadMode
,ProcessingS3UploadMode
-
s3UploadMode
ProcessingS3Output.Builder s3UploadMode(ProcessingS3UploadMode s3UploadMode)
Whether to upload the results of the processing job continuously or after the job completes.
- Parameters:
s3UploadMode
- Whether to upload the results of the processing job continuously or after the job completes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ProcessingS3UploadMode
,ProcessingS3UploadMode
-
-