import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListPageReceiptsRequest, ListPageReceiptsResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListPageReceiptsCommand}. */ export interface ListPageReceiptsCommandInput extends ListPageReceiptsRequest { } /** * @public * * The output of {@link ListPageReceiptsCommand}. */ export interface ListPageReceiptsCommandOutput extends ListPageReceiptsResult, __MetadataBearer { } declare const ListPageReceiptsCommand_base: { new (input: ListPageReceiptsCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListPageReceiptsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists all of the engagements to contact channels that have been acknowledged.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SSMContactsClient, ListPageReceiptsCommand } from "@aws-sdk/client-ssm-contacts"; // ES Modules import * // const { SSMContactsClient, ListPageReceiptsCommand } = 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 = { // ListPageReceiptsRequest * PageId: "STRING_VALUE", // required * NextToken: "STRING_VALUE", * MaxResults: Number("int"), * }; * const command = new ListPageReceiptsCommand(input); * const response = await client.send(command); * // { // ListPageReceiptsResult * // NextToken: "STRING_VALUE", * // Receipts: [ // ReceiptsList * // { // Receipt * // ContactChannelArn: "STRING_VALUE", * // ReceiptType: "DELIVERED" || "ERROR" || "READ" || "SENT" || "STOP", // required * // ReceiptInfo: "STRING_VALUE", * // ReceiptTime: new Date("TIMESTAMP"), // required * // }, * // ], * // }; * * ``` * * @param ListPageReceiptsCommandInput - {@link ListPageReceiptsCommandInput} * @returns {@link ListPageReceiptsCommandOutput} * @see {@link ListPageReceiptsCommandInput} for command's `input` shape. * @see {@link ListPageReceiptsCommandOutput} 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 ListPageReceiptsCommand extends ListPageReceiptsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListPageReceiptsRequest; output: ListPageReceiptsResult; }; sdk: { input: ListPageReceiptsCommandInput; output: ListPageReceiptsCommandOutput; }; }; }