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 class
A builder forCfnProcessingJob.ProcessingOutputsObjectProperty
static final class
An implementation forCfnProcessingJob.ProcessingOutputsObjectProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
WhenTrue
, output operations such as data upload are managed natively by the processing job application.default Object
Configuration for processing job outputs in Amazon SageMaker Feature Store.The name for the processing job output.default Object
Configuration 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.- See Also:
-
getFeatureStoreOutput
Configuration for processing job outputs in Amazon SageMaker Feature Store.- See Also:
-
getS3Output
Configuration for uploading output data to Amazon S3 from the processing container.- See Also:
-
builder
-