import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { DescribeClusterSchedulerConfigRequest, DescribeClusterSchedulerConfigResponse } from "../models/models_2"; import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeClusterSchedulerConfigCommand}. */ export interface DescribeClusterSchedulerConfigCommandInput extends DescribeClusterSchedulerConfigRequest { } /** * @public * * The output of {@link DescribeClusterSchedulerConfigCommand}. */ export interface DescribeClusterSchedulerConfigCommandOutput extends DescribeClusterSchedulerConfigResponse, __MetadataBearer { } declare const DescribeClusterSchedulerConfigCommand_base: { new (input: DescribeClusterSchedulerConfigCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DescribeClusterSchedulerConfigCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Description of the cluster policy. This policy is used for task prioritization and fair-share allocation. This helps prioritize critical workloads and distributes idle compute across entities.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, DescribeClusterSchedulerConfigCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, DescribeClusterSchedulerConfigCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * const client = new SageMakerClient(config); * const input = { // DescribeClusterSchedulerConfigRequest * ClusterSchedulerConfigId: "STRING_VALUE", // required * ClusterSchedulerConfigVersion: Number("int"), * }; * const command = new DescribeClusterSchedulerConfigCommand(input); * const response = await client.send(command); * // { // DescribeClusterSchedulerConfigResponse * // ClusterSchedulerConfigArn: "STRING_VALUE", // required * // ClusterSchedulerConfigId: "STRING_VALUE", // required * // Name: "STRING_VALUE", // required * // ClusterSchedulerConfigVersion: Number("int"), // required * // Status: "Creating" || "CreateFailed" || "CreateRollbackFailed" || "Created" || "Updating" || "UpdateFailed" || "UpdateRollbackFailed" || "Updated" || "Deleting" || "DeleteFailed" || "DeleteRollbackFailed" || "Deleted", // required * // FailureReason: "STRING_VALUE", * // ClusterArn: "STRING_VALUE", * // SchedulerConfig: { // SchedulerConfig * // PriorityClasses: [ // PriorityClassList * // { // PriorityClass * // Name: "STRING_VALUE", // required * // Weight: Number("int"), // required * // }, * // ], * // FairShare: "Enabled" || "Disabled", * // }, * // Description: "STRING_VALUE", * // CreationTime: new Date("TIMESTAMP"), // required * // CreatedBy: { // UserContext * // UserProfileArn: "STRING_VALUE", * // UserProfileName: "STRING_VALUE", * // DomainId: "STRING_VALUE", * // IamIdentity: { // IamIdentity * // Arn: "STRING_VALUE", * // PrincipalId: "STRING_VALUE", * // SourceIdentity: "STRING_VALUE", * // }, * // }, * // LastModifiedTime: new Date("TIMESTAMP"), * // LastModifiedBy: { * // UserProfileArn: "STRING_VALUE", * // UserProfileName: "STRING_VALUE", * // DomainId: "STRING_VALUE", * // IamIdentity: { * // Arn: "STRING_VALUE", * // PrincipalId: "STRING_VALUE", * // SourceIdentity: "STRING_VALUE", * // }, * // }, * // }; * * ``` * * @param DescribeClusterSchedulerConfigCommandInput - {@link DescribeClusterSchedulerConfigCommandInput} * @returns {@link DescribeClusterSchedulerConfigCommandOutput} * @see {@link DescribeClusterSchedulerConfigCommandInput} for command's `input` shape. * @see {@link DescribeClusterSchedulerConfigCommandOutput} 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 DescribeClusterSchedulerConfigCommand extends DescribeClusterSchedulerConfigCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeClusterSchedulerConfigRequest; output: DescribeClusterSchedulerConfigResponse; }; sdk: { input: DescribeClusterSchedulerConfigCommandInput; output: DescribeClusterSchedulerConfigCommandOutput; }; }; }