Interface CfnProcessingJobPropsMixin.ProcessingOutputsObjectProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProcessingJobPropsMixin.ProcessingOutputsObjectProperty.Jsii$Proxy
- Enclosing class:
CfnProcessingJobPropsMixin
@Stability(Stable)
public static interface CfnProcessingJobPropsMixin.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.mixins.preview.services.sagemaker.mixins.*;
ProcessingOutputsObjectProperty processingOutputsObjectProperty = ProcessingOutputsObjectProperty.builder()
.appManaged(false)
.featureStoreOutput(FeatureStoreOutputProperty.builder()
.featureGroupName("featureGroupName")
.build())
.outputName("outputName")
.s3Output(S3OutputProperty.builder()
.localPath("localPath")
.s3UploadMode("s3UploadMode")
.s3Uri("s3Uri")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnProcessingJobPropsMixin.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.default StringThe 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
-
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
IResolvableorCfnProcessingJobPropsMixin.FeatureStoreOutputProperty- See Also:
-
getOutputName
The name for the processing job output.- See Also:
-
getS3Output
Configuration for uploading output data to Amazon S3 from the processing container.Returns union: either
IResolvableorCfnProcessingJobPropsMixin.S3OutputProperty- See Also:
-
builder
@Stability(Stable) static CfnProcessingJobPropsMixin.ProcessingOutputsObjectProperty.Builder builder()
-