UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

126 lines (125 loc) 5.73 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::SageMaker::DataQualityJobDefinition */ export declare class DataQualityJobDefinition extends pulumi.CustomResource { /** * Get an existing DataQualityJobDefinition resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): DataQualityJobDefinition; /** * Returns true if the given object is an instance of DataQualityJobDefinition. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is DataQualityJobDefinition; /** * The time at which the job definition was created. */ readonly creationTime: pulumi.Output<string>; /** * Specifies the container that runs the monitoring job. */ readonly dataQualityAppSpecification: pulumi.Output<outputs.sagemaker.DataQualityJobDefinitionDataQualityAppSpecification>; /** * Configures the constraints and baselines for the monitoring job. */ readonly dataQualityBaselineConfig: pulumi.Output<outputs.sagemaker.DataQualityJobDefinitionDataQualityBaselineConfig | undefined>; /** * A list of inputs for the monitoring job. Currently endpoints are supported as monitoring inputs. */ readonly dataQualityJobInput: pulumi.Output<outputs.sagemaker.DataQualityJobDefinitionDataQualityJobInput>; /** * The output configuration for monitoring jobs. */ readonly dataQualityJobOutputConfig: pulumi.Output<outputs.sagemaker.DataQualityJobDefinitionMonitoringOutputConfig>; readonly endpointName: pulumi.Output<string | undefined>; /** * The Amazon Resource Name (ARN) of job definition. */ readonly jobDefinitionArn: pulumi.Output<string>; /** * The name for the monitoring job definition. */ readonly jobDefinitionName: pulumi.Output<string | undefined>; /** * Identifies the resources to deploy for a monitoring job. */ readonly jobResources: pulumi.Output<outputs.sagemaker.DataQualityJobDefinitionMonitoringResources>; /** * Specifies networking configuration for the monitoring job. */ readonly networkConfig: pulumi.Output<outputs.sagemaker.DataQualityJobDefinitionNetworkConfig | undefined>; /** * The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can assume to perform tasks on your behalf. */ readonly roleArn: pulumi.Output<string>; /** * A time limit for how long the monitoring job is allowed to run before stopping. */ readonly stoppingCondition: pulumi.Output<outputs.sagemaker.DataQualityJobDefinitionStoppingCondition | undefined>; /** * An array of key-value pairs to apply to this resource. */ readonly tags: pulumi.Output<outputs.CreateOnlyTag[] | undefined>; /** * Create a DataQualityJobDefinition resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: DataQualityJobDefinitionArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a DataQualityJobDefinition resource. */ export interface DataQualityJobDefinitionArgs { /** * Specifies the container that runs the monitoring job. */ dataQualityAppSpecification: pulumi.Input<inputs.sagemaker.DataQualityJobDefinitionDataQualityAppSpecificationArgs>; /** * Configures the constraints and baselines for the monitoring job. */ dataQualityBaselineConfig?: pulumi.Input<inputs.sagemaker.DataQualityJobDefinitionDataQualityBaselineConfigArgs>; /** * A list of inputs for the monitoring job. Currently endpoints are supported as monitoring inputs. */ dataQualityJobInput: pulumi.Input<inputs.sagemaker.DataQualityJobDefinitionDataQualityJobInputArgs>; /** * The output configuration for monitoring jobs. */ dataQualityJobOutputConfig: pulumi.Input<inputs.sagemaker.DataQualityJobDefinitionMonitoringOutputConfigArgs>; endpointName?: pulumi.Input<string>; /** * The name for the monitoring job definition. */ jobDefinitionName?: pulumi.Input<string>; /** * Identifies the resources to deploy for a monitoring job. */ jobResources: pulumi.Input<inputs.sagemaker.DataQualityJobDefinitionMonitoringResourcesArgs>; /** * Specifies networking configuration for the monitoring job. */ networkConfig?: pulumi.Input<inputs.sagemaker.DataQualityJobDefinitionNetworkConfigArgs>; /** * The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can assume to perform tasks on your behalf. */ roleArn: pulumi.Input<string>; /** * A time limit for how long the monitoring job is allowed to run before stopping. */ stoppingCondition?: pulumi.Input<inputs.sagemaker.DataQualityJobDefinitionStoppingConditionArgs>; /** * An array of key-value pairs to apply to this resource. */ tags?: pulumi.Input<pulumi.Input<inputs.CreateOnlyTagArgs>[]>; }