Interface CfnModelQualityJobDefinition.MonitoringOutputConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnModelQualityJobDefinition.MonitoringOutputConfigProperty.Jsii$Proxy
Enclosing class:
CfnModelQualityJobDefinition

@Stability(Stable) public static interface CfnModelQualityJobDefinition.MonitoringOutputConfigProperty extends software.amazon.jsii.JsiiSerializable
The output configuration for monitoring jobs.

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.*;
 MonitoringOutputConfigProperty monitoringOutputConfigProperty = MonitoringOutputConfigProperty.builder()
         .monitoringOutputs(List.of(MonitoringOutputProperty.builder()
                 .s3Output(S3OutputProperty.builder()
                         .localPath("localPath")
                         .s3Uri("s3Uri")
                         // the properties below are optional
                         .s3UploadMode("s3UploadMode")
                         .build())
                 .build()))
         // the properties below are optional
         .kmsKeyId("kmsKeyId")
         .build();