Interface CfnMonitoringSchedule.MonitoringOutputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMonitoringSchedule.MonitoringOutputProperty.Jsii$Proxy
- Enclosing class:
CfnMonitoringSchedule
@Stability(Stable)
public static interface CfnMonitoringSchedule.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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMonitoringSchedule.MonitoringOutputProperty
static final class
An implementation forCfnMonitoringSchedule.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. -
builder
-