@Stability(value=Stable)
public static interface CfnMonitoringSchedule.MonitoringJobDefinitionProperty
extends software.amazon.jsii.JsiiSerializable
// 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.*;
MonitoringJobDefinitionProperty monitoringJobDefinitionProperty = MonitoringJobDefinitionProperty.builder()
.monitoringAppSpecification(MonitoringAppSpecificationProperty.builder()
.imageUri("imageUri")
// the properties below are optional
.containerArguments(List.of("containerArguments"))
.containerEntrypoint(List.of("containerEntrypoint"))
.postAnalyticsProcessorSourceUri("postAnalyticsProcessorSourceUri")
.recordPreprocessorSourceUri("recordPreprocessorSourceUri")
.build())
.monitoringInputs(List.of(MonitoringInputProperty.builder()
.endpointInput(EndpointInputProperty.builder()
.endpointName("endpointName")
.localPath("localPath")
// the properties below are optional
.s3DataDistributionType("s3DataDistributionType")
.s3InputMode("s3InputMode")
.build())
.build()))
.monitoringOutputConfig(MonitoringOutputConfigProperty.builder()
.monitoringOutputs(List.of(MonitoringOutputProperty.builder()
.s3Output(S3OutputProperty.builder()
.localPath("localPath")
.s3Uri("s3Uri")
// the properties below are optional
.s3UploadMode("s3UploadMode")
.build())
.build()))
// the properties below are optional
.kmsKeyId("kmsKeyId")
.build())
.monitoringResources(MonitoringResourcesProperty.builder()
.clusterConfig(ClusterConfigProperty.builder()
.instanceCount(123)
.instanceType("instanceType")
.volumeSizeInGb(123)
// the properties below are optional
.volumeKmsKeyId("volumeKmsKeyId")
.build())
.build())
.roleArn("roleArn")
// the properties below are optional
.baselineConfig(BaselineConfigProperty.builder()
.constraintsResource(ConstraintsResourceProperty.builder()
.s3Uri("s3Uri")
.build())
.statisticsResource(StatisticsResourceProperty.builder()
.s3Uri("s3Uri")
.build())
.build())
.environment(Map.of(
"environmentKey", "environment"))
.networkConfig(NetworkConfigProperty.builder()
.enableInterContainerTrafficEncryption(false)
.enableNetworkIsolation(false)
.vpcConfig(VpcConfigProperty.builder()
.securityGroupIds(List.of("securityGroupIds"))
.subnets(List.of("subnets"))
.build())
.build())
.stoppingCondition(StoppingConditionProperty.builder()
.maxRuntimeInSeconds(123)
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnMonitoringSchedule.MonitoringJobDefinitionProperty.Builder
A builder for
CfnMonitoringSchedule.MonitoringJobDefinitionProperty |
static class |
CfnMonitoringSchedule.MonitoringJobDefinitionProperty.Jsii$Proxy
An implementation for
CfnMonitoringSchedule.MonitoringJobDefinitionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnMonitoringSchedule.MonitoringJobDefinitionProperty.Builder |
builder() |
default Object |
getBaselineConfig()
`CfnMonitoringSchedule.MonitoringJobDefinitionProperty.BaselineConfig`.
|
default Object |
getEnvironment()
`CfnMonitoringSchedule.MonitoringJobDefinitionProperty.Environment`.
|
Object |
getMonitoringAppSpecification()
`CfnMonitoringSchedule.MonitoringJobDefinitionProperty.MonitoringAppSpecification`.
|
Object |
getMonitoringInputs()
`CfnMonitoringSchedule.MonitoringJobDefinitionProperty.MonitoringInputs`.
|
Object |
getMonitoringOutputConfig()
`CfnMonitoringSchedule.MonitoringJobDefinitionProperty.MonitoringOutputConfig`.
|
Object |
getMonitoringResources()
`CfnMonitoringSchedule.MonitoringJobDefinitionProperty.MonitoringResources`.
|
default Object |
getNetworkConfig()
`CfnMonitoringSchedule.MonitoringJobDefinitionProperty.NetworkConfig`.
|
String |
getRoleArn()
`CfnMonitoringSchedule.MonitoringJobDefinitionProperty.RoleArn`.
|
default Object |
getStoppingCondition()
`CfnMonitoringSchedule.MonitoringJobDefinitionProperty.StoppingCondition`.
|
@Stability(value=Stable) @Nullable default Object getBaselineConfig()
@Stability(value=Stable) @Nullable default Object getEnvironment()
@Stability(value=Stable) @NotNull Object getMonitoringAppSpecification()
@Stability(value=Stable) @NotNull Object getMonitoringInputs()
@Stability(value=Stable) @NotNull Object getMonitoringOutputConfig()
@Stability(value=Stable) @NotNull Object getMonitoringResources()
@Stability(value=Stable) @Nullable default Object getNetworkConfig()
@Stability(value=Stable) @NotNull String getRoleArn()
@Stability(value=Stable) @Nullable default Object getStoppingCondition()
@Stability(value=Stable) static CfnMonitoringSchedule.MonitoringJobDefinitionProperty.Builder builder()
Copyright © 2021. All rights reserved.