Interface CfnMonitoringSchedule.MonitoringInputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMonitoringSchedule.MonitoringInputProperty.Jsii$Proxy
- Enclosing class:
CfnMonitoringSchedule
@Stability(Stable)
public static interface CfnMonitoringSchedule.MonitoringInputProperty
extends software.amazon.jsii.JsiiSerializable
The inputs 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.*;
MonitoringInputProperty monitoringInputProperty = MonitoringInputProperty.builder()
.batchTransformInput(BatchTransformInputProperty.builder()
.dataCapturedDestinationS3Uri("dataCapturedDestinationS3Uri")
.datasetFormat(DatasetFormatProperty.builder()
.csv(CsvProperty.builder()
.header(false)
.build())
.json(JsonProperty.builder()
.line(false)
.build())
.parquet(false)
.build())
.localPath("localPath")
// the properties below are optional
.excludeFeaturesAttribute("excludeFeaturesAttribute")
.s3DataDistributionType("s3DataDistributionType")
.s3InputMode("s3InputMode")
.build())
.endpointInput(EndpointInputProperty.builder()
.endpointName("endpointName")
.localPath("localPath")
// the properties below are optional
.excludeFeaturesAttribute("excludeFeaturesAttribute")
.s3DataDistributionType("s3DataDistributionType")
.s3InputMode("s3InputMode")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMonitoringSchedule.MonitoringInputPropertystatic final classAn implementation forCfnMonitoringSchedule.MonitoringInputProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBatchTransformInput
Input object for the batch transform job.Returns union: either
IResolvableorCfnMonitoringSchedule.BatchTransformInputProperty- See Also:
-
getEndpointInput
The endpoint for a monitoring job.Returns union: either
IResolvableorCfnMonitoringSchedule.EndpointInputProperty- See Also:
-
builder
-