Interface CfnProcessingJob.ProcessingOutputsObjectProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProcessingJob.ProcessingOutputsObjectProperty.Jsii$Proxy
- Enclosing class:
CfnProcessingJob
@Stability(Stable)
public static interface CfnProcessingJob.ProcessingOutputsObjectProperty
extends software.amazon.jsii.JsiiSerializable
Describes the results of a processing job.
The processing output must specify exactly one of either S3Output or FeatureStoreOutput types.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.sagemaker.*;
ProcessingOutputsObjectProperty processingOutputsObjectProperty = ProcessingOutputsObjectProperty.builder()
.outputName("outputName")
// the properties below are optional
.appManaged(false)
.featureStoreOutput(FeatureStoreOutputProperty.builder()
.featureGroupName("featureGroupName")
.build())
.s3Output(S3OutputProperty.builder()
.s3UploadMode("s3UploadMode")
.s3Uri("s3Uri")
// the properties below are optional
.localPath("localPath")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProcessingJob.ProcessingOutputsObjectPropertystatic final classAn implementation forCfnProcessingJob.ProcessingOutputsObjectProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectWhenTrue, output operations such as data upload are managed natively by the processing job application.default ObjectConfiguration for processing job outputs in Amazon SageMaker Feature Store.The name for the processing job output.default ObjectConfiguration for uploading output data to Amazon S3 from the processing container.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOutputName
The name for the processing job output.- See Also:
-
getAppManaged
WhenTrue, output operations such as data upload are managed natively by the processing job application.When
False(default), output operations are managed by Amazon SageMaker.Returns union: either
BooleanorIResolvable- See Also:
-
getFeatureStoreOutput
Configuration for processing job outputs in Amazon SageMaker Feature Store.Returns union: either
IResolvableorCfnProcessingJob.FeatureStoreOutputProperty- See Also:
-
getS3Output
Configuration for uploading output data to Amazon S3 from the processing container.Returns union: either
IResolvableorCfnProcessingJob.S3OutputProperty- See Also:
-
builder
-