Interface CfnMonitoringSchedulePropsMixin.MonitoringScheduleConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMonitoringSchedulePropsMixin.MonitoringScheduleConfigProperty.Jsii$Proxy
- Enclosing class:
CfnMonitoringSchedulePropsMixin
@Stability(Stable)
public static interface CfnMonitoringSchedulePropsMixin.MonitoringScheduleConfigProperty
extends software.amazon.jsii.JsiiSerializable
Configures the monitoring schedule and defines 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.*;
MonitoringScheduleConfigProperty monitoringScheduleConfigProperty = MonitoringScheduleConfigProperty.builder()
.monitoringJobDefinition(MonitoringJobDefinitionProperty.builder()
.baselineConfig(BaselineConfigProperty.builder()
.constraintsResource(ConstraintsResourceProperty.builder()
.s3Uri("s3Uri")
.build())
.statisticsResource(StatisticsResourceProperty.builder()
.s3Uri("s3Uri")
.build())
.build())
.environment(Map.of(
"environmentKey", "environment"))
.monitoringAppSpecification(MonitoringAppSpecificationProperty.builder()
.containerArguments(List.of("containerArguments"))
.containerEntrypoint(List.of("containerEntrypoint"))
.imageUri("imageUri")
.postAnalyticsProcessorSourceUri("postAnalyticsProcessorSourceUri")
.recordPreprocessorSourceUri("recordPreprocessorSourceUri")
.build())
.monitoringInputs(List.of(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()))
.monitoringOutputConfig(MonitoringOutputConfigProperty.builder()
.kmsKeyId("kmsKeyId")
.monitoringOutputs(List.of(MonitoringOutputProperty.builder()
.s3Output(S3OutputProperty.builder()
.localPath("localPath")
.s3UploadMode("s3UploadMode")
.s3Uri("s3Uri")
.build())
.build()))
.build())
.monitoringResources(MonitoringResourcesProperty.builder()
.clusterConfig(ClusterConfigProperty.builder()
.instanceCount(123)
.instanceType("instanceType")
.volumeKmsKeyId("volumeKmsKeyId")
.volumeSizeInGb(123)
.build())
.build())
.networkConfig(NetworkConfigProperty.builder()
.enableInterContainerTrafficEncryption(false)
.enableNetworkIsolation(false)
.vpcConfig(VpcConfigProperty.builder()
.securityGroupIds(List.of("securityGroupIds"))
.subnets(List.of("subnets"))
.build())
.build())
.roleArn("roleArn")
.stoppingCondition(StoppingConditionProperty.builder()
.maxRuntimeInSeconds(123)
.build())
.build())
.monitoringJobDefinitionName("monitoringJobDefinitionName")
.monitoringType("monitoringType")
.scheduleConfig(ScheduleConfigProperty.builder()
.dataAnalysisEndTime("dataAnalysisEndTime")
.dataAnalysisStartTime("dataAnalysisStartTime")
.scheduleExpression("scheduleExpression")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnMonitoringSchedulePropsMixin.MonitoringScheduleConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMonitoringJobDefinition
Defines the monitoring job.Returns union: either
IResolvableorCfnMonitoringSchedulePropsMixin.MonitoringJobDefinitionProperty- See Also:
-
getMonitoringJobDefinitionName
The name of the monitoring job definition to schedule.- See Also:
-
getMonitoringType
The type of the monitoring job definition to schedule.- See Also:
-
getScheduleConfig
Configures the monitoring schedule.Returns union: either
IResolvableorCfnMonitoringSchedulePropsMixin.ScheduleConfigProperty- See Also:
-
builder
@Stability(Stable) static CfnMonitoringSchedulePropsMixin.MonitoringScheduleConfigProperty.Builder builder()
-