@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.863Z") @Stability(value=Stable) public interface CfnDataQualityJobDefinitionProps 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.*;
CfnDataQualityJobDefinitionProps cfnDataQualityJobDefinitionProps = CfnDataQualityJobDefinitionProps.builder()
.dataQualityAppSpecification(DataQualityAppSpecificationProperty.builder()
.imageUri("imageUri")
// the properties below are optional
.containerArguments(List.of("containerArguments"))
.containerEntrypoint(List.of("containerEntrypoint"))
.environment(Map.of(
"environmentKey", "environment"))
.postAnalyticsProcessorSourceUri("postAnalyticsProcessorSourceUri")
.recordPreprocessorSourceUri("recordPreprocessorSourceUri")
.build())
.dataQualityJobInput(DataQualityJobInputProperty.builder()
.endpointInput(EndpointInputProperty.builder()
.endpointName("endpointName")
.localPath("localPath")
// the properties below are optional
.s3DataDistributionType("s3DataDistributionType")
.s3InputMode("s3InputMode")
.build())
.build())
.dataQualityJobOutputConfig(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())
.jobResources(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
.dataQualityBaselineConfig(DataQualityBaselineConfigProperty.builder()
.baseliningJobName("baseliningJobName")
.constraintsResource(ConstraintsResourceProperty.builder()
.s3Uri("s3Uri")
.build())
.statisticsResource(StatisticsResourceProperty.builder()
.s3Uri("s3Uri")
.build())
.build())
.jobDefinitionName("jobDefinitionName")
.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())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataQualityJobDefinitionProps.Builder
A builder for
CfnDataQualityJobDefinitionProps |
static class |
CfnDataQualityJobDefinitionProps.Jsii$Proxy
An implementation for
CfnDataQualityJobDefinitionProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataQualityJobDefinitionProps.Builder |
builder() |
Object |
getDataQualityAppSpecification()
Specifies the container that runs the monitoring job.
|
default Object |
getDataQualityBaselineConfig()
Configures the constraints and baselines for the monitoring job.
|
Object |
getDataQualityJobInput()
A list of inputs for the monitoring job.
|
Object |
getDataQualityJobOutputConfig()
The output configuration for monitoring jobs.
|
default String |
getJobDefinitionName()
The name for the monitoring job definition.
|
Object |
getJobResources()
Identifies the resources to deploy for a monitoring job.
|
default Object |
getNetworkConfig()
Specifies networking configuration for the monitoring job.
|
String |
getRoleArn()
The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can assume to perform tasks on your behalf.
|
default Object |
getStoppingCondition()
A time limit for how long the monitoring job is allowed to run before stopping.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
@Stability(value=Stable) @NotNull Object getDataQualityAppSpecification()
@Stability(value=Stable) @NotNull Object getDataQualityJobInput()
Currently endpoints are supported as monitoring inputs.
@Stability(value=Stable) @NotNull Object getDataQualityJobOutputConfig()
@Stability(value=Stable) @NotNull Object getJobResources()
@Stability(value=Stable) @NotNull String getRoleArn()
@Stability(value=Stable) @Nullable default Object getDataQualityBaselineConfig()
@Stability(value=Stable) @Nullable default String getJobDefinitionName()
@Stability(value=Stable) @Nullable default Object getNetworkConfig()
@Stability(value=Stable) @Nullable default Object getStoppingCondition()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
For more information, see Tag .
@Stability(value=Stable) static CfnDataQualityJobDefinitionProps.Builder builder()
Copyright © 2022. All rights reserved.