Interface CfnModelBiasJobDefinition.MonitoringOutputProperty

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

@Stability(Stable) public static interface CfnModelBiasJobDefinition.MonitoringOutputProperty extends software.amazon.jsii.JsiiSerializable
The output object for a monitoring job.

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

See Also: