@aws-sdk/client-elastic-load-balancing 3.686.0 → 3.691.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.
@@ -2,14 +2,14 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
2
2
  import { ElasticLoadBalancingServiceException as __BaseException } from "./ElasticLoadBalancingServiceException";
3
3
  export interface AccessLog {
4
4
  Enabled: boolean | undefined;
5
- S3BucketName?: string;
6
- EmitInterval?: number;
7
- S3BucketPrefix?: string;
5
+ S3BucketName?: string | undefined;
6
+ EmitInterval?: number | undefined;
7
+ S3BucketPrefix?: string | undefined;
8
8
  }
9
9
  export declare class AccessPointNotFoundException extends __BaseException {
10
10
  readonly name: "AccessPointNotFoundException";
11
11
  readonly $fault: "client";
12
- Message?: string;
12
+ Message?: string | undefined;
13
13
  constructor(
14
14
  opts: __ExceptionOptionType<AccessPointNotFoundException, __BaseException>
15
15
  );
@@ -19,15 +19,15 @@ export interface AddAvailabilityZonesInput {
19
19
  AvailabilityZones: string[] | undefined;
20
20
  }
21
21
  export interface AddAvailabilityZonesOutput {
22
- AvailabilityZones?: string[];
22
+ AvailabilityZones?: string[] | undefined;
23
23
  }
24
24
  export interface AdditionalAttribute {
25
- Key?: string;
26
- Value?: string;
25
+ Key?: string | undefined;
26
+ Value?: string | undefined;
27
27
  }
28
28
  export interface Tag {
29
29
  Key: string | undefined;
30
- Value?: string;
30
+ Value?: string | undefined;
31
31
  }
32
32
  export interface AddTagsInput {
33
33
  LoadBalancerNames: string[] | undefined;
@@ -37,7 +37,7 @@ export interface AddTagsOutput {}
37
37
  export declare class DuplicateTagKeysException extends __BaseException {
38
38
  readonly name: "DuplicateTagKeysException";
39
39
  readonly $fault: "client";
40
- Message?: string;
40
+ Message?: string | undefined;
41
41
  constructor(
42
42
  opts: __ExceptionOptionType<DuplicateTagKeysException, __BaseException>
43
43
  );
@@ -45,26 +45,26 @@ export declare class DuplicateTagKeysException extends __BaseException {
45
45
  export declare class TooManyTagsException extends __BaseException {
46
46
  readonly name: "TooManyTagsException";
47
47
  readonly $fault: "client";
48
- Message?: string;
48
+ Message?: string | undefined;
49
49
  constructor(
50
50
  opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
51
51
  );
52
52
  }
53
53
  export interface AppCookieStickinessPolicy {
54
- PolicyName?: string;
55
- CookieName?: string;
54
+ PolicyName?: string | undefined;
55
+ CookieName?: string | undefined;
56
56
  }
57
57
  export interface ApplySecurityGroupsToLoadBalancerInput {
58
58
  LoadBalancerName: string | undefined;
59
59
  SecurityGroups: string[] | undefined;
60
60
  }
61
61
  export interface ApplySecurityGroupsToLoadBalancerOutput {
62
- SecurityGroups?: string[];
62
+ SecurityGroups?: string[] | undefined;
63
63
  }
64
64
  export declare class InvalidConfigurationRequestException extends __BaseException {
65
65
  readonly name: "InvalidConfigurationRequestException";
66
66
  readonly $fault: "client";
67
- Message?: string;
67
+ Message?: string | undefined;
68
68
  constructor(
69
69
  opts: __ExceptionOptionType<
70
70
  InvalidConfigurationRequestException,
@@ -75,7 +75,7 @@ export declare class InvalidConfigurationRequestException extends __BaseExceptio
75
75
  export declare class InvalidSecurityGroupException extends __BaseException {
76
76
  readonly name: "InvalidSecurityGroupException";
77
77
  readonly $fault: "client";
78
- Message?: string;
78
+ Message?: string | undefined;
79
79
  constructor(
80
80
  opts: __ExceptionOptionType<InvalidSecurityGroupException, __BaseException>
81
81
  );
@@ -85,12 +85,12 @@ export interface AttachLoadBalancerToSubnetsInput {
85
85
  Subnets: string[] | undefined;
86
86
  }
87
87
  export interface AttachLoadBalancerToSubnetsOutput {
88
- Subnets?: string[];
88
+ Subnets?: string[] | undefined;
89
89
  }
90
90
  export declare class InvalidSubnetException extends __BaseException {
91
91
  readonly name: "InvalidSubnetException";
92
92
  readonly $fault: "client";
93
- Message?: string;
93
+ Message?: string | undefined;
94
94
  constructor(
95
95
  opts: __ExceptionOptionType<InvalidSubnetException, __BaseException>
96
96
  );
@@ -98,19 +98,19 @@ export declare class InvalidSubnetException extends __BaseException {
98
98
  export declare class SubnetNotFoundException extends __BaseException {
99
99
  readonly name: "SubnetNotFoundException";
100
100
  readonly $fault: "client";
101
- Message?: string;
101
+ Message?: string | undefined;
102
102
  constructor(
103
103
  opts: __ExceptionOptionType<SubnetNotFoundException, __BaseException>
104
104
  );
105
105
  }
106
106
  export interface BackendServerDescription {
107
- InstancePort?: number;
108
- PolicyNames?: string[];
107
+ InstancePort?: number | undefined;
108
+ PolicyNames?: string[] | undefined;
109
109
  }
110
110
  export declare class CertificateNotFoundException extends __BaseException {
111
111
  readonly name: "CertificateNotFoundException";
112
112
  readonly $fault: "client";
113
- Message?: string;
113
+ Message?: string | undefined;
114
114
  constructor(
115
115
  opts: __ExceptionOptionType<CertificateNotFoundException, __BaseException>
116
116
  );
@@ -127,11 +127,11 @@ export interface ConfigureHealthCheckInput {
127
127
  HealthCheck: HealthCheck | undefined;
128
128
  }
129
129
  export interface ConfigureHealthCheckOutput {
130
- HealthCheck?: HealthCheck;
130
+ HealthCheck?: HealthCheck | undefined;
131
131
  }
132
132
  export interface ConnectionDraining {
133
133
  Enabled: boolean | undefined;
134
- Timeout?: number;
134
+ Timeout?: number | undefined;
135
135
  }
136
136
  export interface ConnectionSettings {
137
137
  IdleTimeout: number | undefined;
@@ -139,21 +139,21 @@ export interface ConnectionSettings {
139
139
  export interface Listener {
140
140
  Protocol: string | undefined;
141
141
  LoadBalancerPort: number | undefined;
142
- InstanceProtocol?: string;
142
+ InstanceProtocol?: string | undefined;
143
143
  InstancePort: number | undefined;
144
- SSLCertificateId?: string;
144
+ SSLCertificateId?: string | undefined;
145
145
  }
146
146
  export interface CreateAccessPointInput {
147
147
  LoadBalancerName: string | undefined;
148
148
  Listeners: Listener[] | undefined;
149
- AvailabilityZones?: string[];
150
- Subnets?: string[];
151
- SecurityGroups?: string[];
152
- Scheme?: string;
153
- Tags?: Tag[];
149
+ AvailabilityZones?: string[] | undefined;
150
+ Subnets?: string[] | undefined;
151
+ SecurityGroups?: string[] | undefined;
152
+ Scheme?: string | undefined;
153
+ Tags?: Tag[] | undefined;
154
154
  }
155
155
  export interface CreateAccessPointOutput {
156
- DNSName?: string;
156
+ DNSName?: string | undefined;
157
157
  }
158
158
  export interface CreateAppCookieStickinessPolicyInput {
159
159
  LoadBalancerName: string | undefined;
@@ -164,7 +164,7 @@ export interface CreateAppCookieStickinessPolicyOutput {}
164
164
  export declare class DuplicatePolicyNameException extends __BaseException {
165
165
  readonly name: "DuplicatePolicyNameException";
166
166
  readonly $fault: "client";
167
- Message?: string;
167
+ Message?: string | undefined;
168
168
  constructor(
169
169
  opts: __ExceptionOptionType<DuplicatePolicyNameException, __BaseException>
170
170
  );
@@ -172,7 +172,7 @@ export declare class DuplicatePolicyNameException extends __BaseException {
172
172
  export declare class TooManyPoliciesException extends __BaseException {
173
173
  readonly name: "TooManyPoliciesException";
174
174
  readonly $fault: "client";
175
- Message?: string;
175
+ Message?: string | undefined;
176
176
  constructor(
177
177
  opts: __ExceptionOptionType<TooManyPoliciesException, __BaseException>
178
178
  );
@@ -180,13 +180,13 @@ export declare class TooManyPoliciesException extends __BaseException {
180
180
  export interface CreateLBCookieStickinessPolicyInput {
181
181
  LoadBalancerName: string | undefined;
182
182
  PolicyName: string | undefined;
183
- CookieExpirationPeriod?: number;
183
+ CookieExpirationPeriod?: number | undefined;
184
184
  }
185
185
  export interface CreateLBCookieStickinessPolicyOutput {}
186
186
  export declare class DuplicateAccessPointNameException extends __BaseException {
187
187
  readonly name: "DuplicateAccessPointNameException";
188
188
  readonly $fault: "client";
189
- Message?: string;
189
+ Message?: string | undefined;
190
190
  constructor(
191
191
  opts: __ExceptionOptionType<
192
192
  DuplicateAccessPointNameException,
@@ -197,7 +197,7 @@ export declare class DuplicateAccessPointNameException extends __BaseException {
197
197
  export declare class InvalidSchemeException extends __BaseException {
198
198
  readonly name: "InvalidSchemeException";
199
199
  readonly $fault: "client";
200
- Message?: string;
200
+ Message?: string | undefined;
201
201
  constructor(
202
202
  opts: __ExceptionOptionType<InvalidSchemeException, __BaseException>
203
203
  );
@@ -205,7 +205,7 @@ export declare class InvalidSchemeException extends __BaseException {
205
205
  export declare class OperationNotPermittedException extends __BaseException {
206
206
  readonly name: "OperationNotPermittedException";
207
207
  readonly $fault: "client";
208
- Message?: string;
208
+ Message?: string | undefined;
209
209
  constructor(
210
210
  opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>
211
211
  );
@@ -213,7 +213,7 @@ export declare class OperationNotPermittedException extends __BaseException {
213
213
  export declare class TooManyAccessPointsException extends __BaseException {
214
214
  readonly name: "TooManyAccessPointsException";
215
215
  readonly $fault: "client";
216
- Message?: string;
216
+ Message?: string | undefined;
217
217
  constructor(
218
218
  opts: __ExceptionOptionType<TooManyAccessPointsException, __BaseException>
219
219
  );
@@ -221,7 +221,7 @@ export declare class TooManyAccessPointsException extends __BaseException {
221
221
  export declare class UnsupportedProtocolException extends __BaseException {
222
222
  readonly name: "UnsupportedProtocolException";
223
223
  readonly $fault: "client";
224
- Message?: string;
224
+ Message?: string | undefined;
225
225
  constructor(
226
226
  opts: __ExceptionOptionType<UnsupportedProtocolException, __BaseException>
227
227
  );
@@ -234,26 +234,26 @@ export interface CreateLoadBalancerListenerOutput {}
234
234
  export declare class DuplicateListenerException extends __BaseException {
235
235
  readonly name: "DuplicateListenerException";
236
236
  readonly $fault: "client";
237
- Message?: string;
237
+ Message?: string | undefined;
238
238
  constructor(
239
239
  opts: __ExceptionOptionType<DuplicateListenerException, __BaseException>
240
240
  );
241
241
  }
242
242
  export interface PolicyAttribute {
243
- AttributeName?: string;
244
- AttributeValue?: string;
243
+ AttributeName?: string | undefined;
244
+ AttributeValue?: string | undefined;
245
245
  }
246
246
  export interface CreateLoadBalancerPolicyInput {
247
247
  LoadBalancerName: string | undefined;
248
248
  PolicyName: string | undefined;
249
249
  PolicyTypeName: string | undefined;
250
- PolicyAttributes?: PolicyAttribute[];
250
+ PolicyAttributes?: PolicyAttribute[] | undefined;
251
251
  }
252
252
  export interface CreateLoadBalancerPolicyOutput {}
253
253
  export declare class PolicyTypeNotFoundException extends __BaseException {
254
254
  readonly name: "PolicyTypeNotFoundException";
255
255
  readonly $fault: "client";
256
- Message?: string;
256
+ Message?: string | undefined;
257
257
  constructor(
258
258
  opts: __ExceptionOptionType<PolicyTypeNotFoundException, __BaseException>
259
259
  );
@@ -278,115 +278,115 @@ export interface DeleteLoadBalancerPolicyOutput {}
278
278
  export declare class DependencyThrottleException extends __BaseException {
279
279
  readonly name: "DependencyThrottleException";
280
280
  readonly $fault: "client";
281
- Message?: string;
281
+ Message?: string | undefined;
282
282
  constructor(
283
283
  opts: __ExceptionOptionType<DependencyThrottleException, __BaseException>
284
284
  );
285
285
  }
286
286
  export interface Instance {
287
- InstanceId?: string;
287
+ InstanceId?: string | undefined;
288
288
  }
289
289
  export interface DeregisterEndPointsInput {
290
290
  LoadBalancerName: string | undefined;
291
291
  Instances: Instance[] | undefined;
292
292
  }
293
293
  export interface DeregisterEndPointsOutput {
294
- Instances?: Instance[];
294
+ Instances?: Instance[] | undefined;
295
295
  }
296
296
  export declare class InvalidEndPointException extends __BaseException {
297
297
  readonly name: "InvalidEndPointException";
298
298
  readonly $fault: "client";
299
- Message?: string;
299
+ Message?: string | undefined;
300
300
  constructor(
301
301
  opts: __ExceptionOptionType<InvalidEndPointException, __BaseException>
302
302
  );
303
303
  }
304
304
  export interface DescribeAccessPointsInput {
305
- LoadBalancerNames?: string[];
306
- Marker?: string;
307
- PageSize?: number;
305
+ LoadBalancerNames?: string[] | undefined;
306
+ Marker?: string | undefined;
307
+ PageSize?: number | undefined;
308
308
  }
309
309
  export interface ListenerDescription {
310
- Listener?: Listener;
311
- PolicyNames?: string[];
310
+ Listener?: Listener | undefined;
311
+ PolicyNames?: string[] | undefined;
312
312
  }
313
313
  export interface LBCookieStickinessPolicy {
314
- PolicyName?: string;
315
- CookieExpirationPeriod?: number;
314
+ PolicyName?: string | undefined;
315
+ CookieExpirationPeriod?: number | undefined;
316
316
  }
317
317
  export interface Policies {
318
- AppCookieStickinessPolicies?: AppCookieStickinessPolicy[];
319
- LBCookieStickinessPolicies?: LBCookieStickinessPolicy[];
320
- OtherPolicies?: string[];
318
+ AppCookieStickinessPolicies?: AppCookieStickinessPolicy[] | undefined;
319
+ LBCookieStickinessPolicies?: LBCookieStickinessPolicy[] | undefined;
320
+ OtherPolicies?: string[] | undefined;
321
321
  }
322
322
  export interface SourceSecurityGroup {
323
- OwnerAlias?: string;
324
- GroupName?: string;
323
+ OwnerAlias?: string | undefined;
324
+ GroupName?: string | undefined;
325
325
  }
326
326
  export interface LoadBalancerDescription {
327
- LoadBalancerName?: string;
328
- DNSName?: string;
329
- CanonicalHostedZoneName?: string;
330
- CanonicalHostedZoneNameID?: string;
331
- ListenerDescriptions?: ListenerDescription[];
332
- Policies?: Policies;
333
- BackendServerDescriptions?: BackendServerDescription[];
334
- AvailabilityZones?: string[];
335
- Subnets?: string[];
336
- VPCId?: string;
337
- Instances?: Instance[];
338
- HealthCheck?: HealthCheck;
339
- SourceSecurityGroup?: SourceSecurityGroup;
340
- SecurityGroups?: string[];
341
- CreatedTime?: Date;
342
- Scheme?: string;
327
+ LoadBalancerName?: string | undefined;
328
+ DNSName?: string | undefined;
329
+ CanonicalHostedZoneName?: string | undefined;
330
+ CanonicalHostedZoneNameID?: string | undefined;
331
+ ListenerDescriptions?: ListenerDescription[] | undefined;
332
+ Policies?: Policies | undefined;
333
+ BackendServerDescriptions?: BackendServerDescription[] | undefined;
334
+ AvailabilityZones?: string[] | undefined;
335
+ Subnets?: string[] | undefined;
336
+ VPCId?: string | undefined;
337
+ Instances?: Instance[] | undefined;
338
+ HealthCheck?: HealthCheck | undefined;
339
+ SourceSecurityGroup?: SourceSecurityGroup | undefined;
340
+ SecurityGroups?: string[] | undefined;
341
+ CreatedTime?: Date | undefined;
342
+ Scheme?: string | undefined;
343
343
  }
344
344
  export interface DescribeAccessPointsOutput {
345
- LoadBalancerDescriptions?: LoadBalancerDescription[];
346
- NextMarker?: string;
345
+ LoadBalancerDescriptions?: LoadBalancerDescription[] | undefined;
346
+ NextMarker?: string | undefined;
347
347
  }
348
348
  export interface DescribeAccountLimitsInput {
349
- Marker?: string;
350
- PageSize?: number;
349
+ Marker?: string | undefined;
350
+ PageSize?: number | undefined;
351
351
  }
352
352
  export interface Limit {
353
- Name?: string;
354
- Max?: string;
353
+ Name?: string | undefined;
354
+ Max?: string | undefined;
355
355
  }
356
356
  export interface DescribeAccountLimitsOutput {
357
- Limits?: Limit[];
358
- NextMarker?: string;
357
+ Limits?: Limit[] | undefined;
358
+ NextMarker?: string | undefined;
359
359
  }
360
360
  export interface DescribeEndPointStateInput {
361
361
  LoadBalancerName: string | undefined;
362
- Instances?: Instance[];
362
+ Instances?: Instance[] | undefined;
363
363
  }
364
364
  export interface InstanceState {
365
- InstanceId?: string;
366
- State?: string;
367
- ReasonCode?: string;
368
- Description?: string;
365
+ InstanceId?: string | undefined;
366
+ State?: string | undefined;
367
+ ReasonCode?: string | undefined;
368
+ Description?: string | undefined;
369
369
  }
370
370
  export interface DescribeEndPointStateOutput {
371
- InstanceStates?: InstanceState[];
371
+ InstanceStates?: InstanceState[] | undefined;
372
372
  }
373
373
  export interface DescribeLoadBalancerAttributesInput {
374
374
  LoadBalancerName: string | undefined;
375
375
  }
376
376
  export interface LoadBalancerAttributes {
377
- CrossZoneLoadBalancing?: CrossZoneLoadBalancing;
378
- AccessLog?: AccessLog;
379
- ConnectionDraining?: ConnectionDraining;
380
- ConnectionSettings?: ConnectionSettings;
381
- AdditionalAttributes?: AdditionalAttribute[];
377
+ CrossZoneLoadBalancing?: CrossZoneLoadBalancing | undefined;
378
+ AccessLog?: AccessLog | undefined;
379
+ ConnectionDraining?: ConnectionDraining | undefined;
380
+ ConnectionSettings?: ConnectionSettings | undefined;
381
+ AdditionalAttributes?: AdditionalAttribute[] | undefined;
382
382
  }
383
383
  export interface DescribeLoadBalancerAttributesOutput {
384
- LoadBalancerAttributes?: LoadBalancerAttributes;
384
+ LoadBalancerAttributes?: LoadBalancerAttributes | undefined;
385
385
  }
386
386
  export declare class LoadBalancerAttributeNotFoundException extends __BaseException {
387
387
  readonly name: "LoadBalancerAttributeNotFoundException";
388
388
  readonly $fault: "client";
389
- Message?: string;
389
+ Message?: string | undefined;
390
390
  constructor(
391
391
  opts: __ExceptionOptionType<
392
392
  LoadBalancerAttributeNotFoundException,
@@ -395,88 +395,90 @@ export declare class LoadBalancerAttributeNotFoundException extends __BaseExcept
395
395
  );
396
396
  }
397
397
  export interface DescribeLoadBalancerPoliciesInput {
398
- LoadBalancerName?: string;
399
- PolicyNames?: string[];
398
+ LoadBalancerName?: string | undefined;
399
+ PolicyNames?: string[] | undefined;
400
400
  }
401
401
  export interface PolicyAttributeDescription {
402
- AttributeName?: string;
403
- AttributeValue?: string;
402
+ AttributeName?: string | undefined;
403
+ AttributeValue?: string | undefined;
404
404
  }
405
405
  export interface PolicyDescription {
406
- PolicyName?: string;
407
- PolicyTypeName?: string;
408
- PolicyAttributeDescriptions?: PolicyAttributeDescription[];
406
+ PolicyName?: string | undefined;
407
+ PolicyTypeName?: string | undefined;
408
+ PolicyAttributeDescriptions?: PolicyAttributeDescription[] | undefined;
409
409
  }
410
410
  export interface DescribeLoadBalancerPoliciesOutput {
411
- PolicyDescriptions?: PolicyDescription[];
411
+ PolicyDescriptions?: PolicyDescription[] | undefined;
412
412
  }
413
413
  export declare class PolicyNotFoundException extends __BaseException {
414
414
  readonly name: "PolicyNotFoundException";
415
415
  readonly $fault: "client";
416
- Message?: string;
416
+ Message?: string | undefined;
417
417
  constructor(
418
418
  opts: __ExceptionOptionType<PolicyNotFoundException, __BaseException>
419
419
  );
420
420
  }
421
421
  export interface DescribeLoadBalancerPolicyTypesInput {
422
- PolicyTypeNames?: string[];
422
+ PolicyTypeNames?: string[] | undefined;
423
423
  }
424
424
  export interface PolicyAttributeTypeDescription {
425
- AttributeName?: string;
426
- AttributeType?: string;
427
- Description?: string;
428
- DefaultValue?: string;
429
- Cardinality?: string;
425
+ AttributeName?: string | undefined;
426
+ AttributeType?: string | undefined;
427
+ Description?: string | undefined;
428
+ DefaultValue?: string | undefined;
429
+ Cardinality?: string | undefined;
430
430
  }
431
431
  export interface PolicyTypeDescription {
432
- PolicyTypeName?: string;
433
- Description?: string;
434
- PolicyAttributeTypeDescriptions?: PolicyAttributeTypeDescription[];
432
+ PolicyTypeName?: string | undefined;
433
+ Description?: string | undefined;
434
+ PolicyAttributeTypeDescriptions?:
435
+ | PolicyAttributeTypeDescription[]
436
+ | undefined;
435
437
  }
436
438
  export interface DescribeLoadBalancerPolicyTypesOutput {
437
- PolicyTypeDescriptions?: PolicyTypeDescription[];
439
+ PolicyTypeDescriptions?: PolicyTypeDescription[] | undefined;
438
440
  }
439
441
  export interface DescribeTagsInput {
440
442
  LoadBalancerNames: string[] | undefined;
441
443
  }
442
444
  export interface TagDescription {
443
- LoadBalancerName?: string;
444
- Tags?: Tag[];
445
+ LoadBalancerName?: string | undefined;
446
+ Tags?: Tag[] | undefined;
445
447
  }
446
448
  export interface DescribeTagsOutput {
447
- TagDescriptions?: TagDescription[];
449
+ TagDescriptions?: TagDescription[] | undefined;
448
450
  }
449
451
  export interface DetachLoadBalancerFromSubnetsInput {
450
452
  LoadBalancerName: string | undefined;
451
453
  Subnets: string[] | undefined;
452
454
  }
453
455
  export interface DetachLoadBalancerFromSubnetsOutput {
454
- Subnets?: string[];
456
+ Subnets?: string[] | undefined;
455
457
  }
456
458
  export interface RemoveAvailabilityZonesInput {
457
459
  LoadBalancerName: string | undefined;
458
460
  AvailabilityZones: string[] | undefined;
459
461
  }
460
462
  export interface RemoveAvailabilityZonesOutput {
461
- AvailabilityZones?: string[];
463
+ AvailabilityZones?: string[] | undefined;
462
464
  }
463
465
  export interface ModifyLoadBalancerAttributesInput {
464
466
  LoadBalancerName: string | undefined;
465
467
  LoadBalancerAttributes: LoadBalancerAttributes | undefined;
466
468
  }
467
469
  export interface ModifyLoadBalancerAttributesOutput {
468
- LoadBalancerName?: string;
469
- LoadBalancerAttributes?: LoadBalancerAttributes;
470
+ LoadBalancerName?: string | undefined;
471
+ LoadBalancerAttributes?: LoadBalancerAttributes | undefined;
470
472
  }
471
473
  export interface RegisterEndPointsInput {
472
474
  LoadBalancerName: string | undefined;
473
475
  Instances: Instance[] | undefined;
474
476
  }
475
477
  export interface RegisterEndPointsOutput {
476
- Instances?: Instance[];
478
+ Instances?: Instance[] | undefined;
477
479
  }
478
480
  export interface TagKeyOnly {
479
- Key?: string;
481
+ Key?: string | undefined;
480
482
  }
481
483
  export interface RemoveTagsInput {
482
484
  LoadBalancerNames: string[] | undefined;
@@ -486,7 +488,7 @@ export interface RemoveTagsOutput {}
486
488
  export declare class ListenerNotFoundException extends __BaseException {
487
489
  readonly name: "ListenerNotFoundException";
488
490
  readonly $fault: "client";
489
- Message?: string;
491
+ Message?: string | undefined;
490
492
  constructor(
491
493
  opts: __ExceptionOptionType<ListenerNotFoundException, __BaseException>
492
494
  );
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-elastic-load-balancing",
3
3
  "description": "AWS SDK for JavaScript Elastic Load Balancing Client for Node.js, Browser and React Native",
4
- "version": "3.686.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-elastic-load-balancing",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.686.0",
24
- "@aws-sdk/client-sts": "3.686.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.686.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.686.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.686.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",