@Stability(value=Stable)
public static interface CfnMonitoringSchedule.MonitoringAppSpecificationProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnMonitoringSchedule.MonitoringAppSpecificationProperty.Builder
A builder for
CfnMonitoringSchedule.MonitoringAppSpecificationProperty |
static class |
CfnMonitoringSchedule.MonitoringAppSpecificationProperty.Jsii$Proxy
An implementation for
CfnMonitoringSchedule.MonitoringAppSpecificationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnMonitoringSchedule.MonitoringAppSpecificationProperty.Builder |
builder() |
default List<String> |
getContainerArguments()
An array of arguments for the container used to run the monitoring job.
|
default List<String> |
getContainerEntrypoint()
Specifies the entrypoint for a container used to run the monitoring job.
|
String |
getImageUri()
The container image to be run by the monitoring job.
|
default String |
getPostAnalyticsProcessorSourceUri()
An Amazon S3 URI to a script that is called after analysis has been performed.
|
default String |
getRecordPreprocessorSourceUri()
An Amazon S3 URI to a script that is called per row prior to running analysis.
|
@Stability(value=Stable) @NotNull String getImageUri()
@Stability(value=Stable) @Nullable default List<String> getContainerArguments()
@Stability(value=Stable) @Nullable default List<String> getContainerEntrypoint()
@Stability(value=Stable) @Nullable default String getPostAnalyticsProcessorSourceUri()
Applicable only for the built-in (first party) containers.
@Stability(value=Stable) @Nullable default String getRecordPreprocessorSourceUri()
It can base64 decode the payload and convert it into a flatted json so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers.
@Stability(value=Stable) static CfnMonitoringSchedule.MonitoringAppSpecificationProperty.Builder builder()
Copyright © 2022. All rights reserved.