import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { GetAnycastIpListRequest, GetAnycastIpListResult } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetAnycastIpListCommand}. */ export interface GetAnycastIpListCommandInput extends GetAnycastIpListRequest { } /** * @public * * The output of {@link GetAnycastIpListCommand}. */ export interface GetAnycastIpListCommandOutput extends GetAnycastIpListResult, __MetadataBearer { } declare const GetAnycastIpListCommand_base: { new (input: GetAnycastIpListCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: GetAnycastIpListCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Gets an Anycast static IP list.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CloudFrontClient, GetAnycastIpListCommand } from "@aws-sdk/client-cloudfront"; // ES Modules import * // const { CloudFrontClient, GetAnycastIpListCommand } = require("@aws-sdk/client-cloudfront"); // CommonJS import * const client = new CloudFrontClient(config); * const input = { // GetAnycastIpListRequest * Id: "STRING_VALUE", // required * }; * const command = new GetAnycastIpListCommand(input); * const response = await client.send(command); * // { // GetAnycastIpListResult * // AnycastIpList: { // AnycastIpList * // Id: "STRING_VALUE", // required * // Name: "STRING_VALUE", // required * // Status: "STRING_VALUE", // required * // Arn: "STRING_VALUE", // required * // AnycastIps: [ // AnycastIps // required * // "STRING_VALUE", * // ], * // IpCount: Number("int"), // required * // LastModifiedTime: new Date("TIMESTAMP"), // required * // }, * // ETag: "STRING_VALUE", * // }; * * ``` * * @param GetAnycastIpListCommandInput - {@link GetAnycastIpListCommandInput} * @returns {@link GetAnycastIpListCommandOutput} * @see {@link GetAnycastIpListCommandInput} for command's `input` shape. * @see {@link GetAnycastIpListCommandOutput} for command's `response` shape. * @see {@link CloudFrontClientResolvedConfig | config} for CloudFrontClient's `config` shape. * * @throws {@link AccessDenied} (client fault) *

Access denied.

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

The entity was not found.

* * @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 GetAnycastIpListCommand extends GetAnycastIpListCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetAnycastIpListRequest; output: GetAnycastIpListResult; }; sdk: { input: GetAnycastIpListCommandInput; output: GetAnycastIpListCommandOutput; }; }; }