Interface CfnMonitoringSchedulePropsMixin.MonitoringInputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMonitoringSchedulePropsMixin.MonitoringInputProperty.Jsii$Proxy
- Enclosing class:
CfnMonitoringSchedulePropsMixin
@Stability(Stable)
public static interface CfnMonitoringSchedulePropsMixin.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.cfnpropertymixins.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())
.excludeFeaturesAttribute("excludeFeaturesAttribute")
.localPath("localPath")
.s3DataDistributionType("s3DataDistributionType")
.s3InputMode("s3InputMode")
.build())
.endpointInput(EndpointInputProperty.builder()
.endpointName("endpointName")
.excludeFeaturesAttribute("excludeFeaturesAttribute")
.localPath("localPath")
.s3DataDistributionType("s3DataDistributionType")
.s3InputMode("s3InputMode")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMonitoringSchedulePropsMixin.MonitoringInputPropertystatic final classAn implementation forCfnMonitoringSchedulePropsMixin.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
IResolvableorCfnMonitoringSchedulePropsMixin.BatchTransformInputProperty- See Also:
-
getEndpointInput
The endpoint for a monitoring job.Returns union: either
IResolvableorCfnMonitoringSchedulePropsMixin.EndpointInputProperty- See Also:
-
builder
-