@aws-sdk/client-elastic-load-balancing 3.1087.0 → 3.1089.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/ElasticLoadBalancing.d.ts +94 -156
- package/dist-types/ts3.4/ElasticLoadBalancingClient.d.ts +7 -23
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +6 -2
- package/dist-types/ts3.4/commands/ApplySecurityGroupsToLoadBalancerCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/AttachLoadBalancerToSubnetsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ConfigureHealthCheckCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateAppCookieStickinessPolicyCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateLBCookieStickinessPolicyCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateLoadBalancerCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateLoadBalancerListenersCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateLoadBalancerPolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteLoadBalancerCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteLoadBalancerListenersCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteLoadBalancerPolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeregisterInstancesFromLoadBalancerCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeAccountLimitsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeInstanceHealthCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeLoadBalancerAttributesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeLoadBalancerPoliciesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeLoadBalancerPolicyTypesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeLoadBalancersCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DetachLoadBalancerFromSubnetsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DisableAvailabilityZonesForLoadBalancerCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/EnableAvailabilityZonesForLoadBalancerCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ModifyLoadBalancerAttributesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/RegisterInstancesWithLoadBalancerCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/SetLoadBalancerListenerSSLCertificateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/SetLoadBalancerPoliciesForBackendServerCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/SetLoadBalancerPoliciesOfListenerCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/errors.d.ts +22 -75
- package/dist-types/ts3.4/models/models_0.d.ts +1 -3
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/dist-types/ts3.4/waiters/waitForAnyInstanceInService.d.ts +3 -5
- package/dist-types/ts3.4/waiters/waitForInstanceDeregistered.d.ts +4 -8
- package/dist-types/ts3.4/waiters/waitForInstanceInService.d.ts +3 -5
- package/package.json +38 -38
|
@@ -8,16 +8,11 @@ export interface HttpAuthExtensionConfiguration {
|
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
10
|
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: ElasticLoadBalancingHttpAuthSchemeProvider
|
|
11
|
+
httpAuthSchemeProvider: ElasticLoadBalancingHttpAuthSchemeProvider,
|
|
12
12
|
): void;
|
|
13
13
|
httpAuthSchemeProvider(): ElasticLoadBalancingHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
14
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
15
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
16
|
}
|
|
22
17
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
18
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +20,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
20
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
21
|
}>;
|
|
27
22
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
23
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
24
|
) => HttpAuthExtensionConfiguration;
|
|
30
25
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
26
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
27
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { ElasticLoadBalancingClientResolvedConfig } from "../ElasticLoadBalancingClient";
|
|
15
|
-
export interface ElasticLoadBalancingHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface ElasticLoadBalancingHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface ElasticLoadBalancingHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface ElasticLoadBalancingHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
ElasticLoadBalancingClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
ElasticLoadBalancingHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultElasticLoadBalancingHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: ElasticLoadBalancingClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<ElasticLoadBalancingHttpAuthSchemeParameters>;
|
|
31
|
-
export interface ElasticLoadBalancingHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<ElasticLoadBalancingHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface ElasticLoadBalancingHttpAuthSchemeProvider extends HttpAuthSchemeProvider<ElasticLoadBalancingHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultElasticLoadBalancingHttpAuthSchemeProvider: ElasticLoadBalancingHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: ElasticLoadBalancingHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: ElasticLoadBalancingHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./ElasticLoadBalancingClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
ElasticLoadBalancingClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -4,14 +4,18 @@ export { __MetadataBearer };
|
|
|
4
4
|
export interface AddTagsCommandInput extends AddTagsInput {}
|
|
5
5
|
export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {}
|
|
6
6
|
declare const AddTagsCommand_base: {
|
|
7
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: AddTagsCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
8
10
|
AddTagsCommandInput,
|
|
9
11
|
AddTagsCommandOutput,
|
|
10
12
|
import("..").ElasticLoadBalancingClientResolvedConfig,
|
|
11
13
|
import("..").ServiceInputTypes,
|
|
12
14
|
import("..").ServiceOutputTypes
|
|
13
15
|
>;
|
|
14
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: AddTagsCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
15
19
|
AddTagsCommandInput,
|
|
16
20
|
AddTagsCommandOutput,
|
|
17
21
|
import("..").ElasticLoadBalancingClientResolvedConfig,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ApplySecurityGroupsToLoadBalancerOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ApplySecurityGroupsToLoadBalancerCommandInput
|
|
8
|
-
extends ApplySecurityGroupsToLoadBalancerInput {}
|
|
7
|
+
export interface ApplySecurityGroupsToLoadBalancerCommandInput extends ApplySecurityGroupsToLoadBalancerInput {}
|
|
9
8
|
export interface ApplySecurityGroupsToLoadBalancerCommandOutput
|
|
10
|
-
extends ApplySecurityGroupsToLoadBalancerOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ApplySecurityGroupsToLoadBalancerOutput, __MetadataBearer {}
|
|
12
10
|
declare const ApplySecurityGroupsToLoadBalancerCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ApplySecurityGroupsToLoadBalancerCommandInput
|
|
12
|
+
input: ApplySecurityGroupsToLoadBalancerCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ApplySecurityGroupsToLoadBalancerCommandInput,
|
|
17
15
|
ApplySecurityGroupsToLoadBalancerCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ApplySecurityGroupsToLoadBalancerCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ApplySecurityGroupsToLoadBalancerCommandInput
|
|
21
|
+
input: ApplySecurityGroupsToLoadBalancerCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ApplySecurityGroupsToLoadBalancerCommandInput,
|
|
26
24
|
ApplySecurityGroupsToLoadBalancerCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
AttachLoadBalancerToSubnetsOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface AttachLoadBalancerToSubnetsCommandInput
|
|
8
|
-
extends AttachLoadBalancerToSubnetsInput {}
|
|
7
|
+
export interface AttachLoadBalancerToSubnetsCommandInput extends AttachLoadBalancerToSubnetsInput {}
|
|
9
8
|
export interface AttachLoadBalancerToSubnetsCommandOutput
|
|
10
|
-
extends AttachLoadBalancerToSubnetsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends AttachLoadBalancerToSubnetsOutput, __MetadataBearer {}
|
|
12
10
|
declare const AttachLoadBalancerToSubnetsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: AttachLoadBalancerToSubnetsCommandInput
|
|
12
|
+
input: AttachLoadBalancerToSubnetsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
AttachLoadBalancerToSubnetsCommandInput,
|
|
17
15
|
AttachLoadBalancerToSubnetsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const AttachLoadBalancerToSubnetsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: AttachLoadBalancerToSubnetsCommandInput
|
|
21
|
+
input: AttachLoadBalancerToSubnetsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
AttachLoadBalancerToSubnetsCommandInput,
|
|
26
24
|
AttachLoadBalancerToSubnetsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ConfigureHealthCheckInput,
|
|
4
|
-
ConfigureHealthCheckOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ConfigureHealthCheckInput, ConfigureHealthCheckOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ConfigureHealthCheckCommandInput
|
|
8
|
-
extends ConfigureHealthCheckInput {}
|
|
4
|
+
export interface ConfigureHealthCheckCommandInput extends ConfigureHealthCheckInput {}
|
|
9
5
|
export interface ConfigureHealthCheckCommandOutput
|
|
10
|
-
extends ConfigureHealthCheckOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ConfigureHealthCheckOutput, __MetadataBearer {}
|
|
12
7
|
declare const ConfigureHealthCheckCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ConfigureHealthCheckCommandInput
|
|
9
|
+
input: ConfigureHealthCheckCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ConfigureHealthCheckCommandInput,
|
|
17
12
|
ConfigureHealthCheckCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ConfigureHealthCheckCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ConfigureHealthCheckCommandInput
|
|
18
|
+
input: ConfigureHealthCheckCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ConfigureHealthCheckCommandInput,
|
|
26
21
|
ConfigureHealthCheckCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateAppCookieStickinessPolicyOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateAppCookieStickinessPolicyCommandInput
|
|
8
|
-
extends CreateAppCookieStickinessPolicyInput {}
|
|
7
|
+
export interface CreateAppCookieStickinessPolicyCommandInput extends CreateAppCookieStickinessPolicyInput {}
|
|
9
8
|
export interface CreateAppCookieStickinessPolicyCommandOutput
|
|
10
|
-
extends CreateAppCookieStickinessPolicyOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateAppCookieStickinessPolicyOutput, __MetadataBearer {}
|
|
12
10
|
declare const CreateAppCookieStickinessPolicyCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateAppCookieStickinessPolicyCommandInput
|
|
12
|
+
input: CreateAppCookieStickinessPolicyCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateAppCookieStickinessPolicyCommandInput,
|
|
17
15
|
CreateAppCookieStickinessPolicyCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateAppCookieStickinessPolicyCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateAppCookieStickinessPolicyCommandInput
|
|
21
|
+
input: CreateAppCookieStickinessPolicyCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateAppCookieStickinessPolicyCommandInput,
|
|
26
24
|
CreateAppCookieStickinessPolicyCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateLBCookieStickinessPolicyOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateLBCookieStickinessPolicyCommandInput
|
|
8
|
-
extends CreateLBCookieStickinessPolicyInput {}
|
|
7
|
+
export interface CreateLBCookieStickinessPolicyCommandInput extends CreateLBCookieStickinessPolicyInput {}
|
|
9
8
|
export interface CreateLBCookieStickinessPolicyCommandOutput
|
|
10
|
-
extends CreateLBCookieStickinessPolicyOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateLBCookieStickinessPolicyOutput, __MetadataBearer {}
|
|
12
10
|
declare const CreateLBCookieStickinessPolicyCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateLBCookieStickinessPolicyCommandInput
|
|
12
|
+
input: CreateLBCookieStickinessPolicyCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateLBCookieStickinessPolicyCommandInput,
|
|
17
15
|
CreateLBCookieStickinessPolicyCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateLBCookieStickinessPolicyCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateLBCookieStickinessPolicyCommandInput
|
|
21
|
+
input: CreateLBCookieStickinessPolicyCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateLBCookieStickinessPolicyCommandInput,
|
|
26
24
|
CreateLBCookieStickinessPolicyCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateAccessPointInput,
|
|
4
|
-
CreateAccessPointOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateAccessPointInput, CreateAccessPointOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateLoadBalancerCommandInput
|
|
8
|
-
extends CreateAccessPointInput {}
|
|
4
|
+
export interface CreateLoadBalancerCommandInput extends CreateAccessPointInput {}
|
|
9
5
|
export interface CreateLoadBalancerCommandOutput
|
|
10
|
-
extends CreateAccessPointOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateAccessPointOutput, __MetadataBearer {}
|
|
12
7
|
declare const CreateLoadBalancerCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateLoadBalancerCommandInput
|
|
9
|
+
input: CreateLoadBalancerCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateLoadBalancerCommandInput,
|
|
17
12
|
CreateLoadBalancerCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateLoadBalancerCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateLoadBalancerCommandInput
|
|
18
|
+
input: CreateLoadBalancerCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateLoadBalancerCommandInput,
|
|
26
21
|
CreateLoadBalancerCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateLoadBalancerListenerOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateLoadBalancerListenersCommandInput
|
|
8
|
-
extends CreateLoadBalancerListenerInput {}
|
|
7
|
+
export interface CreateLoadBalancerListenersCommandInput extends CreateLoadBalancerListenerInput {}
|
|
9
8
|
export interface CreateLoadBalancerListenersCommandOutput
|
|
10
|
-
extends CreateLoadBalancerListenerOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateLoadBalancerListenerOutput, __MetadataBearer {}
|
|
12
10
|
declare const CreateLoadBalancerListenersCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateLoadBalancerListenersCommandInput
|
|
12
|
+
input: CreateLoadBalancerListenersCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateLoadBalancerListenersCommandInput,
|
|
17
15
|
CreateLoadBalancerListenersCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateLoadBalancerListenersCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateLoadBalancerListenersCommandInput
|
|
21
|
+
input: CreateLoadBalancerListenersCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateLoadBalancerListenersCommandInput,
|
|
26
24
|
CreateLoadBalancerListenersCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateLoadBalancerPolicyInput,
|
|
4
|
-
CreateLoadBalancerPolicyOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateLoadBalancerPolicyInput, CreateLoadBalancerPolicyOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateLoadBalancerPolicyCommandInput
|
|
8
|
-
extends CreateLoadBalancerPolicyInput {}
|
|
4
|
+
export interface CreateLoadBalancerPolicyCommandInput extends CreateLoadBalancerPolicyInput {}
|
|
9
5
|
export interface CreateLoadBalancerPolicyCommandOutput
|
|
10
|
-
extends CreateLoadBalancerPolicyOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateLoadBalancerPolicyOutput, __MetadataBearer {}
|
|
12
7
|
declare const CreateLoadBalancerPolicyCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateLoadBalancerPolicyCommandInput
|
|
9
|
+
input: CreateLoadBalancerPolicyCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateLoadBalancerPolicyCommandInput,
|
|
17
12
|
CreateLoadBalancerPolicyCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateLoadBalancerPolicyCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateLoadBalancerPolicyCommandInput
|
|
18
|
+
input: CreateLoadBalancerPolicyCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateLoadBalancerPolicyCommandInput,
|
|
26
21
|
CreateLoadBalancerPolicyCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteAccessPointInput,
|
|
4
|
-
DeleteAccessPointOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteAccessPointInput, DeleteAccessPointOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteLoadBalancerCommandInput
|
|
8
|
-
extends DeleteAccessPointInput {}
|
|
4
|
+
export interface DeleteLoadBalancerCommandInput extends DeleteAccessPointInput {}
|
|
9
5
|
export interface DeleteLoadBalancerCommandOutput
|
|
10
|
-
extends DeleteAccessPointOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteAccessPointOutput, __MetadataBearer {}
|
|
12
7
|
declare const DeleteLoadBalancerCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteLoadBalancerCommandInput
|
|
9
|
+
input: DeleteLoadBalancerCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteLoadBalancerCommandInput,
|
|
17
12
|
DeleteLoadBalancerCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteLoadBalancerCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteLoadBalancerCommandInput
|
|
18
|
+
input: DeleteLoadBalancerCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteLoadBalancerCommandInput,
|
|
26
21
|
DeleteLoadBalancerCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeleteLoadBalancerListenerOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteLoadBalancerListenersCommandInput
|
|
8
|
-
extends DeleteLoadBalancerListenerInput {}
|
|
7
|
+
export interface DeleteLoadBalancerListenersCommandInput extends DeleteLoadBalancerListenerInput {}
|
|
9
8
|
export interface DeleteLoadBalancerListenersCommandOutput
|
|
10
|
-
extends DeleteLoadBalancerListenerOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeleteLoadBalancerListenerOutput, __MetadataBearer {}
|
|
12
10
|
declare const DeleteLoadBalancerListenersCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeleteLoadBalancerListenersCommandInput
|
|
12
|
+
input: DeleteLoadBalancerListenersCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeleteLoadBalancerListenersCommandInput,
|
|
17
15
|
DeleteLoadBalancerListenersCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeleteLoadBalancerListenersCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeleteLoadBalancerListenersCommandInput
|
|
21
|
+
input: DeleteLoadBalancerListenersCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeleteLoadBalancerListenersCommandInput,
|
|
26
24
|
DeleteLoadBalancerListenersCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteLoadBalancerPolicyInput,
|
|
4
|
-
DeleteLoadBalancerPolicyOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteLoadBalancerPolicyInput, DeleteLoadBalancerPolicyOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteLoadBalancerPolicyCommandInput
|
|
8
|
-
extends DeleteLoadBalancerPolicyInput {}
|
|
4
|
+
export interface DeleteLoadBalancerPolicyCommandInput extends DeleteLoadBalancerPolicyInput {}
|
|
9
5
|
export interface DeleteLoadBalancerPolicyCommandOutput
|
|
10
|
-
extends DeleteLoadBalancerPolicyOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteLoadBalancerPolicyOutput, __MetadataBearer {}
|
|
12
7
|
declare const DeleteLoadBalancerPolicyCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteLoadBalancerPolicyCommandInput
|
|
9
|
+
input: DeleteLoadBalancerPolicyCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteLoadBalancerPolicyCommandInput,
|
|
17
12
|
DeleteLoadBalancerPolicyCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteLoadBalancerPolicyCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteLoadBalancerPolicyCommandInput
|
|
18
|
+
input: DeleteLoadBalancerPolicyCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteLoadBalancerPolicyCommandInput,
|
|
26
21
|
DeleteLoadBalancerPolicyCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeregisterEndPointsInput,
|
|
4
|
-
DeregisterEndPointsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeregisterEndPointsInput, DeregisterEndPointsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeregisterInstancesFromLoadBalancerCommandInput
|
|
8
|
-
extends DeregisterEndPointsInput {}
|
|
4
|
+
export interface DeregisterInstancesFromLoadBalancerCommandInput extends DeregisterEndPointsInput {}
|
|
9
5
|
export interface DeregisterInstancesFromLoadBalancerCommandOutput
|
|
10
|
-
extends DeregisterEndPointsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeregisterEndPointsOutput, __MetadataBearer {}
|
|
12
7
|
declare const DeregisterInstancesFromLoadBalancerCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeregisterInstancesFromLoadBalancerCommandInput
|
|
9
|
+
input: DeregisterInstancesFromLoadBalancerCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeregisterInstancesFromLoadBalancerCommandInput,
|
|
17
12
|
DeregisterInstancesFromLoadBalancerCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeregisterInstancesFromLoadBalancerCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeregisterInstancesFromLoadBalancerCommandInput
|
|
18
|
+
input: DeregisterInstancesFromLoadBalancerCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeregisterInstancesFromLoadBalancerCommandInput,
|
|
26
21
|
DeregisterInstancesFromLoadBalancerCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeAccountLimitsInput,
|
|
4
|
-
DescribeAccountLimitsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeAccountLimitsInput, DescribeAccountLimitsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeAccountLimitsCommandInput
|
|
8
|
-
extends DescribeAccountLimitsInput {}
|
|
4
|
+
export interface DescribeAccountLimitsCommandInput extends DescribeAccountLimitsInput {}
|
|
9
5
|
export interface DescribeAccountLimitsCommandOutput
|
|
10
|
-
extends DescribeAccountLimitsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeAccountLimitsOutput, __MetadataBearer {}
|
|
12
7
|
declare const DescribeAccountLimitsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeAccountLimitsCommandInput
|
|
9
|
+
input: DescribeAccountLimitsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeAccountLimitsCommandInput,
|
|
17
12
|
DescribeAccountLimitsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeEndPointStateInput,
|
|
4
|
-
DescribeEndPointStateOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeEndPointStateInput, DescribeEndPointStateOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeInstanceHealthCommandInput
|
|
8
|
-
extends DescribeEndPointStateInput {}
|
|
4
|
+
export interface DescribeInstanceHealthCommandInput extends DescribeEndPointStateInput {}
|
|
9
5
|
export interface DescribeInstanceHealthCommandOutput
|
|
10
|
-
extends DescribeEndPointStateOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeEndPointStateOutput, __MetadataBearer {}
|
|
12
7
|
declare const DescribeInstanceHealthCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeInstanceHealthCommandInput
|
|
9
|
+
input: DescribeInstanceHealthCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeInstanceHealthCommandInput,
|
|
17
12
|
DescribeInstanceHealthCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DescribeInstanceHealthCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DescribeInstanceHealthCommandInput
|
|
18
|
+
input: DescribeInstanceHealthCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DescribeInstanceHealthCommandInput,
|
|
26
21
|
DescribeInstanceHealthCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeLoadBalancerAttributesOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeLoadBalancerAttributesCommandInput
|
|
8
|
-
extends DescribeLoadBalancerAttributesInput {}
|
|
7
|
+
export interface DescribeLoadBalancerAttributesCommandInput extends DescribeLoadBalancerAttributesInput {}
|
|
9
8
|
export interface DescribeLoadBalancerAttributesCommandOutput
|
|
10
|
-
extends DescribeLoadBalancerAttributesOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeLoadBalancerAttributesOutput, __MetadataBearer {}
|
|
12
10
|
declare const DescribeLoadBalancerAttributesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeLoadBalancerAttributesCommandInput
|
|
12
|
+
input: DescribeLoadBalancerAttributesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeLoadBalancerAttributesCommandInput,
|
|
17
15
|
DescribeLoadBalancerAttributesCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeLoadBalancerAttributesCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeLoadBalancerAttributesCommandInput
|
|
21
|
+
input: DescribeLoadBalancerAttributesCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeLoadBalancerAttributesCommandInput,
|
|
26
24
|
DescribeLoadBalancerAttributesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeLoadBalancerPoliciesOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeLoadBalancerPoliciesCommandInput
|
|
8
|
-
extends DescribeLoadBalancerPoliciesInput {}
|
|
7
|
+
export interface DescribeLoadBalancerPoliciesCommandInput extends DescribeLoadBalancerPoliciesInput {}
|
|
9
8
|
export interface DescribeLoadBalancerPoliciesCommandOutput
|
|
10
|
-
extends DescribeLoadBalancerPoliciesOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeLoadBalancerPoliciesOutput, __MetadataBearer {}
|
|
12
10
|
declare const DescribeLoadBalancerPoliciesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeLoadBalancerPoliciesCommandInput
|
|
12
|
+
input: DescribeLoadBalancerPoliciesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeLoadBalancerPoliciesCommandInput,
|
|
17
15
|
DescribeLoadBalancerPoliciesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeLoadBalancerPolicyTypesOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeLoadBalancerPolicyTypesCommandInput
|
|
8
|
-
extends DescribeLoadBalancerPolicyTypesInput {}
|
|
7
|
+
export interface DescribeLoadBalancerPolicyTypesCommandInput extends DescribeLoadBalancerPolicyTypesInput {}
|
|
9
8
|
export interface DescribeLoadBalancerPolicyTypesCommandOutput
|
|
10
|
-
extends DescribeLoadBalancerPolicyTypesOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeLoadBalancerPolicyTypesOutput, __MetadataBearer {}
|
|
12
10
|
declare const DescribeLoadBalancerPolicyTypesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeLoadBalancerPolicyTypesCommandInput
|
|
12
|
+
input: DescribeLoadBalancerPolicyTypesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeLoadBalancerPolicyTypesCommandInput,
|
|
17
15
|
DescribeLoadBalancerPolicyTypesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeAccessPointsInput,
|
|
4
|
-
DescribeAccessPointsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeAccessPointsInput, DescribeAccessPointsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeLoadBalancersCommandInput
|
|
8
|
-
extends DescribeAccessPointsInput {}
|
|
4
|
+
export interface DescribeLoadBalancersCommandInput extends DescribeAccessPointsInput {}
|
|
9
5
|
export interface DescribeLoadBalancersCommandOutput
|
|
10
|
-
extends DescribeAccessPointsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeAccessPointsOutput, __MetadataBearer {}
|
|
12
7
|
declare const DescribeLoadBalancersCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeLoadBalancersCommandInput
|
|
9
|
+
input: DescribeLoadBalancersCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeLoadBalancersCommandInput,
|
|
17
12
|
DescribeLoadBalancersCommandOutput,
|