import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client"; import type { DescribeLoadBalancerAttributesInput, DescribeLoadBalancerAttributesOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeLoadBalancerAttributesCommand}. */ export interface DescribeLoadBalancerAttributesCommandInput extends DescribeLoadBalancerAttributesInput { } /** * @public * * The output of {@link DescribeLoadBalancerAttributesCommand}. */ export interface DescribeLoadBalancerAttributesCommandOutput extends DescribeLoadBalancerAttributesOutput, __MetadataBearer { } declare const DescribeLoadBalancerAttributesCommand_base: { new (input: DescribeLoadBalancerAttributesCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DescribeLoadBalancerAttributesCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Describes the attributes for the specified Application Load Balancer, Network Load * Balancer, or Gateway Load Balancer.

*

For more information, see the following:

* * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ElasticLoadBalancingV2Client, DescribeLoadBalancerAttributesCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import * // const { ElasticLoadBalancingV2Client, DescribeLoadBalancerAttributesCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import * // import type { ElasticLoadBalancingV2ClientConfig } from "@aws-sdk/client-elastic-load-balancing-v2"; * const config = {}; // type is ElasticLoadBalancingV2ClientConfig * const client = new ElasticLoadBalancingV2Client(config); * const input = { // DescribeLoadBalancerAttributesInput * LoadBalancerArn: "STRING_VALUE", // required * }; * const command = new DescribeLoadBalancerAttributesCommand(input); * const response = await client.send(command); * // { // DescribeLoadBalancerAttributesOutput * // Attributes: [ // LoadBalancerAttributes * // { // LoadBalancerAttribute * // Key: "STRING_VALUE", * // Value: "STRING_VALUE", * // }, * // ], * // }; * * ``` * * @param DescribeLoadBalancerAttributesCommandInput - {@link DescribeLoadBalancerAttributesCommandInput} * @returns {@link DescribeLoadBalancerAttributesCommandOutput} * @see {@link DescribeLoadBalancerAttributesCommandInput} for command's `input` shape. * @see {@link DescribeLoadBalancerAttributesCommandOutput} for command's `response` shape. * @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape. * * @throws {@link LoadBalancerNotFoundException} (client fault) *

The specified load balancer does not exist.

* * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* * * @example To describe load balancer attributes * ```javascript * // This example describes the attributes of the specified load balancer. * const input = { * LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188" * }; * const command = new DescribeLoadBalancerAttributesCommand(input); * const response = await client.send(command); * /* response is * { * Attributes: [ * { * Key: "access_logs.s3.enabled", * Value: "false" * }, * { * Key: "idle_timeout.timeout_seconds", * Value: "60" * }, * { * Key: "access_logs.s3.prefix", * Value: "" * }, * { * Key: "deletion_protection.enabled", * Value: "false" * }, * { * Key: "access_logs.s3.bucket", * Value: "" * } * ] * } * *\/ * ``` * * @public */ export declare class DescribeLoadBalancerAttributesCommand extends DescribeLoadBalancerAttributesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeLoadBalancerAttributesInput; output: DescribeLoadBalancerAttributesOutput; }; sdk: { input: DescribeLoadBalancerAttributesCommandInput; output: DescribeLoadBalancerAttributesCommandOutput; }; }; }