import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListPageResolutionsRequest, ListPageResolutionsResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListPageResolutionsCommand}. */ export interface ListPageResolutionsCommandInput extends ListPageResolutionsRequest { } /** * @public * * The output of {@link ListPageResolutionsCommand}. */ export interface ListPageResolutionsCommandOutput extends ListPageResolutionsResult, __MetadataBearer { } declare const ListPageResolutionsCommand_base: { new (input: ListPageResolutionsCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListPageResolutionsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns the resolution path of an engagement. For example, the escalation plan engaged * in an incident might target an on-call schedule that includes several contacts in a * rotation, but just one contact on-call when the incident starts. The resolution path * indicates the hierarchy of escalation plan > on-call schedule > * contact.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SSMContactsClient, ListPageResolutionsCommand } from "@aws-sdk/client-ssm-contacts"; // ES Modules import * // const { SSMContactsClient, ListPageResolutionsCommand } = require("@aws-sdk/client-ssm-contacts"); // CommonJS import * // import type { SSMContactsClientConfig } from "@aws-sdk/client-ssm-contacts"; * const config = {}; // type is SSMContactsClientConfig * const client = new SSMContactsClient(config); * const input = { // ListPageResolutionsRequest * NextToken: "STRING_VALUE", * PageId: "STRING_VALUE", // required * }; * const command = new ListPageResolutionsCommand(input); * const response = await client.send(command); * // { // ListPageResolutionsResult * // NextToken: "STRING_VALUE", * // PageResolutions: [ // ResolutionList // required * // { // ResolutionContact * // ContactArn: "STRING_VALUE", // required * // Type: "PERSONAL" || "ESCALATION" || "ONCALL_SCHEDULE", // required * // StageIndex: Number("int"), * // }, * // ], * // }; * * ``` * * @param ListPageResolutionsCommandInput - {@link ListPageResolutionsCommandInput} * @returns {@link ListPageResolutionsCommandOutput} * @see {@link ListPageResolutionsCommandInput} for command's `input` shape. * @see {@link ListPageResolutionsCommandOutput} for command's `response` shape. * @see {@link SSMContactsClientResolvedConfig | config} for SSMContactsClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You don't have sufficient access to perform this operation.

* * @throws {@link InternalServerException} (server fault) *

Unexpected error occurred while processing the request.

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

Request references a resource that doesn't exist.

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

The request was denied due to request throttling.

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

The input fails to satisfy the constraints specified by an Amazon Web Services * service.

* * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* * * @public */ export declare class ListPageResolutionsCommand extends ListPageResolutionsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListPageResolutionsRequest; output: ListPageResolutionsResult; }; sdk: { input: ListPageResolutionsCommandInput; output: ListPageResolutionsCommandOutput; }; }; }