@aws-sdk/client-elastic-load-balancing 3.687.0 → 3.692.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-types/models/models_0.d.ts +126 -126
- package/dist-types/ts3.4/models/models_0.d.ts +128 -126
- package/package.json +36 -36
|
@@ -14,19 +14,19 @@ export interface AccessLog {
|
|
|
14
14
|
* <p>The name of the Amazon S3 bucket where the access logs are stored.</p>
|
|
15
15
|
* @public
|
|
16
16
|
*/
|
|
17
|
-
S3BucketName?: string;
|
|
17
|
+
S3BucketName?: string | undefined;
|
|
18
18
|
/**
|
|
19
19
|
* <p>The interval for publishing the access logs. You can specify an interval of either 5 minutes or 60 minutes.</p>
|
|
20
20
|
* <p>Default: 60 minutes</p>
|
|
21
21
|
* @public
|
|
22
22
|
*/
|
|
23
|
-
EmitInterval?: number;
|
|
23
|
+
EmitInterval?: number | undefined;
|
|
24
24
|
/**
|
|
25
25
|
* <p>The logical hierarchy you created for your Amazon S3 bucket, for example <code>my-bucket-prefix/prod</code>.
|
|
26
26
|
* If the prefix is not provided, the log is placed at the root level of the bucket.</p>
|
|
27
27
|
* @public
|
|
28
28
|
*/
|
|
29
|
-
S3BucketPrefix?: string;
|
|
29
|
+
S3BucketPrefix?: string | undefined;
|
|
30
30
|
}
|
|
31
31
|
/**
|
|
32
32
|
* <p>The specified load balancer does not exist.</p>
|
|
@@ -35,7 +35,7 @@ export interface AccessLog {
|
|
|
35
35
|
export declare class AccessPointNotFoundException extends __BaseException {
|
|
36
36
|
readonly name: "AccessPointNotFoundException";
|
|
37
37
|
readonly $fault: "client";
|
|
38
|
-
Message?: string;
|
|
38
|
+
Message?: string | undefined;
|
|
39
39
|
/**
|
|
40
40
|
* @internal
|
|
41
41
|
*/
|
|
@@ -66,7 +66,7 @@ export interface AddAvailabilityZonesOutput {
|
|
|
66
66
|
* <p>The updated list of Availability Zones for the load balancer.</p>
|
|
67
67
|
* @public
|
|
68
68
|
*/
|
|
69
|
-
AvailabilityZones?: string[];
|
|
69
|
+
AvailabilityZones?: string[] | undefined;
|
|
70
70
|
}
|
|
71
71
|
/**
|
|
72
72
|
* <p>Information about additional load balancer attributes.</p>
|
|
@@ -86,12 +86,12 @@ export interface AdditionalAttribute {
|
|
|
86
86
|
* </ul>
|
|
87
87
|
* @public
|
|
88
88
|
*/
|
|
89
|
-
Key?: string;
|
|
89
|
+
Key?: string | undefined;
|
|
90
90
|
/**
|
|
91
91
|
* <p>This value of the attribute.</p>
|
|
92
92
|
* @public
|
|
93
93
|
*/
|
|
94
|
-
Value?: string;
|
|
94
|
+
Value?: string | undefined;
|
|
95
95
|
}
|
|
96
96
|
/**
|
|
97
97
|
* <p>Information about a tag.</p>
|
|
@@ -107,7 +107,7 @@ export interface Tag {
|
|
|
107
107
|
* <p>The value of the tag.</p>
|
|
108
108
|
* @public
|
|
109
109
|
*/
|
|
110
|
-
Value?: string;
|
|
110
|
+
Value?: string | undefined;
|
|
111
111
|
}
|
|
112
112
|
/**
|
|
113
113
|
* <p>Contains the parameters for AddTags.</p>
|
|
@@ -138,7 +138,7 @@ export interface AddTagsOutput {
|
|
|
138
138
|
export declare class DuplicateTagKeysException extends __BaseException {
|
|
139
139
|
readonly name: "DuplicateTagKeysException";
|
|
140
140
|
readonly $fault: "client";
|
|
141
|
-
Message?: string;
|
|
141
|
+
Message?: string | undefined;
|
|
142
142
|
/**
|
|
143
143
|
* @internal
|
|
144
144
|
*/
|
|
@@ -151,7 +151,7 @@ export declare class DuplicateTagKeysException extends __BaseException {
|
|
|
151
151
|
export declare class TooManyTagsException extends __BaseException {
|
|
152
152
|
readonly name: "TooManyTagsException";
|
|
153
153
|
readonly $fault: "client";
|
|
154
|
-
Message?: string;
|
|
154
|
+
Message?: string | undefined;
|
|
155
155
|
/**
|
|
156
156
|
* @internal
|
|
157
157
|
*/
|
|
@@ -166,12 +166,12 @@ export interface AppCookieStickinessPolicy {
|
|
|
166
166
|
* <p>The mnemonic name for the policy being created. The name must be unique within a set of policies for this load balancer.</p>
|
|
167
167
|
* @public
|
|
168
168
|
*/
|
|
169
|
-
PolicyName?: string;
|
|
169
|
+
PolicyName?: string | undefined;
|
|
170
170
|
/**
|
|
171
171
|
* <p>The name of the application cookie used for stickiness.</p>
|
|
172
172
|
* @public
|
|
173
173
|
*/
|
|
174
|
-
CookieName?: string;
|
|
174
|
+
CookieName?: string | undefined;
|
|
175
175
|
}
|
|
176
176
|
/**
|
|
177
177
|
* <p>Contains the parameters for ApplySecurityGroupsToLoadBalancer.</p>
|
|
@@ -198,7 +198,7 @@ export interface ApplySecurityGroupsToLoadBalancerOutput {
|
|
|
198
198
|
* <p>The IDs of the security groups associated with the load balancer.</p>
|
|
199
199
|
* @public
|
|
200
200
|
*/
|
|
201
|
-
SecurityGroups?: string[];
|
|
201
|
+
SecurityGroups?: string[] | undefined;
|
|
202
202
|
}
|
|
203
203
|
/**
|
|
204
204
|
* <p>The requested configuration change is not valid.</p>
|
|
@@ -207,7 +207,7 @@ export interface ApplySecurityGroupsToLoadBalancerOutput {
|
|
|
207
207
|
export declare class InvalidConfigurationRequestException extends __BaseException {
|
|
208
208
|
readonly name: "InvalidConfigurationRequestException";
|
|
209
209
|
readonly $fault: "client";
|
|
210
|
-
Message?: string;
|
|
210
|
+
Message?: string | undefined;
|
|
211
211
|
/**
|
|
212
212
|
* @internal
|
|
213
213
|
*/
|
|
@@ -220,7 +220,7 @@ export declare class InvalidConfigurationRequestException extends __BaseExceptio
|
|
|
220
220
|
export declare class InvalidSecurityGroupException extends __BaseException {
|
|
221
221
|
readonly name: "InvalidSecurityGroupException";
|
|
222
222
|
readonly $fault: "client";
|
|
223
|
-
Message?: string;
|
|
223
|
+
Message?: string | undefined;
|
|
224
224
|
/**
|
|
225
225
|
* @internal
|
|
226
226
|
*/
|
|
@@ -251,7 +251,7 @@ export interface AttachLoadBalancerToSubnetsOutput {
|
|
|
251
251
|
* <p>The IDs of the subnets attached to the load balancer.</p>
|
|
252
252
|
* @public
|
|
253
253
|
*/
|
|
254
|
-
Subnets?: string[];
|
|
254
|
+
Subnets?: string[] | undefined;
|
|
255
255
|
}
|
|
256
256
|
/**
|
|
257
257
|
* <p>The specified VPC has no associated Internet gateway.</p>
|
|
@@ -260,7 +260,7 @@ export interface AttachLoadBalancerToSubnetsOutput {
|
|
|
260
260
|
export declare class InvalidSubnetException extends __BaseException {
|
|
261
261
|
readonly name: "InvalidSubnetException";
|
|
262
262
|
readonly $fault: "client";
|
|
263
|
-
Message?: string;
|
|
263
|
+
Message?: string | undefined;
|
|
264
264
|
/**
|
|
265
265
|
* @internal
|
|
266
266
|
*/
|
|
@@ -273,7 +273,7 @@ export declare class InvalidSubnetException extends __BaseException {
|
|
|
273
273
|
export declare class SubnetNotFoundException extends __BaseException {
|
|
274
274
|
readonly name: "SubnetNotFoundException";
|
|
275
275
|
readonly $fault: "client";
|
|
276
|
-
Message?: string;
|
|
276
|
+
Message?: string | undefined;
|
|
277
277
|
/**
|
|
278
278
|
* @internal
|
|
279
279
|
*/
|
|
@@ -288,12 +288,12 @@ export interface BackendServerDescription {
|
|
|
288
288
|
* <p>The port on which the EC2 instance is listening.</p>
|
|
289
289
|
* @public
|
|
290
290
|
*/
|
|
291
|
-
InstancePort?: number;
|
|
291
|
+
InstancePort?: number | undefined;
|
|
292
292
|
/**
|
|
293
293
|
* <p>The names of the policies enabled for the EC2 instance.</p>
|
|
294
294
|
* @public
|
|
295
295
|
*/
|
|
296
|
-
PolicyNames?: string[];
|
|
296
|
+
PolicyNames?: string[] | undefined;
|
|
297
297
|
}
|
|
298
298
|
/**
|
|
299
299
|
* <p>The specified ARN does not refer to a valid SSL certificate in AWS Identity and Access Management (IAM)
|
|
@@ -304,7 +304,7 @@ export interface BackendServerDescription {
|
|
|
304
304
|
export declare class CertificateNotFoundException extends __BaseException {
|
|
305
305
|
readonly name: "CertificateNotFoundException";
|
|
306
306
|
readonly $fault: "client";
|
|
307
|
-
Message?: string;
|
|
307
|
+
Message?: string | undefined;
|
|
308
308
|
/**
|
|
309
309
|
* @internal
|
|
310
310
|
*/
|
|
@@ -371,7 +371,7 @@ export interface ConfigureHealthCheckOutput {
|
|
|
371
371
|
* <p>The updated health check.</p>
|
|
372
372
|
* @public
|
|
373
373
|
*/
|
|
374
|
-
HealthCheck?: HealthCheck;
|
|
374
|
+
HealthCheck?: HealthCheck | undefined;
|
|
375
375
|
}
|
|
376
376
|
/**
|
|
377
377
|
* <p>Information about the <code>ConnectionDraining</code> attribute.</p>
|
|
@@ -387,7 +387,7 @@ export interface ConnectionDraining {
|
|
|
387
387
|
* <p>The maximum time, in seconds, to keep the existing connections open before deregistering the instances.</p>
|
|
388
388
|
* @public
|
|
389
389
|
*/
|
|
390
|
-
Timeout?: number;
|
|
390
|
+
Timeout?: number | undefined;
|
|
391
391
|
}
|
|
392
392
|
/**
|
|
393
393
|
* <p>Information about the <code>ConnectionSettings</code> attribute.</p>
|
|
@@ -427,7 +427,7 @@ export interface Listener {
|
|
|
427
427
|
* the listener's <code>InstanceProtocol</code> must be HTTP or TCP.</p>
|
|
428
428
|
* @public
|
|
429
429
|
*/
|
|
430
|
-
InstanceProtocol?: string;
|
|
430
|
+
InstanceProtocol?: string | undefined;
|
|
431
431
|
/**
|
|
432
432
|
* <p>The port on which the instance is listening.</p>
|
|
433
433
|
* @public
|
|
@@ -437,7 +437,7 @@ export interface Listener {
|
|
|
437
437
|
* <p>The Amazon Resource Name (ARN) of the server certificate.</p>
|
|
438
438
|
* @public
|
|
439
439
|
*/
|
|
440
|
-
SSLCertificateId?: string;
|
|
440
|
+
SSLCertificateId?: string | undefined;
|
|
441
441
|
}
|
|
442
442
|
/**
|
|
443
443
|
* <p>Contains the parameters for CreateLoadBalancer.</p>
|
|
@@ -464,18 +464,18 @@ export interface CreateAccessPointInput {
|
|
|
464
464
|
* <a>EnableAvailabilityZonesForLoadBalancer</a>.</p>
|
|
465
465
|
* @public
|
|
466
466
|
*/
|
|
467
|
-
AvailabilityZones?: string[];
|
|
467
|
+
AvailabilityZones?: string[] | undefined;
|
|
468
468
|
/**
|
|
469
469
|
* <p>The IDs of the subnets in your VPC to attach to the load balancer.
|
|
470
470
|
* Specify one subnet per Availability Zone specified in <code>AvailabilityZones</code>.</p>
|
|
471
471
|
* @public
|
|
472
472
|
*/
|
|
473
|
-
Subnets?: string[];
|
|
473
|
+
Subnets?: string[] | undefined;
|
|
474
474
|
/**
|
|
475
475
|
* <p>The IDs of the security groups to assign to the load balancer.</p>
|
|
476
476
|
* @public
|
|
477
477
|
*/
|
|
478
|
-
SecurityGroups?: string[];
|
|
478
|
+
SecurityGroups?: string[] | undefined;
|
|
479
479
|
/**
|
|
480
480
|
* <p>The type of a load balancer. Valid only for load balancers in a VPC.</p>
|
|
481
481
|
* <p>By default, Elastic Load Balancing creates an Internet-facing load balancer with a DNS name that resolves to public IP addresses.
|
|
@@ -484,14 +484,14 @@ export interface CreateAccessPointInput {
|
|
|
484
484
|
* <p>Specify <code>internal</code> to create a load balancer with a DNS name that resolves to private IP addresses.</p>
|
|
485
485
|
* @public
|
|
486
486
|
*/
|
|
487
|
-
Scheme?: string;
|
|
487
|
+
Scheme?: string | undefined;
|
|
488
488
|
/**
|
|
489
489
|
* <p>A list of tags to assign to the load balancer.</p>
|
|
490
490
|
* <p>For more information about tagging your load balancer, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/add-remove-tags.html">Tag Your Classic Load Balancer</a>
|
|
491
491
|
* in the <i>Classic Load Balancers Guide</i>.</p>
|
|
492
492
|
* @public
|
|
493
493
|
*/
|
|
494
|
-
Tags?: Tag[];
|
|
494
|
+
Tags?: Tag[] | undefined;
|
|
495
495
|
}
|
|
496
496
|
/**
|
|
497
497
|
* <p>Contains the output for CreateLoadBalancer.</p>
|
|
@@ -502,7 +502,7 @@ export interface CreateAccessPointOutput {
|
|
|
502
502
|
* <p>The DNS name of the load balancer.</p>
|
|
503
503
|
* @public
|
|
504
504
|
*/
|
|
505
|
-
DNSName?: string;
|
|
505
|
+
DNSName?: string | undefined;
|
|
506
506
|
}
|
|
507
507
|
/**
|
|
508
508
|
* <p>Contains the parameters for CreateAppCookieStickinessPolicy.</p>
|
|
@@ -538,7 +538,7 @@ export interface CreateAppCookieStickinessPolicyOutput {
|
|
|
538
538
|
export declare class DuplicatePolicyNameException extends __BaseException {
|
|
539
539
|
readonly name: "DuplicatePolicyNameException";
|
|
540
540
|
readonly $fault: "client";
|
|
541
|
-
Message?: string;
|
|
541
|
+
Message?: string | undefined;
|
|
542
542
|
/**
|
|
543
543
|
* @internal
|
|
544
544
|
*/
|
|
@@ -551,7 +551,7 @@ export declare class DuplicatePolicyNameException extends __BaseException {
|
|
|
551
551
|
export declare class TooManyPoliciesException extends __BaseException {
|
|
552
552
|
readonly name: "TooManyPoliciesException";
|
|
553
553
|
readonly $fault: "client";
|
|
554
|
-
Message?: string;
|
|
554
|
+
Message?: string | undefined;
|
|
555
555
|
/**
|
|
556
556
|
* @internal
|
|
557
557
|
*/
|
|
@@ -576,7 +576,7 @@ export interface CreateLBCookieStickinessPolicyInput {
|
|
|
576
576
|
* <p>The time period, in seconds, after which the cookie should be considered stale. If you do not specify this parameter, the default value is 0, which indicates that the sticky session should last for the duration of the browser session.</p>
|
|
577
577
|
* @public
|
|
578
578
|
*/
|
|
579
|
-
CookieExpirationPeriod?: number;
|
|
579
|
+
CookieExpirationPeriod?: number | undefined;
|
|
580
580
|
}
|
|
581
581
|
/**
|
|
582
582
|
* <p>Contains the output for CreateLBCookieStickinessPolicy.</p>
|
|
@@ -591,7 +591,7 @@ export interface CreateLBCookieStickinessPolicyOutput {
|
|
|
591
591
|
export declare class DuplicateAccessPointNameException extends __BaseException {
|
|
592
592
|
readonly name: "DuplicateAccessPointNameException";
|
|
593
593
|
readonly $fault: "client";
|
|
594
|
-
Message?: string;
|
|
594
|
+
Message?: string | undefined;
|
|
595
595
|
/**
|
|
596
596
|
* @internal
|
|
597
597
|
*/
|
|
@@ -604,7 +604,7 @@ export declare class DuplicateAccessPointNameException extends __BaseException {
|
|
|
604
604
|
export declare class InvalidSchemeException extends __BaseException {
|
|
605
605
|
readonly name: "InvalidSchemeException";
|
|
606
606
|
readonly $fault: "client";
|
|
607
|
-
Message?: string;
|
|
607
|
+
Message?: string | undefined;
|
|
608
608
|
/**
|
|
609
609
|
* @internal
|
|
610
610
|
*/
|
|
@@ -617,7 +617,7 @@ export declare class InvalidSchemeException extends __BaseException {
|
|
|
617
617
|
export declare class OperationNotPermittedException extends __BaseException {
|
|
618
618
|
readonly name: "OperationNotPermittedException";
|
|
619
619
|
readonly $fault: "client";
|
|
620
|
-
Message?: string;
|
|
620
|
+
Message?: string | undefined;
|
|
621
621
|
/**
|
|
622
622
|
* @internal
|
|
623
623
|
*/
|
|
@@ -630,7 +630,7 @@ export declare class OperationNotPermittedException extends __BaseException {
|
|
|
630
630
|
export declare class TooManyAccessPointsException extends __BaseException {
|
|
631
631
|
readonly name: "TooManyAccessPointsException";
|
|
632
632
|
readonly $fault: "client";
|
|
633
|
-
Message?: string;
|
|
633
|
+
Message?: string | undefined;
|
|
634
634
|
/**
|
|
635
635
|
* @internal
|
|
636
636
|
*/
|
|
@@ -643,7 +643,7 @@ export declare class TooManyAccessPointsException extends __BaseException {
|
|
|
643
643
|
export declare class UnsupportedProtocolException extends __BaseException {
|
|
644
644
|
readonly name: "UnsupportedProtocolException";
|
|
645
645
|
readonly $fault: "client";
|
|
646
|
-
Message?: string;
|
|
646
|
+
Message?: string | undefined;
|
|
647
647
|
/**
|
|
648
648
|
* @internal
|
|
649
649
|
*/
|
|
@@ -678,7 +678,7 @@ export interface CreateLoadBalancerListenerOutput {
|
|
|
678
678
|
export declare class DuplicateListenerException extends __BaseException {
|
|
679
679
|
readonly name: "DuplicateListenerException";
|
|
680
680
|
readonly $fault: "client";
|
|
681
|
-
Message?: string;
|
|
681
|
+
Message?: string | undefined;
|
|
682
682
|
/**
|
|
683
683
|
* @internal
|
|
684
684
|
*/
|
|
@@ -693,12 +693,12 @@ export interface PolicyAttribute {
|
|
|
693
693
|
* <p>The name of the attribute.</p>
|
|
694
694
|
* @public
|
|
695
695
|
*/
|
|
696
|
-
AttributeName?: string;
|
|
696
|
+
AttributeName?: string | undefined;
|
|
697
697
|
/**
|
|
698
698
|
* <p>The value of the attribute.</p>
|
|
699
699
|
* @public
|
|
700
700
|
*/
|
|
701
|
-
AttributeValue?: string;
|
|
701
|
+
AttributeValue?: string | undefined;
|
|
702
702
|
}
|
|
703
703
|
/**
|
|
704
704
|
* <p>Contains the parameters for CreateLoadBalancerPolicy.</p>
|
|
@@ -725,7 +725,7 @@ export interface CreateLoadBalancerPolicyInput {
|
|
|
725
725
|
* <p>The policy attributes.</p>
|
|
726
726
|
* @public
|
|
727
727
|
*/
|
|
728
|
-
PolicyAttributes?: PolicyAttribute[];
|
|
728
|
+
PolicyAttributes?: PolicyAttribute[] | undefined;
|
|
729
729
|
}
|
|
730
730
|
/**
|
|
731
731
|
* <p>Contains the output of CreateLoadBalancerPolicy.</p>
|
|
@@ -740,7 +740,7 @@ export interface CreateLoadBalancerPolicyOutput {
|
|
|
740
740
|
export declare class PolicyTypeNotFoundException extends __BaseException {
|
|
741
741
|
readonly name: "PolicyTypeNotFoundException";
|
|
742
742
|
readonly $fault: "client";
|
|
743
|
-
Message?: string;
|
|
743
|
+
Message?: string | undefined;
|
|
744
744
|
/**
|
|
745
745
|
* @internal
|
|
746
746
|
*/
|
|
@@ -825,7 +825,7 @@ export interface DeleteLoadBalancerPolicyOutput {
|
|
|
825
825
|
export declare class DependencyThrottleException extends __BaseException {
|
|
826
826
|
readonly name: "DependencyThrottleException";
|
|
827
827
|
readonly $fault: "client";
|
|
828
|
-
Message?: string;
|
|
828
|
+
Message?: string | undefined;
|
|
829
829
|
/**
|
|
830
830
|
* @internal
|
|
831
831
|
*/
|
|
@@ -840,7 +840,7 @@ export interface Instance {
|
|
|
840
840
|
* <p>The instance ID.</p>
|
|
841
841
|
* @public
|
|
842
842
|
*/
|
|
843
|
-
InstanceId?: string;
|
|
843
|
+
InstanceId?: string | undefined;
|
|
844
844
|
}
|
|
845
845
|
/**
|
|
846
846
|
* <p>Contains the parameters for DeregisterInstancesFromLoadBalancer.</p>
|
|
@@ -867,7 +867,7 @@ export interface DeregisterEndPointsOutput {
|
|
|
867
867
|
* <p>The remaining instances registered with the load balancer.</p>
|
|
868
868
|
* @public
|
|
869
869
|
*/
|
|
870
|
-
Instances?: Instance[];
|
|
870
|
+
Instances?: Instance[] | undefined;
|
|
871
871
|
}
|
|
872
872
|
/**
|
|
873
873
|
* <p>The specified endpoint is not valid.</p>
|
|
@@ -876,7 +876,7 @@ export interface DeregisterEndPointsOutput {
|
|
|
876
876
|
export declare class InvalidEndPointException extends __BaseException {
|
|
877
877
|
readonly name: "InvalidEndPointException";
|
|
878
878
|
readonly $fault: "client";
|
|
879
|
-
Message?: string;
|
|
879
|
+
Message?: string | undefined;
|
|
880
880
|
/**
|
|
881
881
|
* @internal
|
|
882
882
|
*/
|
|
@@ -891,17 +891,17 @@ export interface DescribeAccessPointsInput {
|
|
|
891
891
|
* <p>The names of the load balancers.</p>
|
|
892
892
|
* @public
|
|
893
893
|
*/
|
|
894
|
-
LoadBalancerNames?: string[];
|
|
894
|
+
LoadBalancerNames?: string[] | undefined;
|
|
895
895
|
/**
|
|
896
896
|
* <p>The marker for the next set of results. (You received this marker from a previous call.)</p>
|
|
897
897
|
* @public
|
|
898
898
|
*/
|
|
899
|
-
Marker?: string;
|
|
899
|
+
Marker?: string | undefined;
|
|
900
900
|
/**
|
|
901
901
|
* <p>The maximum number of results to return with this call (a number from 1 to 400). The default is 400.</p>
|
|
902
902
|
* @public
|
|
903
903
|
*/
|
|
904
|
-
PageSize?: number;
|
|
904
|
+
PageSize?: number | undefined;
|
|
905
905
|
}
|
|
906
906
|
/**
|
|
907
907
|
* <p>The policies enabled for a listener.</p>
|
|
@@ -912,12 +912,12 @@ export interface ListenerDescription {
|
|
|
912
912
|
* <p>The listener.</p>
|
|
913
913
|
* @public
|
|
914
914
|
*/
|
|
915
|
-
Listener?: Listener;
|
|
915
|
+
Listener?: Listener | undefined;
|
|
916
916
|
/**
|
|
917
917
|
* <p>The policies. If there are no policies enabled, the list is empty.</p>
|
|
918
918
|
* @public
|
|
919
919
|
*/
|
|
920
|
-
PolicyNames?: string[];
|
|
920
|
+
PolicyNames?: string[] | undefined;
|
|
921
921
|
}
|
|
922
922
|
/**
|
|
923
923
|
* <p>Information about a policy for duration-based session stickiness.</p>
|
|
@@ -928,12 +928,12 @@ export interface LBCookieStickinessPolicy {
|
|
|
928
928
|
* <p>The name of the policy. This name must be unique within the set of policies for this load balancer.</p>
|
|
929
929
|
* @public
|
|
930
930
|
*/
|
|
931
|
-
PolicyName?: string;
|
|
931
|
+
PolicyName?: string | undefined;
|
|
932
932
|
/**
|
|
933
933
|
* <p>The time period, in seconds, after which the cookie should be considered stale. If this parameter is not specified, the stickiness session lasts for the duration of the browser session.</p>
|
|
934
934
|
* @public
|
|
935
935
|
*/
|
|
936
|
-
CookieExpirationPeriod?: number;
|
|
936
|
+
CookieExpirationPeriod?: number | undefined;
|
|
937
937
|
}
|
|
938
938
|
/**
|
|
939
939
|
* <p>The policies for a load balancer.</p>
|
|
@@ -944,17 +944,17 @@ export interface Policies {
|
|
|
944
944
|
* <p>The stickiness policies created using <a>CreateAppCookieStickinessPolicy</a>.</p>
|
|
945
945
|
* @public
|
|
946
946
|
*/
|
|
947
|
-
AppCookieStickinessPolicies?: AppCookieStickinessPolicy[];
|
|
947
|
+
AppCookieStickinessPolicies?: AppCookieStickinessPolicy[] | undefined;
|
|
948
948
|
/**
|
|
949
949
|
* <p>The stickiness policies created using <a>CreateLBCookieStickinessPolicy</a>.</p>
|
|
950
950
|
* @public
|
|
951
951
|
*/
|
|
952
|
-
LBCookieStickinessPolicies?: LBCookieStickinessPolicy[];
|
|
952
|
+
LBCookieStickinessPolicies?: LBCookieStickinessPolicy[] | undefined;
|
|
953
953
|
/**
|
|
954
954
|
* <p>The policies other than the stickiness policies.</p>
|
|
955
955
|
* @public
|
|
956
956
|
*/
|
|
957
|
-
OtherPolicies?: string[];
|
|
957
|
+
OtherPolicies?: string[] | undefined;
|
|
958
958
|
}
|
|
959
959
|
/**
|
|
960
960
|
* <p>Information about a source security group.</p>
|
|
@@ -965,12 +965,12 @@ export interface SourceSecurityGroup {
|
|
|
965
965
|
* <p>The owner of the security group.</p>
|
|
966
966
|
* @public
|
|
967
967
|
*/
|
|
968
|
-
OwnerAlias?: string;
|
|
968
|
+
OwnerAlias?: string | undefined;
|
|
969
969
|
/**
|
|
970
970
|
* <p>The name of the security group.</p>
|
|
971
971
|
* @public
|
|
972
972
|
*/
|
|
973
|
-
GroupName?: string;
|
|
973
|
+
GroupName?: string | undefined;
|
|
974
974
|
}
|
|
975
975
|
/**
|
|
976
976
|
* <p>Information about a load balancer.</p>
|
|
@@ -981,80 +981,80 @@ export interface LoadBalancerDescription {
|
|
|
981
981
|
* <p>The name of the load balancer.</p>
|
|
982
982
|
* @public
|
|
983
983
|
*/
|
|
984
|
-
LoadBalancerName?: string;
|
|
984
|
+
LoadBalancerName?: string | undefined;
|
|
985
985
|
/**
|
|
986
986
|
* <p>The DNS name of the load balancer.</p>
|
|
987
987
|
* @public
|
|
988
988
|
*/
|
|
989
|
-
DNSName?: string;
|
|
989
|
+
DNSName?: string | undefined;
|
|
990
990
|
/**
|
|
991
991
|
* <p>The DNS name of the load balancer.</p>
|
|
992
992
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/using-domain-names-with-elb.html">Configure a Custom Domain Name</a>
|
|
993
993
|
* in the <i>Classic Load Balancers Guide</i>.</p>
|
|
994
994
|
* @public
|
|
995
995
|
*/
|
|
996
|
-
CanonicalHostedZoneName?: string;
|
|
996
|
+
CanonicalHostedZoneName?: string | undefined;
|
|
997
997
|
/**
|
|
998
998
|
* <p>The ID of the Amazon Route 53 hosted zone for the load balancer.</p>
|
|
999
999
|
* @public
|
|
1000
1000
|
*/
|
|
1001
|
-
CanonicalHostedZoneNameID?: string;
|
|
1001
|
+
CanonicalHostedZoneNameID?: string | undefined;
|
|
1002
1002
|
/**
|
|
1003
1003
|
* <p>The listeners for the load balancer.</p>
|
|
1004
1004
|
* @public
|
|
1005
1005
|
*/
|
|
1006
|
-
ListenerDescriptions?: ListenerDescription[];
|
|
1006
|
+
ListenerDescriptions?: ListenerDescription[] | undefined;
|
|
1007
1007
|
/**
|
|
1008
1008
|
* <p>The policies defined for the load balancer.</p>
|
|
1009
1009
|
* @public
|
|
1010
1010
|
*/
|
|
1011
|
-
Policies?: Policies;
|
|
1011
|
+
Policies?: Policies | undefined;
|
|
1012
1012
|
/**
|
|
1013
1013
|
* <p>Information about your EC2 instances.</p>
|
|
1014
1014
|
* @public
|
|
1015
1015
|
*/
|
|
1016
|
-
BackendServerDescriptions?: BackendServerDescription[];
|
|
1016
|
+
BackendServerDescriptions?: BackendServerDescription[] | undefined;
|
|
1017
1017
|
/**
|
|
1018
1018
|
* <p>The Availability Zones for the load balancer.</p>
|
|
1019
1019
|
* @public
|
|
1020
1020
|
*/
|
|
1021
|
-
AvailabilityZones?: string[];
|
|
1021
|
+
AvailabilityZones?: string[] | undefined;
|
|
1022
1022
|
/**
|
|
1023
1023
|
* <p>The IDs of the subnets for the load balancer.</p>
|
|
1024
1024
|
* @public
|
|
1025
1025
|
*/
|
|
1026
|
-
Subnets?: string[];
|
|
1026
|
+
Subnets?: string[] | undefined;
|
|
1027
1027
|
/**
|
|
1028
1028
|
* <p>The ID of the VPC for the load balancer.</p>
|
|
1029
1029
|
* @public
|
|
1030
1030
|
*/
|
|
1031
|
-
VPCId?: string;
|
|
1031
|
+
VPCId?: string | undefined;
|
|
1032
1032
|
/**
|
|
1033
1033
|
* <p>The IDs of the instances for the load balancer.</p>
|
|
1034
1034
|
* @public
|
|
1035
1035
|
*/
|
|
1036
|
-
Instances?: Instance[];
|
|
1036
|
+
Instances?: Instance[] | undefined;
|
|
1037
1037
|
/**
|
|
1038
1038
|
* <p>Information about the health checks conducted on the load balancer.</p>
|
|
1039
1039
|
* @public
|
|
1040
1040
|
*/
|
|
1041
|
-
HealthCheck?: HealthCheck;
|
|
1041
|
+
HealthCheck?: HealthCheck | undefined;
|
|
1042
1042
|
/**
|
|
1043
1043
|
* <p>The security group for the load balancer, which you can use as part of your inbound rules for your registered instances.
|
|
1044
1044
|
* To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.</p>
|
|
1045
1045
|
* @public
|
|
1046
1046
|
*/
|
|
1047
|
-
SourceSecurityGroup?: SourceSecurityGroup;
|
|
1047
|
+
SourceSecurityGroup?: SourceSecurityGroup | undefined;
|
|
1048
1048
|
/**
|
|
1049
1049
|
* <p>The security groups for the load balancer. Valid only for load balancers in a VPC.</p>
|
|
1050
1050
|
* @public
|
|
1051
1051
|
*/
|
|
1052
|
-
SecurityGroups?: string[];
|
|
1052
|
+
SecurityGroups?: string[] | undefined;
|
|
1053
1053
|
/**
|
|
1054
1054
|
* <p>The date and time the load balancer was created.</p>
|
|
1055
1055
|
* @public
|
|
1056
1056
|
*/
|
|
1057
|
-
CreatedTime?: Date;
|
|
1057
|
+
CreatedTime?: Date | undefined;
|
|
1058
1058
|
/**
|
|
1059
1059
|
* <p>The type of load balancer. Valid only for load balancers in a VPC.</p>
|
|
1060
1060
|
* <p>If <code>Scheme</code> is <code>internet-facing</code>, the load balancer
|
|
@@ -1063,7 +1063,7 @@ export interface LoadBalancerDescription {
|
|
|
1063
1063
|
* DNS name that resolves to a private IP address.</p>
|
|
1064
1064
|
* @public
|
|
1065
1065
|
*/
|
|
1066
|
-
Scheme?: string;
|
|
1066
|
+
Scheme?: string | undefined;
|
|
1067
1067
|
}
|
|
1068
1068
|
/**
|
|
1069
1069
|
* <p>Contains the parameters for DescribeLoadBalancers.</p>
|
|
@@ -1074,12 +1074,12 @@ export interface DescribeAccessPointsOutput {
|
|
|
1074
1074
|
* <p>Information about the load balancers.</p>
|
|
1075
1075
|
* @public
|
|
1076
1076
|
*/
|
|
1077
|
-
LoadBalancerDescriptions?: LoadBalancerDescription[];
|
|
1077
|
+
LoadBalancerDescriptions?: LoadBalancerDescription[] | undefined;
|
|
1078
1078
|
/**
|
|
1079
1079
|
* <p>The marker to use when requesting the next set of results. If there are no additional results, the string is empty.</p>
|
|
1080
1080
|
* @public
|
|
1081
1081
|
*/
|
|
1082
|
-
NextMarker?: string;
|
|
1082
|
+
NextMarker?: string | undefined;
|
|
1083
1083
|
}
|
|
1084
1084
|
/**
|
|
1085
1085
|
* @public
|
|
@@ -1089,12 +1089,12 @@ export interface DescribeAccountLimitsInput {
|
|
|
1089
1089
|
* <p>The marker for the next set of results. (You received this marker from a previous call.)</p>
|
|
1090
1090
|
* @public
|
|
1091
1091
|
*/
|
|
1092
|
-
Marker?: string;
|
|
1092
|
+
Marker?: string | undefined;
|
|
1093
1093
|
/**
|
|
1094
1094
|
* <p>The maximum number of results to return with this call.</p>
|
|
1095
1095
|
* @public
|
|
1096
1096
|
*/
|
|
1097
|
-
PageSize?: number;
|
|
1097
|
+
PageSize?: number | undefined;
|
|
1098
1098
|
}
|
|
1099
1099
|
/**
|
|
1100
1100
|
* <p>Information about an Elastic Load Balancing resource limit for your AWS account.</p>
|
|
@@ -1116,12 +1116,12 @@ export interface Limit {
|
|
|
1116
1116
|
* </ul>
|
|
1117
1117
|
* @public
|
|
1118
1118
|
*/
|
|
1119
|
-
Name?: string;
|
|
1119
|
+
Name?: string | undefined;
|
|
1120
1120
|
/**
|
|
1121
1121
|
* <p>The maximum value of the limit.</p>
|
|
1122
1122
|
* @public
|
|
1123
1123
|
*/
|
|
1124
|
-
Max?: string;
|
|
1124
|
+
Max?: string | undefined;
|
|
1125
1125
|
}
|
|
1126
1126
|
/**
|
|
1127
1127
|
* @public
|
|
@@ -1131,12 +1131,12 @@ export interface DescribeAccountLimitsOutput {
|
|
|
1131
1131
|
* <p>Information about the limits.</p>
|
|
1132
1132
|
* @public
|
|
1133
1133
|
*/
|
|
1134
|
-
Limits?: Limit[];
|
|
1134
|
+
Limits?: Limit[] | undefined;
|
|
1135
1135
|
/**
|
|
1136
1136
|
* <p>The marker to use when requesting the next set of results. If there are no additional results, the string is empty.</p>
|
|
1137
1137
|
* @public
|
|
1138
1138
|
*/
|
|
1139
|
-
NextMarker?: string;
|
|
1139
|
+
NextMarker?: string | undefined;
|
|
1140
1140
|
}
|
|
1141
1141
|
/**
|
|
1142
1142
|
* <p>Contains the parameters for DescribeInstanceHealth.</p>
|
|
@@ -1152,7 +1152,7 @@ export interface DescribeEndPointStateInput {
|
|
|
1152
1152
|
* <p>The IDs of the instances.</p>
|
|
1153
1153
|
* @public
|
|
1154
1154
|
*/
|
|
1155
|
-
Instances?: Instance[];
|
|
1155
|
+
Instances?: Instance[] | undefined;
|
|
1156
1156
|
}
|
|
1157
1157
|
/**
|
|
1158
1158
|
* <p>Information about the state of an EC2 instance.</p>
|
|
@@ -1163,14 +1163,14 @@ export interface InstanceState {
|
|
|
1163
1163
|
* <p>The ID of the instance.</p>
|
|
1164
1164
|
* @public
|
|
1165
1165
|
*/
|
|
1166
|
-
InstanceId?: string;
|
|
1166
|
+
InstanceId?: string | undefined;
|
|
1167
1167
|
/**
|
|
1168
1168
|
* <p>The current state of the instance.</p>
|
|
1169
1169
|
* <p>Valid values: <code>InService</code> | <code>OutOfService</code> | <code>Unknown</code>
|
|
1170
1170
|
* </p>
|
|
1171
1171
|
* @public
|
|
1172
1172
|
*/
|
|
1173
|
-
State?: string;
|
|
1173
|
+
State?: string | undefined;
|
|
1174
1174
|
/**
|
|
1175
1175
|
* <p>Information about the cause of <code>OutOfService</code> instances.
|
|
1176
1176
|
* Specifically, whether the cause is Elastic Load Balancing or the instance.</p>
|
|
@@ -1178,7 +1178,7 @@ export interface InstanceState {
|
|
|
1178
1178
|
* </p>
|
|
1179
1179
|
* @public
|
|
1180
1180
|
*/
|
|
1181
|
-
ReasonCode?: string;
|
|
1181
|
+
ReasonCode?: string | undefined;
|
|
1182
1182
|
/**
|
|
1183
1183
|
* <p>A description of the instance state. This string can contain one or more of the following messages.</p>
|
|
1184
1184
|
* <ul>
|
|
@@ -1245,7 +1245,7 @@ export interface InstanceState {
|
|
|
1245
1245
|
* </ul>
|
|
1246
1246
|
* @public
|
|
1247
1247
|
*/
|
|
1248
|
-
Description?: string;
|
|
1248
|
+
Description?: string | undefined;
|
|
1249
1249
|
}
|
|
1250
1250
|
/**
|
|
1251
1251
|
* <p>Contains the output for DescribeInstanceHealth.</p>
|
|
@@ -1256,7 +1256,7 @@ export interface DescribeEndPointStateOutput {
|
|
|
1256
1256
|
* <p>Information about the health of the instances.</p>
|
|
1257
1257
|
* @public
|
|
1258
1258
|
*/
|
|
1259
|
-
InstanceStates?: InstanceState[];
|
|
1259
|
+
InstanceStates?: InstanceState[] | undefined;
|
|
1260
1260
|
}
|
|
1261
1261
|
/**
|
|
1262
1262
|
* <p>Contains the parameters for DescribeLoadBalancerAttributes.</p>
|
|
@@ -1280,21 +1280,21 @@ export interface LoadBalancerAttributes {
|
|
|
1280
1280
|
* in the <i>Classic Load Balancers Guide</i>.</p>
|
|
1281
1281
|
* @public
|
|
1282
1282
|
*/
|
|
1283
|
-
CrossZoneLoadBalancing?: CrossZoneLoadBalancing;
|
|
1283
|
+
CrossZoneLoadBalancing?: CrossZoneLoadBalancing | undefined;
|
|
1284
1284
|
/**
|
|
1285
1285
|
* <p>If enabled, the load balancer captures detailed information of all requests and delivers the information to the Amazon S3 bucket that you specify.</p>
|
|
1286
1286
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/enable-access-logs.html">Enable Access Logs</a>
|
|
1287
1287
|
* in the <i>Classic Load Balancers Guide</i>.</p>
|
|
1288
1288
|
* @public
|
|
1289
1289
|
*/
|
|
1290
|
-
AccessLog?: AccessLog;
|
|
1290
|
+
AccessLog?: AccessLog | undefined;
|
|
1291
1291
|
/**
|
|
1292
1292
|
* <p>If enabled, the load balancer allows existing requests to complete before the load balancer shifts traffic away from a deregistered or unhealthy instance.</p>
|
|
1293
1293
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/config-conn-drain.html">Configure Connection Draining</a>
|
|
1294
1294
|
* in the <i>Classic Load Balancers Guide</i>.</p>
|
|
1295
1295
|
* @public
|
|
1296
1296
|
*/
|
|
1297
|
-
ConnectionDraining?: ConnectionDraining;
|
|
1297
|
+
ConnectionDraining?: ConnectionDraining | undefined;
|
|
1298
1298
|
/**
|
|
1299
1299
|
* <p>If enabled, the load balancer allows the connections to remain idle (no data is sent over the connection) for the specified duration.</p>
|
|
1300
1300
|
* <p>By default, Elastic Load Balancing maintains a 60-second idle connection timeout for both front-end and back-end connections of your load balancer.
|
|
@@ -1302,12 +1302,12 @@ export interface LoadBalancerAttributes {
|
|
|
1302
1302
|
* in the <i>Classic Load Balancers Guide</i>.</p>
|
|
1303
1303
|
* @public
|
|
1304
1304
|
*/
|
|
1305
|
-
ConnectionSettings?: ConnectionSettings;
|
|
1305
|
+
ConnectionSettings?: ConnectionSettings | undefined;
|
|
1306
1306
|
/**
|
|
1307
1307
|
* <p>Any additional attributes.</p>
|
|
1308
1308
|
* @public
|
|
1309
1309
|
*/
|
|
1310
|
-
AdditionalAttributes?: AdditionalAttribute[];
|
|
1310
|
+
AdditionalAttributes?: AdditionalAttribute[] | undefined;
|
|
1311
1311
|
}
|
|
1312
1312
|
/**
|
|
1313
1313
|
* <p>Contains the output of DescribeLoadBalancerAttributes.</p>
|
|
@@ -1318,7 +1318,7 @@ export interface DescribeLoadBalancerAttributesOutput {
|
|
|
1318
1318
|
* <p>Information about the load balancer attributes.</p>
|
|
1319
1319
|
* @public
|
|
1320
1320
|
*/
|
|
1321
|
-
LoadBalancerAttributes?: LoadBalancerAttributes;
|
|
1321
|
+
LoadBalancerAttributes?: LoadBalancerAttributes | undefined;
|
|
1322
1322
|
}
|
|
1323
1323
|
/**
|
|
1324
1324
|
* <p>The specified load balancer attribute does not exist.</p>
|
|
@@ -1327,7 +1327,7 @@ export interface DescribeLoadBalancerAttributesOutput {
|
|
|
1327
1327
|
export declare class LoadBalancerAttributeNotFoundException extends __BaseException {
|
|
1328
1328
|
readonly name: "LoadBalancerAttributeNotFoundException";
|
|
1329
1329
|
readonly $fault: "client";
|
|
1330
|
-
Message?: string;
|
|
1330
|
+
Message?: string | undefined;
|
|
1331
1331
|
/**
|
|
1332
1332
|
* @internal
|
|
1333
1333
|
*/
|
|
@@ -1342,12 +1342,12 @@ export interface DescribeLoadBalancerPoliciesInput {
|
|
|
1342
1342
|
* <p>The name of the load balancer.</p>
|
|
1343
1343
|
* @public
|
|
1344
1344
|
*/
|
|
1345
|
-
LoadBalancerName?: string;
|
|
1345
|
+
LoadBalancerName?: string | undefined;
|
|
1346
1346
|
/**
|
|
1347
1347
|
* <p>The names of the policies.</p>
|
|
1348
1348
|
* @public
|
|
1349
1349
|
*/
|
|
1350
|
-
PolicyNames?: string[];
|
|
1350
|
+
PolicyNames?: string[] | undefined;
|
|
1351
1351
|
}
|
|
1352
1352
|
/**
|
|
1353
1353
|
* <p>Information about a policy attribute.</p>
|
|
@@ -1358,12 +1358,12 @@ export interface PolicyAttributeDescription {
|
|
|
1358
1358
|
* <p>The name of the attribute.</p>
|
|
1359
1359
|
* @public
|
|
1360
1360
|
*/
|
|
1361
|
-
AttributeName?: string;
|
|
1361
|
+
AttributeName?: string | undefined;
|
|
1362
1362
|
/**
|
|
1363
1363
|
* <p>The value of the attribute.</p>
|
|
1364
1364
|
* @public
|
|
1365
1365
|
*/
|
|
1366
|
-
AttributeValue?: string;
|
|
1366
|
+
AttributeValue?: string | undefined;
|
|
1367
1367
|
}
|
|
1368
1368
|
/**
|
|
1369
1369
|
* <p>Information about a policy.</p>
|
|
@@ -1374,17 +1374,17 @@ export interface PolicyDescription {
|
|
|
1374
1374
|
* <p>The name of the policy.</p>
|
|
1375
1375
|
* @public
|
|
1376
1376
|
*/
|
|
1377
|
-
PolicyName?: string;
|
|
1377
|
+
PolicyName?: string | undefined;
|
|
1378
1378
|
/**
|
|
1379
1379
|
* <p>The name of the policy type.</p>
|
|
1380
1380
|
* @public
|
|
1381
1381
|
*/
|
|
1382
|
-
PolicyTypeName?: string;
|
|
1382
|
+
PolicyTypeName?: string | undefined;
|
|
1383
1383
|
/**
|
|
1384
1384
|
* <p>The policy attributes.</p>
|
|
1385
1385
|
* @public
|
|
1386
1386
|
*/
|
|
1387
|
-
PolicyAttributeDescriptions?: PolicyAttributeDescription[];
|
|
1387
|
+
PolicyAttributeDescriptions?: PolicyAttributeDescription[] | undefined;
|
|
1388
1388
|
}
|
|
1389
1389
|
/**
|
|
1390
1390
|
* <p>Contains the output of DescribeLoadBalancerPolicies.</p>
|
|
@@ -1395,7 +1395,7 @@ export interface DescribeLoadBalancerPoliciesOutput {
|
|
|
1395
1395
|
* <p>Information about the policies.</p>
|
|
1396
1396
|
* @public
|
|
1397
1397
|
*/
|
|
1398
|
-
PolicyDescriptions?: PolicyDescription[];
|
|
1398
|
+
PolicyDescriptions?: PolicyDescription[] | undefined;
|
|
1399
1399
|
}
|
|
1400
1400
|
/**
|
|
1401
1401
|
* <p>One or more of the specified policies do not exist.</p>
|
|
@@ -1404,7 +1404,7 @@ export interface DescribeLoadBalancerPoliciesOutput {
|
|
|
1404
1404
|
export declare class PolicyNotFoundException extends __BaseException {
|
|
1405
1405
|
readonly name: "PolicyNotFoundException";
|
|
1406
1406
|
readonly $fault: "client";
|
|
1407
|
-
Message?: string;
|
|
1407
|
+
Message?: string | undefined;
|
|
1408
1408
|
/**
|
|
1409
1409
|
* @internal
|
|
1410
1410
|
*/
|
|
@@ -1419,7 +1419,7 @@ export interface DescribeLoadBalancerPolicyTypesInput {
|
|
|
1419
1419
|
* <p>The names of the policy types. If no names are specified, describes all policy types defined by Elastic Load Balancing.</p>
|
|
1420
1420
|
* @public
|
|
1421
1421
|
*/
|
|
1422
|
-
PolicyTypeNames?: string[];
|
|
1422
|
+
PolicyTypeNames?: string[] | undefined;
|
|
1423
1423
|
}
|
|
1424
1424
|
/**
|
|
1425
1425
|
* <p>Information about a policy attribute type.</p>
|
|
@@ -1430,22 +1430,22 @@ export interface PolicyAttributeTypeDescription {
|
|
|
1430
1430
|
* <p>The name of the attribute.</p>
|
|
1431
1431
|
* @public
|
|
1432
1432
|
*/
|
|
1433
|
-
AttributeName?: string;
|
|
1433
|
+
AttributeName?: string | undefined;
|
|
1434
1434
|
/**
|
|
1435
1435
|
* <p>The type of the attribute. For example, <code>Boolean</code> or <code>Integer</code>.</p>
|
|
1436
1436
|
* @public
|
|
1437
1437
|
*/
|
|
1438
|
-
AttributeType?: string;
|
|
1438
|
+
AttributeType?: string | undefined;
|
|
1439
1439
|
/**
|
|
1440
1440
|
* <p>A description of the attribute.</p>
|
|
1441
1441
|
* @public
|
|
1442
1442
|
*/
|
|
1443
|
-
Description?: string;
|
|
1443
|
+
Description?: string | undefined;
|
|
1444
1444
|
/**
|
|
1445
1445
|
* <p>The default value of the attribute, if applicable.</p>
|
|
1446
1446
|
* @public
|
|
1447
1447
|
*/
|
|
1448
|
-
DefaultValue?: string;
|
|
1448
|
+
DefaultValue?: string | undefined;
|
|
1449
1449
|
/**
|
|
1450
1450
|
* <p>The cardinality of the attribute.</p>
|
|
1451
1451
|
* <p>Valid values:</p>
|
|
@@ -1465,7 +1465,7 @@ export interface PolicyAttributeTypeDescription {
|
|
|
1465
1465
|
* </ul>
|
|
1466
1466
|
* @public
|
|
1467
1467
|
*/
|
|
1468
|
-
Cardinality?: string;
|
|
1468
|
+
Cardinality?: string | undefined;
|
|
1469
1469
|
}
|
|
1470
1470
|
/**
|
|
1471
1471
|
* <p>Information about a policy type.</p>
|
|
@@ -1476,17 +1476,17 @@ export interface PolicyTypeDescription {
|
|
|
1476
1476
|
* <p>The name of the policy type.</p>
|
|
1477
1477
|
* @public
|
|
1478
1478
|
*/
|
|
1479
|
-
PolicyTypeName?: string;
|
|
1479
|
+
PolicyTypeName?: string | undefined;
|
|
1480
1480
|
/**
|
|
1481
1481
|
* <p>A description of the policy type.</p>
|
|
1482
1482
|
* @public
|
|
1483
1483
|
*/
|
|
1484
|
-
Description?: string;
|
|
1484
|
+
Description?: string | undefined;
|
|
1485
1485
|
/**
|
|
1486
1486
|
* <p>The description of the policy attributes associated with the policies defined by Elastic Load Balancing.</p>
|
|
1487
1487
|
* @public
|
|
1488
1488
|
*/
|
|
1489
|
-
PolicyAttributeTypeDescriptions?: PolicyAttributeTypeDescription[];
|
|
1489
|
+
PolicyAttributeTypeDescriptions?: PolicyAttributeTypeDescription[] | undefined;
|
|
1490
1490
|
}
|
|
1491
1491
|
/**
|
|
1492
1492
|
* <p>Contains the output of DescribeLoadBalancerPolicyTypes.</p>
|
|
@@ -1497,7 +1497,7 @@ export interface DescribeLoadBalancerPolicyTypesOutput {
|
|
|
1497
1497
|
* <p>Information about the policy types.</p>
|
|
1498
1498
|
* @public
|
|
1499
1499
|
*/
|
|
1500
|
-
PolicyTypeDescriptions?: PolicyTypeDescription[];
|
|
1500
|
+
PolicyTypeDescriptions?: PolicyTypeDescription[] | undefined;
|
|
1501
1501
|
}
|
|
1502
1502
|
/**
|
|
1503
1503
|
* <p>Contains the parameters for DescribeTags.</p>
|
|
@@ -1519,12 +1519,12 @@ export interface TagDescription {
|
|
|
1519
1519
|
* <p>The name of the load balancer.</p>
|
|
1520
1520
|
* @public
|
|
1521
1521
|
*/
|
|
1522
|
-
LoadBalancerName?: string;
|
|
1522
|
+
LoadBalancerName?: string | undefined;
|
|
1523
1523
|
/**
|
|
1524
1524
|
* <p>The tags.</p>
|
|
1525
1525
|
* @public
|
|
1526
1526
|
*/
|
|
1527
|
-
Tags?: Tag[];
|
|
1527
|
+
Tags?: Tag[] | undefined;
|
|
1528
1528
|
}
|
|
1529
1529
|
/**
|
|
1530
1530
|
* <p>Contains the output for DescribeTags.</p>
|
|
@@ -1535,7 +1535,7 @@ export interface DescribeTagsOutput {
|
|
|
1535
1535
|
* <p>Information about the tags.</p>
|
|
1536
1536
|
* @public
|
|
1537
1537
|
*/
|
|
1538
|
-
TagDescriptions?: TagDescription[];
|
|
1538
|
+
TagDescriptions?: TagDescription[] | undefined;
|
|
1539
1539
|
}
|
|
1540
1540
|
/**
|
|
1541
1541
|
* <p>Contains the parameters for DetachLoadBalancerFromSubnets.</p>
|
|
@@ -1562,7 +1562,7 @@ export interface DetachLoadBalancerFromSubnetsOutput {
|
|
|
1562
1562
|
* <p>The IDs of the remaining subnets for the load balancer.</p>
|
|
1563
1563
|
* @public
|
|
1564
1564
|
*/
|
|
1565
|
-
Subnets?: string[];
|
|
1565
|
+
Subnets?: string[] | undefined;
|
|
1566
1566
|
}
|
|
1567
1567
|
/**
|
|
1568
1568
|
* <p>Contains the parameters for DisableAvailabilityZonesForLoadBalancer.</p>
|
|
@@ -1589,7 +1589,7 @@ export interface RemoveAvailabilityZonesOutput {
|
|
|
1589
1589
|
* <p>The remaining Availability Zones for the load balancer.</p>
|
|
1590
1590
|
* @public
|
|
1591
1591
|
*/
|
|
1592
|
-
AvailabilityZones?: string[];
|
|
1592
|
+
AvailabilityZones?: string[] | undefined;
|
|
1593
1593
|
}
|
|
1594
1594
|
/**
|
|
1595
1595
|
* <p>Contains the parameters for ModifyLoadBalancerAttributes.</p>
|
|
@@ -1616,12 +1616,12 @@ export interface ModifyLoadBalancerAttributesOutput {
|
|
|
1616
1616
|
* <p>The name of the load balancer.</p>
|
|
1617
1617
|
* @public
|
|
1618
1618
|
*/
|
|
1619
|
-
LoadBalancerName?: string;
|
|
1619
|
+
LoadBalancerName?: string | undefined;
|
|
1620
1620
|
/**
|
|
1621
1621
|
* <p>Information about the load balancer attributes.</p>
|
|
1622
1622
|
* @public
|
|
1623
1623
|
*/
|
|
1624
|
-
LoadBalancerAttributes?: LoadBalancerAttributes;
|
|
1624
|
+
LoadBalancerAttributes?: LoadBalancerAttributes | undefined;
|
|
1625
1625
|
}
|
|
1626
1626
|
/**
|
|
1627
1627
|
* <p>Contains the parameters for RegisterInstancesWithLoadBalancer.</p>
|
|
@@ -1648,7 +1648,7 @@ export interface RegisterEndPointsOutput {
|
|
|
1648
1648
|
* <p>The updated list of instances for the load balancer.</p>
|
|
1649
1649
|
* @public
|
|
1650
1650
|
*/
|
|
1651
|
-
Instances?: Instance[];
|
|
1651
|
+
Instances?: Instance[] | undefined;
|
|
1652
1652
|
}
|
|
1653
1653
|
/**
|
|
1654
1654
|
* <p>The key of a tag.</p>
|
|
@@ -1659,7 +1659,7 @@ export interface TagKeyOnly {
|
|
|
1659
1659
|
* <p>The name of the key.</p>
|
|
1660
1660
|
* @public
|
|
1661
1661
|
*/
|
|
1662
|
-
Key?: string;
|
|
1662
|
+
Key?: string | undefined;
|
|
1663
1663
|
}
|
|
1664
1664
|
/**
|
|
1665
1665
|
* <p>Contains the parameters for RemoveTags.</p>
|
|
@@ -1690,7 +1690,7 @@ export interface RemoveTagsOutput {
|
|
|
1690
1690
|
export declare class ListenerNotFoundException extends __BaseException {
|
|
1691
1691
|
readonly name: "ListenerNotFoundException";
|
|
1692
1692
|
readonly $fault: "client";
|
|
1693
|
-
Message?: string;
|
|
1693
|
+
Message?: string | undefined;
|
|
1694
1694
|
/**
|
|
1695
1695
|
* @internal
|
|
1696
1696
|
*/
|