Skip to main content

data_quality_job_definitions

Creates, updates, deletes or gets a data_quality_job_definition resource or lists data_quality_job_definitions in a region

Overview

Namedata_quality_job_definitions
TypeResource
DescriptionResource Type definition for AWS::SageMaker::DataQualityJobDefinition
Idawscc.sagemaker.data_quality_job_definitions

Fields

NameDatatypeDescription
job_definition_arnstringThe Amazon Resource Name (ARN) of job definition.
job_definition_namestringThe name of the job definition.
data_quality_baseline_configobjectBaseline configuration used to validate that the data conforms to the specified constraints and statistics.
data_quality_app_specificationobjectContainer image configuration object for the monitoring job.
data_quality_job_inputobjectThe inputs for a monitoring job.
data_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::DataQualityJobDefinition.

Methods

NameAccessible byRequired Params
create_resourceINSERTDataQualityAppSpecification, DataQualityJobInput, DataQualityJobOutputConfig, JobResources, RoleArn, region
delete_resourceDELETEdata__Identifier, region
list_resourcesSELECTregion
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all properties from an individual data_quality_job_definition.

SELECT
region,
job_definition_arn,
job_definition_name,
data_quality_baseline_config,
data_quality_app_specification,
data_quality_job_input,
data_quality_job_output_config,
job_resources,
network_config,
endpoint_name,
role_arn,
stopping_condition,
tags,
creation_time
FROM awscc.sagemaker.data_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 data_quality_job_definition resource, using stack-deploy.

/*+ create */
INSERT INTO awscc.sagemaker.data_quality_job_definitions (
DataQualityAppSpecification,
DataQualityJobInput,
DataQualityJobOutputConfig,
JobResources,
RoleArn,
region
)
SELECT
'{{ DataQualityAppSpecification }}',
'{{ DataQualityJobInput }}',
'{{ DataQualityJobOutputConfig }}',
'{{ JobResources }}',
'{{ RoleArn }}',
'{{ region }}';

DELETE example

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

Permissions

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

Create

sagemaker:CreateDataQualityJobDefinition,
sagemaker:DescribeDataQualityJobDefinition,
sagemaker:AddTags,
sagemaker:ListTags,
iam:PassRole

Delete

sagemaker:DeleteDataQualityJobDefinition

Read

sagemaker:DescribeDataQualityJobDefinition,
sagemaker:ListTags

List

sagemaker:ListDataQualityJobDefinitions,
sagemaker:ListTags