import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { ListClusterSchedulerConfigsRequest, ListClusterSchedulerConfigsResponse } from "../models/models_4"; import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListClusterSchedulerConfigsCommand}. */ export interface ListClusterSchedulerConfigsCommandInput extends ListClusterSchedulerConfigsRequest { } /** * @public * * The output of {@link ListClusterSchedulerConfigsCommand}. */ export interface ListClusterSchedulerConfigsCommandOutput extends ListClusterSchedulerConfigsResponse, __MetadataBearer { } declare const ListClusterSchedulerConfigsCommand_base: { new (input: ListClusterSchedulerConfigsCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [ListClusterSchedulerConfigsCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

List the cluster policy configurations.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, ListClusterSchedulerConfigsCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, ListClusterSchedulerConfigsCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * const client = new SageMakerClient(config); * const input = { // ListClusterSchedulerConfigsRequest * CreatedAfter: new Date("TIMESTAMP"), * CreatedBefore: new Date("TIMESTAMP"), * NameContains: "STRING_VALUE", * ClusterArn: "STRING_VALUE", * Status: "Creating" || "CreateFailed" || "CreateRollbackFailed" || "Created" || "Updating" || "UpdateFailed" || "UpdateRollbackFailed" || "Updated" || "Deleting" || "DeleteFailed" || "DeleteRollbackFailed" || "Deleted", * SortBy: "Name" || "CreationTime" || "Status", * SortOrder: "Ascending" || "Descending", * NextToken: "STRING_VALUE", * MaxResults: Number("int"), * }; * const command = new ListClusterSchedulerConfigsCommand(input); * const response = await client.send(command); * // { // ListClusterSchedulerConfigsResponse * // ClusterSchedulerConfigSummaries: [ // ClusterSchedulerConfigSummaryList * // { // ClusterSchedulerConfigSummary * // ClusterSchedulerConfigArn: "STRING_VALUE", // required * // ClusterSchedulerConfigId: "STRING_VALUE", // required * // ClusterSchedulerConfigVersion: Number("int"), * // Name: "STRING_VALUE", // required * // CreationTime: new Date("TIMESTAMP"), // required * // LastModifiedTime: new Date("TIMESTAMP"), * // Status: "Creating" || "CreateFailed" || "CreateRollbackFailed" || "Created" || "Updating" || "UpdateFailed" || "UpdateRollbackFailed" || "Updated" || "Deleting" || "DeleteFailed" || "DeleteRollbackFailed" || "Deleted", // required * // ClusterArn: "STRING_VALUE", * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListClusterSchedulerConfigsCommandInput - {@link ListClusterSchedulerConfigsCommandInput} * @returns {@link ListClusterSchedulerConfigsCommandOutput} * @see {@link ListClusterSchedulerConfigsCommandInput} for command's `input` shape. * @see {@link ListClusterSchedulerConfigsCommandOutput} for command's `response` shape. * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape. * * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* * * @public */ export declare class ListClusterSchedulerConfigsCommand extends ListClusterSchedulerConfigsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListClusterSchedulerConfigsRequest; output: ListClusterSchedulerConfigsResponse; }; sdk: { input: ListClusterSchedulerConfigsCommandInput; output: ListClusterSchedulerConfigsCommandOutput; }; }; }