import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeJobSchemaVersionRequest, DescribeJobSchemaVersionResponse } from "../models/models_3"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeJobSchemaVersionCommand}. */ export interface DescribeJobSchemaVersionCommandInput extends DescribeJobSchemaVersionRequest { } /** * @public * * The output of {@link DescribeJobSchemaVersionCommand}. */ export interface DescribeJobSchemaVersionCommandOutput extends DescribeJobSchemaVersionResponse, __MetadataBearer { } declare const DescribeJobSchemaVersionCommand_base: { new (input: DescribeJobSchemaVersionCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeJobSchemaVersionCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns the JSON schema for a specified job category and schema version. Use this schema to validate your JobConfigDocument before calling CreateJob. If you don't specify a schema version, the latest version is returned. The schema defines required fields, allowed values, and constraints for the job configuration.

The following operations are related to DescribeJobSchemaVersion:

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, DescribeJobSchemaVersionCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, DescribeJobSchemaVersionCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * // import type { SageMakerClientConfig } from "@aws-sdk/client-sagemaker"; * const config = {}; // type is SageMakerClientConfig * const client = new SageMakerClient(config); * const input = { // DescribeJobSchemaVersionRequest * JobCategory: "AgentRFT" || "AgentRFTEvaluation", // required * JobConfigSchemaVersion: "STRING_VALUE", * }; * const command = new DescribeJobSchemaVersionCommand(input); * const response = await client.send(command); * // { // DescribeJobSchemaVersionResponse * // JobCategory: "AgentRFT" || "AgentRFTEvaluation", // required * // JobConfigSchemaVersion: "STRING_VALUE", // required * // JobConfigSchema: "STRING_VALUE", // required * // }; * * ``` * * @param DescribeJobSchemaVersionCommandInput - {@link DescribeJobSchemaVersionCommandInput} * @returns {@link DescribeJobSchemaVersionCommandOutput} * @see {@link DescribeJobSchemaVersionCommandInput} for command's `input` shape. * @see {@link DescribeJobSchemaVersionCommandOutput} for command's `response` shape. * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape. * * @throws {@link ResourceNotFound} (client fault) *

Resource being access is not found.

* * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* * * @public */ export declare class DescribeJobSchemaVersionCommand extends DescribeJobSchemaVersionCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeJobSchemaVersionRequest; output: DescribeJobSchemaVersionResponse; }; sdk: { input: DescribeJobSchemaVersionCommandInput; output: DescribeJobSchemaVersionCommandOutput; }; }; }