interface S3OutputProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Sagemaker.CfnProcessingJob.S3OutputProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnProcessingJob_S3OutputProperty | 
|  Java | software.amazon.awscdk.services.sagemaker.CfnProcessingJob.S3OutputProperty | 
|  Python | aws_cdk.aws_sagemaker.CfnProcessingJob.S3OutputProperty | 
|  TypeScript | aws-cdk-lib»aws_sagemaker»CfnProcessingJob»S3OutputProperty | 
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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const s3OutputProperty: sagemaker.CfnProcessingJob.S3OutputProperty = {
  s3UploadMode: 's3UploadMode',
  s3Uri: 's3Uri',
  // the properties below are optional
  localPath: 'localPath',
};
Properties
| Name | Type | Description | 
|---|---|---|
| s3 | string | Whether to upload the results of the processing job continuously or after the job completes. | 
| s3 | string | The URI of the Amazon S3 prefix Amazon SageMaker downloads data required to run a processing job. | 
| local | string | The local path of a directory where you want Amazon SageMaker to upload its contents to Amazon S3. | 
s3UploadMode
Type:
string
Whether to upload the results of the processing job continuously or after the job completes.
s3Uri
Type:
string
The URI of the Amazon S3 prefix Amazon SageMaker downloads data required to run a processing job.
localPath?
Type:
string
(optional)
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.
