Interface CfnModelQualityJobDefinition.MonitoringOutputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelQualityJobDefinition.MonitoringOutputProperty.Jsii$Proxy
- Enclosing class:
CfnModelQualityJobDefinition
@Stability(Stable)
public static interface CfnModelQualityJobDefinition.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelQualityJobDefinition.MonitoringOutputPropertystatic final classAn implementation forCfnModelQualityJobDefinition.MonitoringOutputProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The Amazon S3 storage location where the results of a monitoring job are saved.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Output
The Amazon S3 storage location where the results of a monitoring job are saved.Returns union: either
IResolvableorCfnModelQualityJobDefinition.S3OutputProperty- See Also:
-
builder
-