interface MonitoringOutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelBiasJobDefinitionPropsMixin.MonitoringOutputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelBiasJobDefinitionPropsMixin_MonitoringOutputProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelBiasJobDefinitionPropsMixin.MonitoringOutputProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelBiasJobDefinitionPropsMixin.MonitoringOutputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelBiasJobDefinitionPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const monitoringOutputProperty: sagemaker_mixins.CfnModelBiasJobDefinitionPropsMixin.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