Interface CfnProcessingJob.S3OutputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProcessingJob.S3OutputProperty.Jsii$Proxy
- Enclosing class:
CfnProcessingJob
@Stability(Stable)
public static interface CfnProcessingJob.S3OutputProperty
extends software.amazon.jsii.JsiiSerializable
Configuration for uploading output data to Amazon S3 from the processing container.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.sagemaker.*; S3OutputProperty s3OutputProperty = S3OutputProperty.builder() .s3UploadMode("s3UploadMode") .s3Uri("s3Uri") // the properties below are optional .localPath("localPath") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnProcessingJob.S3OutputProperty
static final class
An implementation forCfnProcessingJob.S3OutputProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The local path of a directory where you want Amazon SageMaker to upload its contents to Amazon S3.Whether to upload the results of the processing job continuously or after the job completes.getS3Uri()
The URI of the Amazon S3 prefix Amazon SageMaker downloads data required to run a processing job.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3UploadMode
Whether to upload the results of the processing job continuously or after the job completes.- See Also:
-
getS3Uri
The URI of the Amazon S3 prefix Amazon SageMaker downloads data required to run a processing job.- See Also:
-
getLocalPath
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.- See Also:
-
builder
-