interface MonitoringOutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnModelExplainabilityJobDefinitionPropsMixin.MonitoringOutputProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnModelExplainabilityJobDefinitionPropsMixin_MonitoringOutputProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnModelExplainabilityJobDefinitionPropsMixin.MonitoringOutputProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnModelExplainabilityJobDefinitionPropsMixin.MonitoringOutputProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnModelExplainabilityJobDefinitionPropsMixin » MonitoringOutputProperty |
The output object for a monitoring job.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const monitoringOutputProperty: sagemaker.CfnModelExplainabilityJobDefinitionPropsMixin.MonitoringOutputProperty = {
s3Output: {
localPath: 'localPath',
s3UploadMode: 's3UploadMode',
s3Uri: 's3Uri',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | The Amazon S3 storage location where the results of a monitoring job are saved. |
s3Output?
Type:
IResolvable | S3
(optional)
The Amazon S3 storage location where the results of a monitoring job are saved.

.NET
Go
Java
Python
TypeScript