Interface CfnMonitoringSchedule.MonitoringAppSpecificationProperty

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

@Stability(Stable) public static interface CfnMonitoringSchedule.MonitoringAppSpecificationProperty extends software.amazon.jsii.JsiiSerializable
Container image configuration object for the 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.*;
 MonitoringAppSpecificationProperty monitoringAppSpecificationProperty = MonitoringAppSpecificationProperty.builder()
         .imageUri("imageUri")
         // the properties below are optional
         .containerArguments(List.of("containerArguments"))
         .containerEntrypoint(List.of("containerEntrypoint"))
         .postAnalyticsProcessorSourceUri("postAnalyticsProcessorSourceUri")
         .recordPreprocessorSourceUri("recordPreprocessorSourceUri")
         .build();
 

See Also: