Interface CfnProcessingJob.IS3OutputProperty
Configuration for uploading output data to Amazon S3 from the processing container.
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnProcessingJob.IS3OutputProperty
Syntax (vb)
Public Interface CfnProcessingJob.IS3OutputProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Sagemaker;
var s3OutputProperty = new S3OutputProperty {
S3UploadMode = "s3UploadMode",
S3Uri = "s3Uri",
// the properties below are optional
LocalPath = "localPath"
};
Synopsis
Properties
| LocalPath | The local path of a directory where you want Amazon SageMaker to upload its contents to Amazon S3. |
| S3UploadMode | Whether to upload the results of the processing job continuously or after the job completes. |
| S3Uri | The URI of the Amazon S3 prefix Amazon SageMaker downloads data required to run a processing job. |
Properties
LocalPath
The local path of a directory where you want Amazon SageMaker to upload its contents to Amazon S3.
string? LocalPath { get; }
Property Value
Remarks
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
Whether to upload the results of the processing job continuously or after the job completes.
string S3UploadMode { get; }
Property Value
Remarks
S3Uri
The URI of the Amazon S3 prefix Amazon SageMaker downloads data required to run a processing job.
string S3Uri { get; }