Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-s3output.html

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

string

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-s3output.html#cfn-sagemaker-processingjob-s3output-localpath

S3UploadMode

Whether to upload the results of the processing job continuously or after the job completes.

string S3UploadMode { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-s3output.html#cfn-sagemaker-processingjob-s3output-s3uploadmode

S3Uri

The URI of the Amazon S3 prefix Amazon SageMaker downloads data required to run a processing job.

string S3Uri { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-s3output.html#cfn-sagemaker-processingjob-s3output-s3uri

Back to top Generated by DocFX