Interface CfnProcessingJob.ProcessingOutputConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProcessingJob.ProcessingOutputConfigProperty.Jsii$Proxy
- Enclosing class:
CfnProcessingJob
@Stability(Stable)
public static interface CfnProcessingJob.ProcessingOutputConfigProperty
extends software.amazon.jsii.JsiiSerializable
Configuration for uploading output from the processing container.
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.*;
ProcessingOutputConfigProperty processingOutputConfigProperty = ProcessingOutputConfigProperty.builder()
.outputs(List.of(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()))
// the properties below are optional
.kmsKeyId("kmsKeyId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProcessingJob.ProcessingOutputConfigPropertystatic final classAn implementation forCfnProcessingJob.ProcessingOutputConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOutputs
An array of outputs configuring the data to upload from the processing container.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnProcessingJob.ProcessingOutputsObjectProperty>- See Also:
-
getKmsKeyId
The AWS Key Management Service ( AWS KMS) key that Amazon SageMaker uses to encrypt the processing job output.KmsKeyIdcan be an ID of a KMS key, ARN of a KMS key, or alias of a KMS key. TheKmsKeyIdis applied to all outputs.- See Also:
-
builder
-