interface S3OutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelQualityJobDefinitionPropsMixin.S3OutputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelQualityJobDefinitionPropsMixin_S3OutputProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelQualityJobDefinitionPropsMixin.S3OutputProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelQualityJobDefinitionPropsMixin.S3OutputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelQualityJobDefinitionPropsMixin » S3OutputProperty |
The Amazon S3 storage location where the results of a monitoring job are saved.
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 s3OutputProperty: sagemaker_mixins.CfnModelQualityJobDefinitionPropsMixin.S3OutputProperty = {
localPath: 'localPath',
s3UploadMode: 's3UploadMode',
s3Uri: 's3Uri',
};
Properties
| Name | Type | Description |
|---|---|---|
| local | string | The local path to the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job. |
| s3 | string | Whether to upload the results of the monitoring job continuously or after the job completes. |
| s3 | string | A URI that identifies the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job. |
localPath?
Type:
string
(optional)
The local path to the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.
LocalPath is an absolute path for the output data.
s3UploadMode?
Type:
string
(optional)
Whether to upload the results of the monitoring job continuously or after the job completes.
s3Uri?
Type:
string
(optional)
A URI that identifies the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.

.NET
Go
Java
Python
TypeScript