libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.SageMaker.Types.ProcessingS3Output

Description

 
Synopsis

Documentation

data ProcessingS3Output Source #

Configuration for uploading output data to Amazon S3 from the processing container.

See: newProcessingS3Output smart constructor.

Constructors

ProcessingS3Output' 

Fields

  • s3Uri :: Text

    A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to save the results of a processing job.

  • localPath :: Text

    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 :: ProcessingS3UploadMode

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

Instances

Instances details
Eq ProcessingS3Output Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProcessingS3Output

Read ProcessingS3Output Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProcessingS3Output

Show ProcessingS3Output Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProcessingS3Output

Generic ProcessingS3Output Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProcessingS3Output

Associated Types

type Rep ProcessingS3Output :: Type -> Type #

NFData ProcessingS3Output Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProcessingS3Output

Methods

rnf :: ProcessingS3Output -> () #

Hashable ProcessingS3Output Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProcessingS3Output

ToJSON ProcessingS3Output Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProcessingS3Output

FromJSON ProcessingS3Output Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProcessingS3Output

type Rep ProcessingS3Output Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProcessingS3Output

type Rep ProcessingS3Output = D1 ('MetaData "ProcessingS3Output" "Amazonka.SageMaker.Types.ProcessingS3Output" "libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker" 'False) (C1 ('MetaCons "ProcessingS3Output'" 'PrefixI 'True) (S1 ('MetaSel ('Just "s3Uri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "localPath") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "s3UploadMode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ProcessingS3UploadMode))))

newProcessingS3Output Source #

Create a value of ProcessingS3Output with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:s3Uri:ProcessingS3Output', processingS3Output_s3Uri - A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to save the results of a processing job.

$sel:localPath:ProcessingS3Output', processingS3Output_localPath - 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.

$sel:s3UploadMode:ProcessingS3Output', processingS3Output_s3UploadMode - Whether to upload the results of the processing job continuously or after the job completes.

processingS3Output_s3Uri :: Lens' ProcessingS3Output Text Source #

A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to save the results of a processing job.

processingS3Output_localPath :: Lens' ProcessingS3Output Text Source #

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.

processingS3Output_s3UploadMode :: Lens' ProcessingS3Output ProcessingS3UploadMode Source #

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