import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeNotificationSubscriptionsRequest, DescribeNotificationSubscriptionsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeNotificationSubscriptionsCommand}. */ export interface DescribeNotificationSubscriptionsCommandInput extends DescribeNotificationSubscriptionsRequest { } /** * @public * * The output of {@link DescribeNotificationSubscriptionsCommand}. */ export interface DescribeNotificationSubscriptionsCommandOutput extends DescribeNotificationSubscriptionsResponse, __MetadataBearer { } declare const DescribeNotificationSubscriptionsCommand_base: { new (input: DescribeNotificationSubscriptionsCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeNotificationSubscriptionsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists the specified notification subscriptions.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { WorkDocsClient, DescribeNotificationSubscriptionsCommand } from "@aws-sdk/client-workdocs"; // ES Modules import * // const { WorkDocsClient, DescribeNotificationSubscriptionsCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import * // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs"; * const config = {}; // type is WorkDocsClientConfig * const client = new WorkDocsClient(config); * const input = { // DescribeNotificationSubscriptionsRequest * OrganizationId: "STRING_VALUE", // required * Marker: "STRING_VALUE", * Limit: Number("int"), * }; * const command = new DescribeNotificationSubscriptionsCommand(input); * const response = await client.send(command); * // { // DescribeNotificationSubscriptionsResponse * // Subscriptions: [ // SubscriptionList * // { // Subscription * // SubscriptionId: "STRING_VALUE", * // EndPoint: "STRING_VALUE", * // Protocol: "HTTPS" || "SQS", * // }, * // ], * // Marker: "STRING_VALUE", * // }; * * ``` * * @param DescribeNotificationSubscriptionsCommandInput - {@link DescribeNotificationSubscriptionsCommandInput} * @returns {@link DescribeNotificationSubscriptionsCommandOutput} * @see {@link DescribeNotificationSubscriptionsCommandInput} for command's `input` shape. * @see {@link DescribeNotificationSubscriptionsCommandOutput} for command's `response` shape. * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape. * * @throws {@link EntityNotExistsException} (client fault) *

The resource does not exist.

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

One or more of the dependencies is unavailable.

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

The caller does not have access to perform the action on the resource.

* * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* * * @public */ export declare class DescribeNotificationSubscriptionsCommand extends DescribeNotificationSubscriptionsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeNotificationSubscriptionsRequest; output: DescribeNotificationSubscriptionsResponse; }; sdk: { input: DescribeNotificationSubscriptionsCommandInput; output: DescribeNotificationSubscriptionsCommandOutput; }; }; }