import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListSubCheckResultsInput, ListSubCheckResultsOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListSubCheckResultsCommand}. */ export interface ListSubCheckResultsCommandInput extends ListSubCheckResultsInput { } /** * @public * * The output of {@link ListSubCheckResultsCommand}. */ export interface ListSubCheckResultsCommandOutput extends ListSubCheckResultsOutput, __MetadataBearer { } declare const ListSubCheckResultsCommand_base: { new (input: ListSubCheckResultsCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListSubCheckResultsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists the sub-check results of a specified configuration check operation.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SsmSapClient, ListSubCheckResultsCommand } from "@aws-sdk/client-ssm-sap"; // ES Modules import * // const { SsmSapClient, ListSubCheckResultsCommand } = require("@aws-sdk/client-ssm-sap"); // CommonJS import * // import type { SsmSapClientConfig } from "@aws-sdk/client-ssm-sap"; * const config = {}; // type is SsmSapClientConfig * const client = new SsmSapClient(config); * const input = { // ListSubCheckResultsInput * OperationId: "STRING_VALUE", // required * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new ListSubCheckResultsCommand(input); * const response = await client.send(command); * // { // ListSubCheckResultsOutput * // SubCheckResults: [ // SubCheckResultList * // { // SubCheckResult * // Id: "STRING_VALUE", * // Name: "STRING_VALUE", * // Description: "STRING_VALUE", * // References: [ // SubCheckReferencesList * // "STRING_VALUE", * // ], * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListSubCheckResultsCommandInput - {@link ListSubCheckResultsCommandInput} * @returns {@link ListSubCheckResultsCommandOutput} * @see {@link ListSubCheckResultsCommandInput} for command's `input` shape. * @see {@link ListSubCheckResultsCommandOutput} for command's `response` shape. * @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

An internal error has occurred.

* * @throws {@link ValidationException} (client fault) *

The input fails to satisfy the constraints specified by an AWS service.

* * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* * * @public */ export declare class ListSubCheckResultsCommand extends ListSubCheckResultsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListSubCheckResultsInput; output: ListSubCheckResultsOutput; }; sdk: { input: ListSubCheckResultsCommandInput; output: ListSubCheckResultsCommandOutput; }; }; }