Interface CfnMonitoringSchedulePropsMixin.MonitoringAppSpecificationProperty

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

@Stability(Stable) public static interface CfnMonitoringSchedulePropsMixin.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.cfnpropertymixins.services.sagemaker.*;
 MonitoringAppSpecificationProperty monitoringAppSpecificationProperty = MonitoringAppSpecificationProperty.builder()
         .containerArguments(List.of("containerArguments"))
         .containerEntrypoint(List.of("containerEntrypoint"))
         .imageUri("imageUri")
         .postAnalyticsProcessorSourceUri("postAnalyticsProcessorSourceUri")
         .recordPreprocessorSourceUri("recordPreprocessorSourceUri")
         .build();
 

See Also: