public static interface CfnDataQualityJobDefinition.MonitoringOutputConfigProperty
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.*; MonitoringOutputConfigProperty monitoringOutputConfigProperty = 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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDataQualityJobDefinition.MonitoringOutputConfigProperty.Builder
|
static class |
CfnDataQualityJobDefinition.MonitoringOutputConfigProperty.Jsii$Proxy
An implementation for
CfnDataQualityJobDefinition.MonitoringOutputConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDataQualityJobDefinition.MonitoringOutputConfigProperty.Builder |
builder() |
default java.lang.String |
getKmsKeyId()
The AWS Key Management Service ( AWS KMS) key that Amazon SageMaker uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption.
|
java.lang.Object |
getMonitoringOutputs()
Monitoring outputs for monitoring jobs.
|
java.lang.Object getMonitoringOutputs()
This is where the output of the periodic monitoring jobs is uploaded.
default java.lang.String getKmsKeyId()