Interface CfnProcessingJobPropsMixin.ProcessingOutputConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProcessingJobPropsMixin.ProcessingOutputConfigProperty.Jsii$Proxy
- Enclosing class:
CfnProcessingJobPropsMixin
@Stability(Stable)
public static interface CfnProcessingJobPropsMixin.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.cfnpropertymixins.services.sagemaker.*;
ProcessingOutputConfigProperty processingOutputConfigProperty = ProcessingOutputConfigProperty.builder()
.kmsKeyId("kmsKeyId")
.outputs(List.of(ProcessingOutputsObjectProperty.builder()
.appManaged(false)
.featureStoreOutput(FeatureStoreOutputProperty.builder()
.featureGroupName("featureGroupName")
.build())
.outputName("outputName")
.s3Output(S3OutputProperty.builder()
.localPath("localPath")
.s3UploadMode("s3UploadMode")
.s3Uri("s3Uri")
.build())
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnProcessingJobPropsMixin.ProcessingOutputConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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:
-
getOutputs
An array of outputs configuring the data to upload from the processing container.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnProcessingJobPropsMixin.ProcessingOutputsObjectProperty>- See Also:
-
builder
@Stability(Stable) static CfnProcessingJobPropsMixin.ProcessingOutputConfigProperty.Builder builder()
-