Interface CfnProcessingJobPropsMixin.S3OutputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProcessingJobPropsMixin.S3OutputProperty.Jsii$Proxy
- Enclosing class:
CfnProcessingJobPropsMixin
@Stability(Stable)
public static interface CfnProcessingJobPropsMixin.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.cfnpropertymixins.services.sagemaker.*;
S3OutputProperty s3OutputProperty = S3OutputProperty.builder()
.localPath("localPath")
.s3UploadMode("s3UploadMode")
.s3Uri("s3Uri")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProcessingJobPropsMixin.S3OutputPropertystatic final classAn implementation forCfnProcessingJobPropsMixin.S3OutputProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe local path of a directory where you want Amazon SageMaker to upload its contents to Amazon S3.default StringWhether to upload the results of the processing job continuously or after the job completes.default StringgetS3Uri()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
-
getLocalPath
The local path of a directory where you want Amazon SageMaker to upload its contents to Amazon S3.LocalPathis 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:
-
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:
-
builder
-