import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListConnectionFunctionsRequest, ListConnectionFunctionsResult } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListConnectionFunctionsCommand}. */ export interface ListConnectionFunctionsCommandInput extends ListConnectionFunctionsRequest { } /** * @public * * The output of {@link ListConnectionFunctionsCommand}. */ export interface ListConnectionFunctionsCommandOutput extends ListConnectionFunctionsResult, __MetadataBearer { } declare const ListConnectionFunctionsCommand_base: { new (input: ListConnectionFunctionsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListConnectionFunctionsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists connection functions.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CloudFrontClient, ListConnectionFunctionsCommand } from "@aws-sdk/client-cloudfront"; // ES Modules import * // const { CloudFrontClient, ListConnectionFunctionsCommand } = require("@aws-sdk/client-cloudfront"); // CommonJS import * // import type { CloudFrontClientConfig } from "@aws-sdk/client-cloudfront"; * const config = {}; // type is CloudFrontClientConfig * const client = new CloudFrontClient(config); * const input = { // ListConnectionFunctionsRequest * Marker: "STRING_VALUE", * MaxItems: Number("int"), * Stage: "DEVELOPMENT" || "LIVE", * }; * const command = new ListConnectionFunctionsCommand(input); * const response = await client.send(command); * // { // ListConnectionFunctionsResult * // NextMarker: "STRING_VALUE", * // ConnectionFunctions: [ // ConnectionFunctionSummaryList * // { // ConnectionFunctionSummary * // Name: "STRING_VALUE", // required * // Id: "STRING_VALUE", // required * // ConnectionFunctionConfig: { // FunctionConfig * // Comment: "STRING_VALUE", // required * // Runtime: "cloudfront-js-1.0" || "cloudfront-js-2.0", // required * // KeyValueStoreAssociations: { // KeyValueStoreAssociations * // Quantity: Number("int"), // required * // Items: [ // KeyValueStoreAssociationList * // { // KeyValueStoreAssociation * // KeyValueStoreARN: "STRING_VALUE", // required * // }, * // ], * // }, * // }, * // ConnectionFunctionArn: "STRING_VALUE", // required * // Status: "STRING_VALUE", // required * // Stage: "DEVELOPMENT" || "LIVE", // required * // CreatedTime: new Date("TIMESTAMP"), // required * // LastModifiedTime: new Date("TIMESTAMP"), // required * // }, * // ], * // }; * * ``` * * @param ListConnectionFunctionsCommandInput - {@link ListConnectionFunctionsCommandInput} * @returns {@link ListConnectionFunctionsCommandOutput} * @see {@link ListConnectionFunctionsCommandInput} for command's `input` shape. * @see {@link ListConnectionFunctionsCommandOutput} for command's `response` shape. * @see {@link CloudFrontClientResolvedConfig | config} for CloudFrontClient's `config` shape. * * @throws {@link AccessDenied} (client fault) *

Access denied.

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

An argument is invalid.

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

This operation is not supported in this Amazon Web Services Region.

* * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* * * @public */ export declare class ListConnectionFunctionsCommand extends ListConnectionFunctionsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListConnectionFunctionsRequest; output: ListConnectionFunctionsResult; }; sdk: { input: ListConnectionFunctionsCommandInput; output: ListConnectionFunctionsCommandOutput; }; }; }