| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.SageMaker.Types.ProcessingOutput
Description
Synopsis
- data ProcessingOutput = ProcessingOutput' {}
- newProcessingOutput :: Text -> ProcessingOutput
- processingOutput_appManaged :: Lens' ProcessingOutput (Maybe Bool)
- processingOutput_featureStoreOutput :: Lens' ProcessingOutput (Maybe ProcessingFeatureStoreOutput)
- processingOutput_s3Output :: Lens' ProcessingOutput (Maybe ProcessingS3Output)
- processingOutput_outputName :: Lens' ProcessingOutput Text
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
Arguments
| :: Text | |
| -> ProcessingOutput |
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: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: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:outputName:ProcessingOutput', processingOutput_outputName - The name for the processing job output.
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_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_outputName :: Lens' ProcessingOutput Text Source #
The name for the processing job output.