@Stability(value=Stable)
public static interface CfnModelExplainabilityJobDefinition.MonitoringOutputConfigProperty
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.*;
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 |
CfnModelExplainabilityJobDefinition.MonitoringOutputConfigProperty.Builder
|
static class |
CfnModelExplainabilityJobDefinition.MonitoringOutputConfigProperty.Jsii$Proxy
An implementation for
CfnModelExplainabilityJobDefinition.MonitoringOutputConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnModelExplainabilityJobDefinition.MonitoringOutputConfigProperty.Builder |
builder() |
default 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.
|
Object |
getMonitoringOutputs()
Monitoring outputs for monitoring jobs.
|
@Stability(value=Stable) @NotNull Object getMonitoringOutputs()
This is where the output of the periodic monitoring jobs is uploaded.
@Stability(value=Stable) @Nullable default String getKmsKeyId()
@Stability(value=Stable) static CfnModelExplainabilityJobDefinition.MonitoringOutputConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.