Skip to main content

model_quality_job_definitions

Creates, updates, deletes or gets a model_quality_job_definition resource or lists model_quality_job_definitions in a region

Overview

Namemodel_quality_job_definitions
TypeResource
DescriptionResource Type definition for AWS::SageMaker::ModelQualityJobDefinition
Idawscc.sagemaker.model_quality_job_definitions

Fields

NameDatatypeDescription
job_definition_arnstringThe Amazon Resource Name (ARN) of job definition.
job_definition_namestringThe name of the job definition.
model_quality_baseline_configobjectBaseline configuration used to validate that the data conforms to the specified constraints and statistics.
model_quality_app_specificationobjectContainer image configuration object for the monitoring job.
model_quality_job_inputobjectThe inputs for a monitoring job.
model_quality_job_output_configobjectThe output configuration for monitoring jobs.
job_resourcesobjectIdentifies the resources to deploy for a monitoring job.
network_configobjectNetworking options for a job, such as network traffic encryption between containers, whether to allow inbound and outbound network calls to and from containers, and the VPC subnets and security groups to use for VPC-enabled jobs.
endpoint_namestringThe name of the endpoint used to run the monitoring job.
role_arnstringThe Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can assume to perform tasks on your behalf.
stopping_conditionobjectConfigures conditions under which the processing job should be stopped, such as how long the processing job has been running. After the condition is met, the processing job is stopped.
tagsarrayAn array of key-value pairs to apply to this resource.
creation_timestringThe time at which the job definition was created.
regionstringAWS region.

For more information, see AWS::SageMaker::ModelQualityJobDefinition.

Methods

NameAccessible byRequired Params
create_resourceINSERTModelQualityAppSpecification, ModelQualityJobInput, ModelQualityJobOutputConfig, JobResources, RoleArn, region
delete_resourceDELETEdata__Identifier, region
list_resourcesSELECTregion
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all properties from an individual model_quality_job_definition.

SELECT
region,
job_definition_arn,
job_definition_name,
model_quality_baseline_config,
model_quality_app_specification,
model_quality_job_input,
model_quality_job_output_config,
job_resources,
network_config,
endpoint_name,
role_arn,
stopping_condition,
tags,
creation_time
FROM awscc.sagemaker.model_quality_job_definitions
WHERE region = 'us-east-1' AND data__Identifier = '<JobDefinitionArn>';

INSERT example

Use the following StackQL query and manifest file to create a new model_quality_job_definition resource, using stack-deploy.

/*+ create */
INSERT INTO awscc.sagemaker.model_quality_job_definitions (
ModelQualityAppSpecification,
ModelQualityJobInput,
ModelQualityJobOutputConfig,
JobResources,
RoleArn,
region
)
SELECT
'{{ ModelQualityAppSpecification }}',
'{{ ModelQualityJobInput }}',
'{{ ModelQualityJobOutputConfig }}',
'{{ JobResources }}',
'{{ RoleArn }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM awscc.sagemaker.model_quality_job_definitions
WHERE data__Identifier = '<JobDefinitionArn>'
AND region = 'us-east-1';

Permissions

To operate on the model_quality_job_definitions resource, the following permissions are required:

Create

sagemaker:CreateModelQualityJobDefinition,
sagemaker:DescribeModelQualityJobDefinition,
sagemaker:AddTags,
sagemaker:ListTags,
iam:PassRole

Delete

sagemaker:DeleteModelQualityJobDefinition

Read

sagemaker:DescribeModelQualityJobDefinition,
sagemaker:ListTags

List

sagemaker:ListModelQualityJobDefinitions,
sagemaker:ListTags