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.ProcessingOutput

Description

 
Synopsis

Documentation

data ProcessingOutput Source #

Describes the results of a processing job. The processing output must specify exactly one of either S3Output or FeatureStoreOutput types.

See: newProcessingOutput smart constructor.

Constructors

ProcessingOutput' 

Fields

Instances

Instances details
Eq ProcessingOutput Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProcessingOutput

Read ProcessingOutput Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProcessingOutput

Show ProcessingOutput Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProcessingOutput

Generic ProcessingOutput Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProcessingOutput

Associated Types

type Rep ProcessingOutput :: Type -> Type #

NFData ProcessingOutput Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProcessingOutput

Methods

rnf :: ProcessingOutput -> () #

Hashable ProcessingOutput Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProcessingOutput

ToJSON ProcessingOutput Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProcessingOutput

FromJSON ProcessingOutput Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProcessingOutput

type Rep ProcessingOutput Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProcessingOutput

type Rep ProcessingOutput = D1 ('MetaData "ProcessingOutput" "Amazonka.SageMaker.Types.ProcessingOutput" "libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker" 'False) (C1 ('MetaCons "ProcessingOutput'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "featureStoreOutput") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ProcessingFeatureStoreOutput)) :*: S1 ('MetaSel ('Just "s3Output") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ProcessingS3Output))) :*: (S1 ('MetaSel ('Just "appManaged") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "outputName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newProcessingOutput Source #

Create a value of ProcessingOutput 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:featureStoreOutput:ProcessingOutput', processingOutput_featureStoreOutput - Configuration for processing job outputs in Amazon SageMaker Feature Store. This processing output type is only supported when AppManaged is specified.

$sel:s3Output:ProcessingOutput', processingOutput_s3Output - Configuration for processing job outputs in Amazon S3.

$sel:appManaged:ProcessingOutput', processingOutput_appManaged - When True, output operations such as data upload are managed natively by the processing job application. When False (default), output operations are managed by Amazon SageMaker.

$sel:outputName:ProcessingOutput', processingOutput_outputName - The name for the processing job output.

processingOutput_featureStoreOutput :: Lens' ProcessingOutput (Maybe ProcessingFeatureStoreOutput) Source #

Configuration for processing job outputs in Amazon SageMaker Feature Store. This processing output type is only supported when AppManaged is specified.

processingOutput_s3Output :: Lens' ProcessingOutput (Maybe ProcessingS3Output) Source #

Configuration for processing job outputs in Amazon S3.

processingOutput_appManaged :: Lens' ProcessingOutput (Maybe Bool) Source #

When True, output operations such as data upload are managed natively by the processing job application. When False (default), output operations are managed by Amazon SageMaker.

processingOutput_outputName :: Lens' ProcessingOutput Text Source #

The name for the processing job output.