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

.NET
Go
Java
Python
TypeScript