@aws-sdk/client-elastic-load-balancing-v2 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.
@@ -39,7 +39,7 @@ export interface AuthenticateCognitoActionConfig {
39
39
  * AWSELBAuthSessionCookie.</p>
40
40
  * @public
41
41
  */
42
- SessionCookieName?: string;
42
+ SessionCookieName?: string | undefined;
43
43
  /**
44
44
  * <p>The set of user claims to be requested from the IdP. The default is
45
45
  * <code>openid</code>.</p>
@@ -47,19 +47,19 @@ export interface AuthenticateCognitoActionConfig {
47
47
  * the documentation for your IdP.</p>
48
48
  * @public
49
49
  */
50
- Scope?: string;
50
+ Scope?: string | undefined;
51
51
  /**
52
52
  * <p>The maximum duration of the authentication session, in seconds. The default is 604800
53
53
  * seconds (7 days).</p>
54
54
  * @public
55
55
  */
56
- SessionTimeout?: number;
56
+ SessionTimeout?: number | undefined;
57
57
  /**
58
58
  * <p>The query parameters (up to 10) to include in the redirect request to the authorization
59
59
  * endpoint.</p>
60
60
  * @public
61
61
  */
62
- AuthenticationRequestExtraParams?: Record<string, string>;
62
+ AuthenticationRequestExtraParams?: Record<string, string> | undefined;
63
63
  /**
64
64
  * <p>The behavior if the user is not authenticated. The following are possible values:</p>
65
65
  * <ul>
@@ -76,7 +76,7 @@ export interface AuthenticateCognitoActionConfig {
76
76
  * </ul>
77
77
  * @public
78
78
  */
79
- OnUnauthenticatedRequest?: AuthenticateCognitoActionConditionalBehaviorEnum;
79
+ OnUnauthenticatedRequest?: AuthenticateCognitoActionConditionalBehaviorEnum | undefined;
80
80
  }
81
81
  /**
82
82
  * @public
@@ -132,13 +132,13 @@ export interface AuthenticateOidcActionConfig {
132
132
  * <code>UseExistingClientSecret</code> to true.</p>
133
133
  * @public
134
134
  */
135
- ClientSecret?: string;
135
+ ClientSecret?: string | undefined;
136
136
  /**
137
137
  * <p>The name of the cookie used to maintain session information. The default is
138
138
  * AWSELBAuthSessionCookie.</p>
139
139
  * @public
140
140
  */
141
- SessionCookieName?: string;
141
+ SessionCookieName?: string | undefined;
142
142
  /**
143
143
  * <p>The set of user claims to be requested from the IdP. The default is
144
144
  * <code>openid</code>.</p>
@@ -146,19 +146,19 @@ export interface AuthenticateOidcActionConfig {
146
146
  * the documentation for your IdP.</p>
147
147
  * @public
148
148
  */
149
- Scope?: string;
149
+ Scope?: string | undefined;
150
150
  /**
151
151
  * <p>The maximum duration of the authentication session, in seconds. The default is 604800
152
152
  * seconds (7 days).</p>
153
153
  * @public
154
154
  */
155
- SessionTimeout?: number;
155
+ SessionTimeout?: number | undefined;
156
156
  /**
157
157
  * <p>The query parameters (up to 10) to include in the redirect request to the authorization
158
158
  * endpoint.</p>
159
159
  * @public
160
160
  */
161
- AuthenticationRequestExtraParams?: Record<string, string>;
161
+ AuthenticationRequestExtraParams?: Record<string, string> | undefined;
162
162
  /**
163
163
  * <p>The behavior if the user is not authenticated. The following are possible values:</p>
164
164
  * <ul>
@@ -175,13 +175,13 @@ export interface AuthenticateOidcActionConfig {
175
175
  * </ul>
176
176
  * @public
177
177
  */
178
- OnUnauthenticatedRequest?: AuthenticateOidcActionConditionalBehaviorEnum;
178
+ OnUnauthenticatedRequest?: AuthenticateOidcActionConditionalBehaviorEnum | undefined;
179
179
  /**
180
180
  * <p>Indicates whether to use the existing client secret when modifying a rule. If you are
181
181
  * creating a rule, you can omit this parameter or set it to false.</p>
182
182
  * @public
183
183
  */
184
- UseExistingClientSecret?: boolean;
184
+ UseExistingClientSecret?: boolean | undefined;
185
185
  }
186
186
  /**
187
187
  * <p>Information about an action that returns a custom HTTP response.</p>
@@ -192,7 +192,7 @@ export interface FixedResponseActionConfig {
192
192
  * <p>The message.</p>
193
193
  * @public
194
194
  */
195
- MessageBody?: string;
195
+ MessageBody?: string | undefined;
196
196
  /**
197
197
  * <p>The HTTP response code (2XX, 4XX, or 5XX).</p>
198
198
  * @public
@@ -204,7 +204,7 @@ export interface FixedResponseActionConfig {
204
204
  * application/json</p>
205
205
  * @public
206
206
  */
207
- ContentType?: string;
207
+ ContentType?: string | undefined;
208
208
  }
209
209
  /**
210
210
  * <p>Information about how traffic will be distributed between multiple target groups in a
@@ -216,12 +216,12 @@ export interface TargetGroupTuple {
216
216
  * <p>The Amazon Resource Name (ARN) of the target group.</p>
217
217
  * @public
218
218
  */
219
- TargetGroupArn?: string;
219
+ TargetGroupArn?: string | undefined;
220
220
  /**
221
221
  * <p>The weight. The range is 0 to 999.</p>
222
222
  * @public
223
223
  */
224
- Weight?: number;
224
+ Weight?: number | undefined;
225
225
  }
226
226
  /**
227
227
  * <p>Information about the target group stickiness for a rule.</p>
@@ -232,13 +232,13 @@ export interface TargetGroupStickinessConfig {
232
232
  * <p>Indicates whether target group stickiness is enabled.</p>
233
233
  * @public
234
234
  */
235
- Enabled?: boolean;
235
+ Enabled?: boolean | undefined;
236
236
  /**
237
237
  * <p>The time period, in seconds, during which requests from a client should be routed to the
238
238
  * same target group. The range is 1-604800 seconds (7 days).</p>
239
239
  * @public
240
240
  */
241
- DurationSeconds?: number;
241
+ DurationSeconds?: number | undefined;
242
242
  }
243
243
  /**
244
244
  * <p>Information about a forward action.</p>
@@ -250,12 +250,12 @@ export interface ForwardActionConfig {
250
250
  * group.</p>
251
251
  * @public
252
252
  */
253
- TargetGroups?: TargetGroupTuple[];
253
+ TargetGroups?: TargetGroupTuple[] | undefined;
254
254
  /**
255
255
  * <p>The target group stickiness for the rule.</p>
256
256
  * @public
257
257
  */
258
- TargetGroupStickinessConfig?: TargetGroupStickinessConfig;
258
+ TargetGroupStickinessConfig?: TargetGroupStickinessConfig | undefined;
259
259
  }
260
260
  /**
261
261
  * @public
@@ -302,31 +302,31 @@ export interface RedirectActionConfig {
302
302
  * HTTP to HTTPS, and HTTPS to HTTPS. You can't redirect HTTPS to HTTP.</p>
303
303
  * @public
304
304
  */
305
- Protocol?: string;
305
+ Protocol?: string | undefined;
306
306
  /**
307
307
  * <p>The port. You can specify a value from 1 to 65535 or #\{port\}.</p>
308
308
  * @public
309
309
  */
310
- Port?: string;
310
+ Port?: string | undefined;
311
311
  /**
312
312
  * <p>The hostname. This component is not percent-encoded. The hostname can contain
313
313
  * #\{host\}.</p>
314
314
  * @public
315
315
  */
316
- Host?: string;
316
+ Host?: string | undefined;
317
317
  /**
318
318
  * <p>The absolute path, starting with the leading "/". This component is not percent-encoded.
319
319
  * The path can contain #\{host\}, #\{path\}, and #\{port\}.</p>
320
320
  * @public
321
321
  */
322
- Path?: string;
322
+ Path?: string | undefined;
323
323
  /**
324
324
  * <p>The query parameters, URL-encoded when necessary, but not percent-encoded. Do not include
325
325
  * the leading "?", as it is automatically added. You can specify any of the reserved
326
326
  * keywords.</p>
327
327
  * @public
328
328
  */
329
- Query?: string;
329
+ Query?: string | undefined;
330
330
  /**
331
331
  * <p>The HTTP redirect code. The redirect is either permanent (HTTP 301) or temporary (HTTP
332
332
  * 302).</p>
@@ -368,37 +368,37 @@ export interface Action {
368
368
  * target groups, use <code>ForwardConfig</code> instead.</p>
369
369
  * @public
370
370
  */
371
- TargetGroupArn?: string;
371
+ TargetGroupArn?: string | undefined;
372
372
  /**
373
373
  * <p>[HTTPS listeners] Information about an identity provider that is compliant with OpenID
374
374
  * Connect (OIDC). Specify only when <code>Type</code> is <code>authenticate-oidc</code>.</p>
375
375
  * @public
376
376
  */
377
- AuthenticateOidcConfig?: AuthenticateOidcActionConfig;
377
+ AuthenticateOidcConfig?: AuthenticateOidcActionConfig | undefined;
378
378
  /**
379
379
  * <p>[HTTPS listeners] Information for using Amazon Cognito to authenticate users. Specify only
380
380
  * when <code>Type</code> is <code>authenticate-cognito</code>.</p>
381
381
  * @public
382
382
  */
383
- AuthenticateCognitoConfig?: AuthenticateCognitoActionConfig;
383
+ AuthenticateCognitoConfig?: AuthenticateCognitoActionConfig | undefined;
384
384
  /**
385
385
  * <p>The order for the action. This value is required for rules with multiple actions. The
386
386
  * action with the lowest value for order is performed first.</p>
387
387
  * @public
388
388
  */
389
- Order?: number;
389
+ Order?: number | undefined;
390
390
  /**
391
391
  * <p>[Application Load Balancer] Information for creating a redirect action. Specify only when
392
392
  * <code>Type</code> is <code>redirect</code>.</p>
393
393
  * @public
394
394
  */
395
- RedirectConfig?: RedirectActionConfig;
395
+ RedirectConfig?: RedirectActionConfig | undefined;
396
396
  /**
397
397
  * <p>[Application Load Balancer] Information for creating an action that returns a custom HTTP
398
398
  * response. Specify only when <code>Type</code> is <code>fixed-response</code>.</p>
399
399
  * @public
400
400
  */
401
- FixedResponseConfig?: FixedResponseActionConfig;
401
+ FixedResponseConfig?: FixedResponseActionConfig | undefined;
402
402
  /**
403
403
  * <p>Information for creating an action that distributes requests among one or more target
404
404
  * groups. For Network Load Balancers, you can specify a single target group. Specify only when
@@ -408,7 +408,7 @@ export interface Action {
408
408
  * <code>TargetGroupArn</code>.</p>
409
409
  * @public
410
410
  */
411
- ForwardConfig?: ForwardActionConfig;
411
+ ForwardConfig?: ForwardActionConfig | undefined;
412
412
  }
413
413
  /**
414
414
  * <p>Information about an SSL server certificate.</p>
@@ -419,14 +419,14 @@ export interface Certificate {
419
419
  * <p>The Amazon Resource Name (ARN) of the certificate.</p>
420
420
  * @public
421
421
  */
422
- CertificateArn?: string;
422
+ CertificateArn?: string | undefined;
423
423
  /**
424
424
  * <p>Indicates whether the certificate is the default certificate. Do not set this value when
425
425
  * specifying a certificate as an input. This value is not included in the output when describing
426
426
  * a listener, but is included when describing listener certificates.</p>
427
427
  * @public
428
428
  */
429
- IsDefault?: boolean;
429
+ IsDefault?: boolean | undefined;
430
430
  }
431
431
  /**
432
432
  * @public
@@ -453,7 +453,7 @@ export interface AddListenerCertificatesOutput {
453
453
  * <p>Information about the certificates in the certificate list.</p>
454
454
  * @public
455
455
  */
456
- Certificates?: Certificate[];
456
+ Certificates?: Certificate[] | undefined;
457
457
  }
458
458
  /**
459
459
  * <p>The specified certificate does not exist.</p>
@@ -462,7 +462,7 @@ export interface AddListenerCertificatesOutput {
462
462
  export declare class CertificateNotFoundException extends __BaseException {
463
463
  readonly name: "CertificateNotFoundException";
464
464
  readonly $fault: "client";
465
- Message?: string;
465
+ Message?: string | undefined;
466
466
  /**
467
467
  * @internal
468
468
  */
@@ -475,7 +475,7 @@ export declare class CertificateNotFoundException extends __BaseException {
475
475
  export declare class ListenerNotFoundException extends __BaseException {
476
476
  readonly name: "ListenerNotFoundException";
477
477
  readonly $fault: "client";
478
- Message?: string;
478
+ Message?: string | undefined;
479
479
  /**
480
480
  * @internal
481
481
  */
@@ -488,7 +488,7 @@ export declare class ListenerNotFoundException extends __BaseException {
488
488
  export declare class TooManyCertificatesException extends __BaseException {
489
489
  readonly name: "TooManyCertificatesException";
490
490
  readonly $fault: "client";
491
- Message?: string;
491
+ Message?: string | undefined;
492
492
  /**
493
493
  * @internal
494
494
  */
@@ -508,7 +508,7 @@ export interface Tag {
508
508
  * <p>The value of the tag.</p>
509
509
  * @public
510
510
  */
511
- Value?: string;
511
+ Value?: string | undefined;
512
512
  }
513
513
  /**
514
514
  * @public
@@ -537,7 +537,7 @@ export interface AddTagsOutput {
537
537
  export declare class DuplicateTagKeysException extends __BaseException {
538
538
  readonly name: "DuplicateTagKeysException";
539
539
  readonly $fault: "client";
540
- Message?: string;
540
+ Message?: string | undefined;
541
541
  /**
542
542
  * @internal
543
543
  */
@@ -550,7 +550,7 @@ export declare class DuplicateTagKeysException extends __BaseException {
550
550
  export declare class LoadBalancerNotFoundException extends __BaseException {
551
551
  readonly name: "LoadBalancerNotFoundException";
552
552
  readonly $fault: "client";
553
- Message?: string;
553
+ Message?: string | undefined;
554
554
  /**
555
555
  * @internal
556
556
  */
@@ -563,7 +563,7 @@ export declare class LoadBalancerNotFoundException extends __BaseException {
563
563
  export declare class RuleNotFoundException extends __BaseException {
564
564
  readonly name: "RuleNotFoundException";
565
565
  readonly $fault: "client";
566
- Message?: string;
566
+ Message?: string | undefined;
567
567
  /**
568
568
  * @internal
569
569
  */
@@ -576,7 +576,7 @@ export declare class RuleNotFoundException extends __BaseException {
576
576
  export declare class TargetGroupNotFoundException extends __BaseException {
577
577
  readonly name: "TargetGroupNotFoundException";
578
578
  readonly $fault: "client";
579
- Message?: string;
579
+ Message?: string | undefined;
580
580
  /**
581
581
  * @internal
582
582
  */
@@ -589,7 +589,7 @@ export declare class TargetGroupNotFoundException extends __BaseException {
589
589
  export declare class TooManyTagsException extends __BaseException {
590
590
  readonly name: "TooManyTagsException";
591
591
  readonly $fault: "client";
592
- Message?: string;
592
+ Message?: string | undefined;
593
593
  /**
594
594
  * @internal
595
595
  */
@@ -602,7 +602,7 @@ export declare class TooManyTagsException extends __BaseException {
602
602
  export declare class TrustStoreNotFoundException extends __BaseException {
603
603
  readonly name: "TrustStoreNotFoundException";
604
604
  readonly $fault: "client";
605
- Message?: string;
605
+ Message?: string | undefined;
606
606
  /**
607
607
  * @internal
608
608
  */
@@ -628,22 +628,22 @@ export interface RevocationContent {
628
628
  * <p>The Amazon S3 bucket for the revocation file.</p>
629
629
  * @public
630
630
  */
631
- S3Bucket?: string;
631
+ S3Bucket?: string | undefined;
632
632
  /**
633
633
  * <p>The Amazon S3 path for the revocation file.</p>
634
634
  * @public
635
635
  */
636
- S3Key?: string;
636
+ S3Key?: string | undefined;
637
637
  /**
638
638
  * <p>The Amazon S3 object version of the revocation file.</p>
639
639
  * @public
640
640
  */
641
- S3ObjectVersion?: string;
641
+ S3ObjectVersion?: string | undefined;
642
642
  /**
643
643
  * <p>The type of revocation file.</p>
644
644
  * @public
645
645
  */
646
- RevocationType?: RevocationType;
646
+ RevocationType?: RevocationType | undefined;
647
647
  }
648
648
  /**
649
649
  * @public
@@ -658,7 +658,7 @@ export interface AddTrustStoreRevocationsInput {
658
658
  * <p>The revocation file to add.</p>
659
659
  * @public
660
660
  */
661
- RevocationContents?: RevocationContent[];
661
+ RevocationContents?: RevocationContent[] | undefined;
662
662
  }
663
663
  /**
664
664
  * <p>Information about a revocation file in use by a trust store.</p>
@@ -669,22 +669,22 @@ export interface TrustStoreRevocation {
669
669
  * <p>The Amazon Resource Name (ARN) of the trust store.</p>
670
670
  * @public
671
671
  */
672
- TrustStoreArn?: string;
672
+ TrustStoreArn?: string | undefined;
673
673
  /**
674
674
  * <p>The revocation ID of the revocation file.</p>
675
675
  * @public
676
676
  */
677
- RevocationId?: number;
677
+ RevocationId?: number | undefined;
678
678
  /**
679
679
  * <p>The type of revocation file.</p>
680
680
  * @public
681
681
  */
682
- RevocationType?: RevocationType;
682
+ RevocationType?: RevocationType | undefined;
683
683
  /**
684
684
  * <p>The number of revoked certificates.</p>
685
685
  * @public
686
686
  */
687
- NumberOfRevokedEntries?: number;
687
+ NumberOfRevokedEntries?: number | undefined;
688
688
  }
689
689
  /**
690
690
  * @public
@@ -694,7 +694,7 @@ export interface AddTrustStoreRevocationsOutput {
694
694
  * <p>Information about the revocation file added to the trust store.</p>
695
695
  * @public
696
696
  */
697
- TrustStoreRevocations?: TrustStoreRevocation[];
697
+ TrustStoreRevocations?: TrustStoreRevocation[] | undefined;
698
698
  }
699
699
  /**
700
700
  * <p>The provided revocation file is an invalid format, or uses an incorrect algorithm.</p>
@@ -703,7 +703,7 @@ export interface AddTrustStoreRevocationsOutput {
703
703
  export declare class InvalidRevocationContentException extends __BaseException {
704
704
  readonly name: "InvalidRevocationContentException";
705
705
  readonly $fault: "client";
706
- Message?: string;
706
+ Message?: string | undefined;
707
707
  /**
708
708
  * @internal
709
709
  */
@@ -716,7 +716,7 @@ export declare class InvalidRevocationContentException extends __BaseException {
716
716
  export declare class RevocationContentNotFoundException extends __BaseException {
717
717
  readonly name: "RevocationContentNotFoundException";
718
718
  readonly $fault: "client";
719
- Message?: string;
719
+ Message?: string | undefined;
720
720
  /**
721
721
  * @internal
722
722
  */
@@ -729,7 +729,7 @@ export declare class RevocationContentNotFoundException extends __BaseException
729
729
  export declare class TooManyTrustStoreRevocationEntriesException extends __BaseException {
730
730
  readonly name: "TooManyTrustStoreRevocationEntriesException";
731
731
  readonly $fault: "client";
732
- Message?: string;
732
+ Message?: string | undefined;
733
733
  /**
734
734
  * @internal
735
735
  */
@@ -772,17 +772,17 @@ export interface AdministrativeOverride {
772
772
  * <p>The state of the override.</p>
773
773
  * @public
774
774
  */
775
- State?: TargetAdministrativeOverrideStateEnum;
775
+ State?: TargetAdministrativeOverrideStateEnum | undefined;
776
776
  /**
777
777
  * <p>The reason code for the state.</p>
778
778
  * @public
779
779
  */
780
- Reason?: TargetAdministrativeOverrideReasonEnum;
780
+ Reason?: TargetAdministrativeOverrideReasonEnum | undefined;
781
781
  /**
782
782
  * <p>A description of the override state that provides additional details.</p>
783
783
  * @public
784
784
  */
785
- Description?: string;
785
+ Description?: string | undefined;
786
786
  }
787
787
  /**
788
788
  * <p>The specified allocation ID does not exist.</p>
@@ -791,7 +791,7 @@ export interface AdministrativeOverride {
791
791
  export declare class AllocationIdNotFoundException extends __BaseException {
792
792
  readonly name: "AllocationIdNotFoundException";
793
793
  readonly $fault: "client";
794
- Message?: string;
794
+ Message?: string | undefined;
795
795
  /**
796
796
  * @internal
797
797
  */
@@ -804,7 +804,7 @@ export declare class AllocationIdNotFoundException extends __BaseException {
804
804
  export declare class ALPNPolicyNotSupportedException extends __BaseException {
805
805
  readonly name: "ALPNPolicyNotSupportedException";
806
806
  readonly $fault: "client";
807
- Message?: string;
807
+ Message?: string | undefined;
808
808
  /**
809
809
  * @internal
810
810
  */
@@ -843,12 +843,12 @@ export interface AnomalyDetection {
843
843
  * <p>The latest anomaly detection result.</p>
844
844
  * @public
845
845
  */
846
- Result?: AnomalyResultEnum;
846
+ Result?: AnomalyResultEnum | undefined;
847
847
  /**
848
848
  * <p>Indicates whether anomaly mitigation is in progress.</p>
849
849
  * @public
850
850
  */
851
- MitigationInEffect?: MitigationInEffectEnum;
851
+ MitigationInEffect?: MitigationInEffectEnum | undefined;
852
852
  }
853
853
  /**
854
854
  * <p>Information about a static IP address for a load balancer.</p>
@@ -859,23 +859,23 @@ export interface LoadBalancerAddress {
859
859
  * <p>The static IP address.</p>
860
860
  * @public
861
861
  */
862
- IpAddress?: string;
862
+ IpAddress?: string | undefined;
863
863
  /**
864
864
  * <p>[Network Load Balancers] The allocation ID of the Elastic IP address for an
865
865
  * internal-facing load balancer.</p>
866
866
  * @public
867
867
  */
868
- AllocationId?: string;
868
+ AllocationId?: string | undefined;
869
869
  /**
870
870
  * <p>[Network Load Balancers] The private IPv4 address for an internal load balancer.</p>
871
871
  * @public
872
872
  */
873
- PrivateIPv4Address?: string;
873
+ PrivateIPv4Address?: string | undefined;
874
874
  /**
875
875
  * <p>[Network Load Balancers] The IPv6 address.</p>
876
876
  * @public
877
877
  */
878
- IPv6Address?: string;
878
+ IPv6Address?: string | undefined;
879
879
  }
880
880
  /**
881
881
  * <p>Information about an Availability Zone.</p>
@@ -886,17 +886,17 @@ export interface AvailabilityZone {
886
886
  * <p>The name of the Availability Zone.</p>
887
887
  * @public
888
888
  */
889
- ZoneName?: string;
889
+ ZoneName?: string | undefined;
890
890
  /**
891
891
  * <p>The ID of the subnet. You can specify one subnet per Availability Zone.</p>
892
892
  * @public
893
893
  */
894
- SubnetId?: string;
894
+ SubnetId?: string | undefined;
895
895
  /**
896
896
  * <p>[Application Load Balancers on Outposts] The ID of the Outpost.</p>
897
897
  * @public
898
898
  */
899
- OutpostId?: string;
899
+ OutpostId?: string | undefined;
900
900
  /**
901
901
  * <p>[Network Load Balancers] If you need static IP addresses for your load balancer, you can
902
902
  * specify one Elastic IP address per Availability Zone when you create an internal-facing load
@@ -904,7 +904,7 @@ export interface AvailabilityZone {
904
904
  * range of the subnet.</p>
905
905
  * @public
906
906
  */
907
- LoadBalancerAddresses?: LoadBalancerAddress[];
907
+ LoadBalancerAddresses?: LoadBalancerAddress[] | undefined;
908
908
  /**
909
909
  * <p>[Network Load Balancers with UDP listeners] The IPv6 prefixes to use for source NAT.
910
910
  * For each subnet, specify an IPv6 prefix (/80 netmask) from the subnet CIDR block or
@@ -912,7 +912,7 @@ export interface AvailabilityZone {
912
912
  * block.</p>
913
913
  * @public
914
914
  */
915
- SourceNatIpv6Prefixes?: string[];
915
+ SourceNatIpv6Prefixes?: string[] | undefined;
916
916
  }
917
917
  /**
918
918
  * <p>The specified Availability Zone is not supported.</p>
@@ -921,7 +921,7 @@ export interface AvailabilityZone {
921
921
  export declare class AvailabilityZoneNotSupportedException extends __BaseException {
922
922
  readonly name: "AvailabilityZoneNotSupportedException";
923
923
  readonly $fault: "client";
924
- Message?: string;
924
+ Message?: string | undefined;
925
925
  /**
926
926
  * @internal
927
927
  */
@@ -934,7 +934,7 @@ export declare class AvailabilityZoneNotSupportedException extends __BaseExcepti
934
934
  export declare class CaCertificatesBundleNotFoundException extends __BaseException {
935
935
  readonly name: "CaCertificatesBundleNotFoundException";
936
936
  readonly $fault: "client";
937
- Message?: string;
937
+ Message?: string | undefined;
938
938
  /**
939
939
  * @internal
940
940
  */
@@ -949,12 +949,12 @@ export interface Cipher {
949
949
  * <p>The name of the cipher.</p>
950
950
  * @public
951
951
  */
952
- Name?: string;
952
+ Name?: string | undefined;
953
953
  /**
954
954
  * <p>The priority of the cipher.</p>
955
955
  * @public
956
956
  */
957
- Priority?: number;
957
+ Priority?: number | undefined;
958
958
  }
959
959
  /**
960
960
  * @public
@@ -979,22 +979,22 @@ export interface MutualAuthenticationAttributes {
979
979
  * <code>off</code>.</p>
980
980
  * @public
981
981
  */
982
- Mode?: string;
982
+ Mode?: string | undefined;
983
983
  /**
984
984
  * <p>The Amazon Resource Name (ARN) of the trust store.</p>
985
985
  * @public
986
986
  */
987
- TrustStoreArn?: string;
987
+ TrustStoreArn?: string | undefined;
988
988
  /**
989
989
  * <p>Indicates whether expired client certificates are ignored.</p>
990
990
  * @public
991
991
  */
992
- IgnoreClientCertificateExpiry?: boolean;
992
+ IgnoreClientCertificateExpiry?: boolean | undefined;
993
993
  /**
994
994
  * <p>Indicates a shared trust stores association status.</p>
995
995
  * @public
996
996
  */
997
- TrustStoreAssociationStatus?: TrustStoreAssociationStatusEnum;
997
+ TrustStoreAssociationStatus?: TrustStoreAssociationStatusEnum | undefined;
998
998
  }
999
999
  /**
1000
1000
  * @public
@@ -1030,13 +1030,13 @@ export interface CreateListenerInput {
1030
1030
  * Balancer.</p>
1031
1031
  * @public
1032
1032
  */
1033
- Protocol?: ProtocolEnum;
1033
+ Protocol?: ProtocolEnum | undefined;
1034
1034
  /**
1035
1035
  * <p>The port on which the load balancer is listening. You can't specify a port for a Gateway
1036
1036
  * Load Balancer.</p>
1037
1037
  * @public
1038
1038
  */
1039
- Port?: number;
1039
+ Port?: number | undefined;
1040
1040
  /**
1041
1041
  * <p>[HTTPS and TLS listeners] The security policy that defines which protocols and ciphers are
1042
1042
  * supported.</p>
@@ -1044,14 +1044,14 @@ export interface CreateListenerInput {
1044
1044
  * <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/create-tls-listener.html#describe-ssl-policies">Security policies</a> in the <i>Network Load Balancers Guide</i>.</p>
1045
1045
  * @public
1046
1046
  */
1047
- SslPolicy?: string;
1047
+ SslPolicy?: string | undefined;
1048
1048
  /**
1049
1049
  * <p>[HTTPS and TLS listeners] The default certificate for the listener. You must provide
1050
1050
  * exactly one certificate. Set <code>CertificateArn</code> to the certificate ARN but do not set
1051
1051
  * <code>IsDefault</code>.</p>
1052
1052
  * @public
1053
1053
  */
1054
- Certificates?: Certificate[];
1054
+ Certificates?: Certificate[] | undefined;
1055
1055
  /**
1056
1056
  * <p>The actions for the default rule.</p>
1057
1057
  * @public
@@ -1091,17 +1091,17 @@ export interface CreateListenerInput {
1091
1091
  * policies</a> in the <i>Network Load Balancers Guide</i>.</p>
1092
1092
  * @public
1093
1093
  */
1094
- AlpnPolicy?: string[];
1094
+ AlpnPolicy?: string[] | undefined;
1095
1095
  /**
1096
1096
  * <p>The tags to assign to the listener.</p>
1097
1097
  * @public
1098
1098
  */
1099
- Tags?: Tag[];
1099
+ Tags?: Tag[] | undefined;
1100
1100
  /**
1101
1101
  * <p>The mutual authentication configuration information.</p>
1102
1102
  * @public
1103
1103
  */
1104
- MutualAuthentication?: MutualAuthenticationAttributes;
1104
+ MutualAuthentication?: MutualAuthenticationAttributes | undefined;
1105
1105
  }
1106
1106
  /**
1107
1107
  * <p>Information about a listener.</p>
@@ -1112,49 +1112,49 @@ export interface Listener {
1112
1112
  * <p>The Amazon Resource Name (ARN) of the listener.</p>
1113
1113
  * @public
1114
1114
  */
1115
- ListenerArn?: string;
1115
+ ListenerArn?: string | undefined;
1116
1116
  /**
1117
1117
  * <p>The Amazon Resource Name (ARN) of the load balancer.</p>
1118
1118
  * @public
1119
1119
  */
1120
- LoadBalancerArn?: string;
1120
+ LoadBalancerArn?: string | undefined;
1121
1121
  /**
1122
1122
  * <p>The port on which the load balancer is listening.</p>
1123
1123
  * @public
1124
1124
  */
1125
- Port?: number;
1125
+ Port?: number | undefined;
1126
1126
  /**
1127
1127
  * <p>The protocol for connections from clients to the load balancer.</p>
1128
1128
  * @public
1129
1129
  */
1130
- Protocol?: ProtocolEnum;
1130
+ Protocol?: ProtocolEnum | undefined;
1131
1131
  /**
1132
1132
  * <p>[HTTPS or TLS listener] The default certificate for the listener.</p>
1133
1133
  * @public
1134
1134
  */
1135
- Certificates?: Certificate[];
1135
+ Certificates?: Certificate[] | undefined;
1136
1136
  /**
1137
1137
  * <p>[HTTPS or TLS listener] The security policy that defines which protocols and ciphers are
1138
1138
  * supported.</p>
1139
1139
  * @public
1140
1140
  */
1141
- SslPolicy?: string;
1141
+ SslPolicy?: string | undefined;
1142
1142
  /**
1143
1143
  * <p>The default actions for the listener.</p>
1144
1144
  * @public
1145
1145
  */
1146
- DefaultActions?: Action[];
1146
+ DefaultActions?: Action[] | undefined;
1147
1147
  /**
1148
1148
  * <p>[TLS listener] The name of the Application-Layer Protocol Negotiation (ALPN)
1149
1149
  * policy.</p>
1150
1150
  * @public
1151
1151
  */
1152
- AlpnPolicy?: string[];
1152
+ AlpnPolicy?: string[] | undefined;
1153
1153
  /**
1154
1154
  * <p>The mutual authentication configuration information.</p>
1155
1155
  * @public
1156
1156
  */
1157
- MutualAuthentication?: MutualAuthenticationAttributes;
1157
+ MutualAuthentication?: MutualAuthenticationAttributes | undefined;
1158
1158
  }
1159
1159
  /**
1160
1160
  * @public
@@ -1164,7 +1164,7 @@ export interface CreateListenerOutput {
1164
1164
  * <p>Information about the listener.</p>
1165
1165
  * @public
1166
1166
  */
1167
- Listeners?: Listener[];
1167
+ Listeners?: Listener[] | undefined;
1168
1168
  }
1169
1169
  /**
1170
1170
  * <p>A listener with the specified port already exists.</p>
@@ -1173,7 +1173,7 @@ export interface CreateListenerOutput {
1173
1173
  export declare class DuplicateListenerException extends __BaseException {
1174
1174
  readonly name: "DuplicateListenerException";
1175
1175
  readonly $fault: "client";
1176
- Message?: string;
1176
+ Message?: string | undefined;
1177
1177
  /**
1178
1178
  * @internal
1179
1179
  */
@@ -1186,7 +1186,7 @@ export declare class DuplicateListenerException extends __BaseException {
1186
1186
  export declare class IncompatibleProtocolsException extends __BaseException {
1187
1187
  readonly name: "IncompatibleProtocolsException";
1188
1188
  readonly $fault: "client";
1189
- Message?: string;
1189
+ Message?: string | undefined;
1190
1190
  /**
1191
1191
  * @internal
1192
1192
  */
@@ -1199,7 +1199,7 @@ export declare class IncompatibleProtocolsException extends __BaseException {
1199
1199
  export declare class InvalidConfigurationRequestException extends __BaseException {
1200
1200
  readonly name: "InvalidConfigurationRequestException";
1201
1201
  readonly $fault: "client";
1202
- Message?: string;
1202
+ Message?: string | undefined;
1203
1203
  /**
1204
1204
  * @internal
1205
1205
  */
@@ -1212,7 +1212,7 @@ export declare class InvalidConfigurationRequestException extends __BaseExceptio
1212
1212
  export declare class InvalidLoadBalancerActionException extends __BaseException {
1213
1213
  readonly name: "InvalidLoadBalancerActionException";
1214
1214
  readonly $fault: "client";
1215
- Message?: string;
1215
+ Message?: string | undefined;
1216
1216
  /**
1217
1217
  * @internal
1218
1218
  */
@@ -1225,7 +1225,7 @@ export declare class InvalidLoadBalancerActionException extends __BaseException
1225
1225
  export declare class SSLPolicyNotFoundException extends __BaseException {
1226
1226
  readonly name: "SSLPolicyNotFoundException";
1227
1227
  readonly $fault: "client";
1228
- Message?: string;
1228
+ Message?: string | undefined;
1229
1229
  /**
1230
1230
  * @internal
1231
1231
  */
@@ -1238,7 +1238,7 @@ export declare class SSLPolicyNotFoundException extends __BaseException {
1238
1238
  export declare class TargetGroupAssociationLimitException extends __BaseException {
1239
1239
  readonly name: "TargetGroupAssociationLimitException";
1240
1240
  readonly $fault: "client";
1241
- Message?: string;
1241
+ Message?: string | undefined;
1242
1242
  /**
1243
1243
  * @internal
1244
1244
  */
@@ -1251,7 +1251,7 @@ export declare class TargetGroupAssociationLimitException extends __BaseExceptio
1251
1251
  export declare class TooManyActionsException extends __BaseException {
1252
1252
  readonly name: "TooManyActionsException";
1253
1253
  readonly $fault: "client";
1254
- Message?: string;
1254
+ Message?: string | undefined;
1255
1255
  /**
1256
1256
  * @internal
1257
1257
  */
@@ -1264,7 +1264,7 @@ export declare class TooManyActionsException extends __BaseException {
1264
1264
  export declare class TooManyListenersException extends __BaseException {
1265
1265
  readonly name: "TooManyListenersException";
1266
1266
  readonly $fault: "client";
1267
- Message?: string;
1267
+ Message?: string | undefined;
1268
1268
  /**
1269
1269
  * @internal
1270
1270
  */
@@ -1278,7 +1278,7 @@ export declare class TooManyListenersException extends __BaseException {
1278
1278
  export declare class TooManyRegistrationsForTargetIdException extends __BaseException {
1279
1279
  readonly name: "TooManyRegistrationsForTargetIdException";
1280
1280
  readonly $fault: "client";
1281
- Message?: string;
1281
+ Message?: string | undefined;
1282
1282
  /**
1283
1283
  * @internal
1284
1284
  */
@@ -1291,7 +1291,7 @@ export declare class TooManyRegistrationsForTargetIdException extends __BaseExce
1291
1291
  export declare class TooManyTargetsException extends __BaseException {
1292
1292
  readonly name: "TooManyTargetsException";
1293
1293
  readonly $fault: "client";
1294
- Message?: string;
1294
+ Message?: string | undefined;
1295
1295
  /**
1296
1296
  * @internal
1297
1297
  */
@@ -1306,7 +1306,7 @@ export declare class TooManyTargetsException extends __BaseException {
1306
1306
  export declare class TooManyUniqueTargetGroupsPerLoadBalancerException extends __BaseException {
1307
1307
  readonly name: "TooManyUniqueTargetGroupsPerLoadBalancerException";
1308
1308
  readonly $fault: "client";
1309
- Message?: string;
1309
+ Message?: string | undefined;
1310
1310
  /**
1311
1311
  * @internal
1312
1312
  */
@@ -1319,7 +1319,7 @@ export declare class TooManyUniqueTargetGroupsPerLoadBalancerException extends _
1319
1319
  export declare class TrustStoreNotReadyException extends __BaseException {
1320
1320
  readonly name: "TrustStoreNotReadyException";
1321
1321
  readonly $fault: "client";
1322
- Message?: string;
1322
+ Message?: string | undefined;
1323
1323
  /**
1324
1324
  * @internal
1325
1325
  */
@@ -1332,7 +1332,7 @@ export declare class TrustStoreNotReadyException extends __BaseException {
1332
1332
  export declare class UnsupportedProtocolException extends __BaseException {
1333
1333
  readonly name: "UnsupportedProtocolException";
1334
1334
  readonly $fault: "client";
1335
- Message?: string;
1335
+ Message?: string | undefined;
1336
1336
  /**
1337
1337
  * @internal
1338
1338
  */
@@ -1384,30 +1384,30 @@ export interface SubnetMapping {
1384
1384
  * <p>The ID of the subnet.</p>
1385
1385
  * @public
1386
1386
  */
1387
- SubnetId?: string;
1387
+ SubnetId?: string | undefined;
1388
1388
  /**
1389
1389
  * <p>[Network Load Balancers] The allocation ID of the Elastic IP address for an
1390
1390
  * internet-facing load balancer.</p>
1391
1391
  * @public
1392
1392
  */
1393
- AllocationId?: string;
1393
+ AllocationId?: string | undefined;
1394
1394
  /**
1395
1395
  * <p>[Network Load Balancers] The private IPv4 address for an internal load balancer.</p>
1396
1396
  * @public
1397
1397
  */
1398
- PrivateIPv4Address?: string;
1398
+ PrivateIPv4Address?: string | undefined;
1399
1399
  /**
1400
1400
  * <p>[Network Load Balancers] The IPv6 address.</p>
1401
1401
  * @public
1402
1402
  */
1403
- IPv6Address?: string;
1403
+ IPv6Address?: string | undefined;
1404
1404
  /**
1405
1405
  * <p>[Network Load Balancers with UDP listeners] The IPv6 prefix to use for source NAT.
1406
1406
  * Specify an IPv6 prefix (/80 netmask) from the subnet CIDR block or <code>auto_assigned</code>
1407
1407
  * to use an IPv6 prefix selected at random from the subnet CIDR block.</p>
1408
1408
  * @public
1409
1409
  */
1410
- SourceNatIpv6Prefix?: string;
1410
+ SourceNatIpv6Prefix?: string | undefined;
1411
1411
  }
1412
1412
  /**
1413
1413
  * @public
@@ -1447,7 +1447,7 @@ export interface CreateLoadBalancerInput {
1447
1447
  * Availability Zones.</p>
1448
1448
  * @public
1449
1449
  */
1450
- Subnets?: string[];
1450
+ Subnets?: string[] | undefined;
1451
1451
  /**
1452
1452
  * <p>The IDs of the subnets. You can specify only one subnet per Availability Zone. You
1453
1453
  * must specify either subnets or subnet mappings, but not both.</p>
@@ -1465,13 +1465,13 @@ export interface CreateLoadBalancerInput {
1465
1465
  * can't specify Elastic IP addresses for your subnets.</p>
1466
1466
  * @public
1467
1467
  */
1468
- SubnetMappings?: SubnetMapping[];
1468
+ SubnetMappings?: SubnetMapping[] | undefined;
1469
1469
  /**
1470
1470
  * <p>[Application Load Balancers and Network Load Balancers] The IDs of the security groups for
1471
1471
  * the load balancer.</p>
1472
1472
  * @public
1473
1473
  */
1474
- SecurityGroups?: string[];
1474
+ SecurityGroups?: string[] | undefined;
1475
1475
  /**
1476
1476
  * <p>The nodes of an Internet-facing load balancer have public IP addresses. The DNS name of an
1477
1477
  * Internet-facing load balancer is publicly resolvable to the public IP addresses of the nodes.
@@ -1485,17 +1485,17 @@ export interface CreateLoadBalancerInput {
1485
1485
  * <p>You can't specify a scheme for a Gateway Load Balancer.</p>
1486
1486
  * @public
1487
1487
  */
1488
- Scheme?: LoadBalancerSchemeEnum;
1488
+ Scheme?: LoadBalancerSchemeEnum | undefined;
1489
1489
  /**
1490
1490
  * <p>The tags to assign to the load balancer.</p>
1491
1491
  * @public
1492
1492
  */
1493
- Tags?: Tag[];
1493
+ Tags?: Tag[] | undefined;
1494
1494
  /**
1495
1495
  * <p>The type of load balancer. The default is <code>application</code>.</p>
1496
1496
  * @public
1497
1497
  */
1498
- Type?: LoadBalancerTypeEnum;
1498
+ Type?: LoadBalancerTypeEnum | undefined;
1499
1499
  /**
1500
1500
  * <p>The IP address type. Internal load balancers must use <code>ipv4</code>.</p>
1501
1501
  * <p>[Application Load Balancers] The possible values are <code>ipv4</code> (IPv4 addresses),
@@ -1505,20 +1505,20 @@ export interface CreateLoadBalancerInput {
1505
1505
  * (IPv4 addresses) and <code>dualstack</code> (IPv4 and IPv6 addresses).</p>
1506
1506
  * @public
1507
1507
  */
1508
- IpAddressType?: IpAddressType;
1508
+ IpAddressType?: IpAddressType | undefined;
1509
1509
  /**
1510
1510
  * <p>[Application Load Balancers on Outposts] The ID of the customer-owned address pool (CoIP
1511
1511
  * pool).</p>
1512
1512
  * @public
1513
1513
  */
1514
- CustomerOwnedIpv4Pool?: string;
1514
+ CustomerOwnedIpv4Pool?: string | undefined;
1515
1515
  /**
1516
1516
  * <p>[Network Load Balancers with UDP listeners] Indicates whether to use an IPv6 prefix
1517
1517
  * from each subnet for source NAT. The IP address type must be <code>dualstack</code>.
1518
1518
  * The default value is <code>off</code>.</p>
1519
1519
  * @public
1520
1520
  */
1521
- EnablePrefixForIpv6SourceNat?: EnablePrefixForIpv6SourceNatEnum;
1521
+ EnablePrefixForIpv6SourceNat?: EnablePrefixForIpv6SourceNatEnum | undefined;
1522
1522
  }
1523
1523
  /**
1524
1524
  * @public
@@ -1547,12 +1547,12 @@ export interface LoadBalancerState {
1547
1547
  * set up, its state is <code>failed</code>.</p>
1548
1548
  * @public
1549
1549
  */
1550
- Code?: LoadBalancerStateEnum;
1550
+ Code?: LoadBalancerStateEnum | undefined;
1551
1551
  /**
1552
1552
  * <p>A description of the state.</p>
1553
1553
  * @public
1554
1554
  */
1555
- Reason?: string;
1555
+ Reason?: string | undefined;
1556
1556
  }
1557
1557
  /**
1558
1558
  * <p>Information about a load balancer.</p>
@@ -1563,27 +1563,27 @@ export interface LoadBalancer {
1563
1563
  * <p>The Amazon Resource Name (ARN) of the load balancer.</p>
1564
1564
  * @public
1565
1565
  */
1566
- LoadBalancerArn?: string;
1566
+ LoadBalancerArn?: string | undefined;
1567
1567
  /**
1568
1568
  * <p>The public DNS name of the load balancer.</p>
1569
1569
  * @public
1570
1570
  */
1571
- DNSName?: string;
1571
+ DNSName?: string | undefined;
1572
1572
  /**
1573
1573
  * <p>The ID of the Amazon Route 53 hosted zone associated with the load balancer.</p>
1574
1574
  * @public
1575
1575
  */
1576
- CanonicalHostedZoneId?: string;
1576
+ CanonicalHostedZoneId?: string | undefined;
1577
1577
  /**
1578
1578
  * <p>The date and time the load balancer was created.</p>
1579
1579
  * @public
1580
1580
  */
1581
- CreatedTime?: Date;
1581
+ CreatedTime?: Date | undefined;
1582
1582
  /**
1583
1583
  * <p>The name of the load balancer.</p>
1584
1584
  * @public
1585
1585
  */
1586
- LoadBalancerName?: string;
1586
+ LoadBalancerName?: string | undefined;
1587
1587
  /**
1588
1588
  * <p>The nodes of an Internet-facing load balancer have public IP addresses. The DNS name of an
1589
1589
  * Internet-facing load balancer is publicly resolvable to the public IP addresses of the nodes.
@@ -1595,32 +1595,32 @@ export interface LoadBalancer {
1595
1595
  * for the load balancer.</p>
1596
1596
  * @public
1597
1597
  */
1598
- Scheme?: LoadBalancerSchemeEnum;
1598
+ Scheme?: LoadBalancerSchemeEnum | undefined;
1599
1599
  /**
1600
1600
  * <p>The ID of the VPC for the load balancer.</p>
1601
1601
  * @public
1602
1602
  */
1603
- VpcId?: string;
1603
+ VpcId?: string | undefined;
1604
1604
  /**
1605
1605
  * <p>The state of the load balancer.</p>
1606
1606
  * @public
1607
1607
  */
1608
- State?: LoadBalancerState;
1608
+ State?: LoadBalancerState | undefined;
1609
1609
  /**
1610
1610
  * <p>The type of load balancer.</p>
1611
1611
  * @public
1612
1612
  */
1613
- Type?: LoadBalancerTypeEnum;
1613
+ Type?: LoadBalancerTypeEnum | undefined;
1614
1614
  /**
1615
1615
  * <p>The subnets for the load balancer.</p>
1616
1616
  * @public
1617
1617
  */
1618
- AvailabilityZones?: AvailabilityZone[];
1618
+ AvailabilityZones?: AvailabilityZone[] | undefined;
1619
1619
  /**
1620
1620
  * <p>The IDs of the security groups for the load balancer.</p>
1621
1621
  * @public
1622
1622
  */
1623
- SecurityGroups?: string[];
1623
+ SecurityGroups?: string[] | undefined;
1624
1624
  /**
1625
1625
  * <p>The type of IP addresses used for public or private connections by the subnets
1626
1626
  * attached to your load balancer.</p>
@@ -1631,25 +1631,25 @@ export interface LoadBalancer {
1631
1631
  * (IPv4 addresses) and <code>dualstack</code> (IPv4 and IPv6 addresses).</p>
1632
1632
  * @public
1633
1633
  */
1634
- IpAddressType?: IpAddressType;
1634
+ IpAddressType?: IpAddressType | undefined;
1635
1635
  /**
1636
1636
  * <p>[Application Load Balancers on Outposts] The ID of the customer-owned address pool.</p>
1637
1637
  * @public
1638
1638
  */
1639
- CustomerOwnedIpv4Pool?: string;
1639
+ CustomerOwnedIpv4Pool?: string | undefined;
1640
1640
  /**
1641
1641
  * <p>Indicates whether to evaluate inbound security group rules for traffic sent to a
1642
1642
  * Network Load Balancer through Amazon Web Services PrivateLink.</p>
1643
1643
  * @public
1644
1644
  */
1645
- EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: string;
1645
+ EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: string | undefined;
1646
1646
  /**
1647
1647
  * <p>[Network Load Balancers with UDP listeners] Indicates whether to use an IPv6 prefix
1648
1648
  * from each subnet for source NAT. The IP address type must be <code>dualstack</code>.
1649
1649
  * The default value is <code>off</code>.</p>
1650
1650
  * @public
1651
1651
  */
1652
- EnablePrefixForIpv6SourceNat?: EnablePrefixForIpv6SourceNatEnum;
1652
+ EnablePrefixForIpv6SourceNat?: EnablePrefixForIpv6SourceNatEnum | undefined;
1653
1653
  }
1654
1654
  /**
1655
1655
  * @public
@@ -1659,7 +1659,7 @@ export interface CreateLoadBalancerOutput {
1659
1659
  * <p>Information about the load balancer.</p>
1660
1660
  * @public
1661
1661
  */
1662
- LoadBalancers?: LoadBalancer[];
1662
+ LoadBalancers?: LoadBalancer[] | undefined;
1663
1663
  }
1664
1664
  /**
1665
1665
  * <p>A load balancer with the specified name already exists.</p>
@@ -1668,7 +1668,7 @@ export interface CreateLoadBalancerOutput {
1668
1668
  export declare class DuplicateLoadBalancerNameException extends __BaseException {
1669
1669
  readonly name: "DuplicateLoadBalancerNameException";
1670
1670
  readonly $fault: "client";
1671
- Message?: string;
1671
+ Message?: string | undefined;
1672
1672
  /**
1673
1673
  * @internal
1674
1674
  */
@@ -1681,7 +1681,7 @@ export declare class DuplicateLoadBalancerNameException extends __BaseException
1681
1681
  export declare class InvalidSchemeException extends __BaseException {
1682
1682
  readonly name: "InvalidSchemeException";
1683
1683
  readonly $fault: "client";
1684
- Message?: string;
1684
+ Message?: string | undefined;
1685
1685
  /**
1686
1686
  * @internal
1687
1687
  */
@@ -1694,7 +1694,7 @@ export declare class InvalidSchemeException extends __BaseException {
1694
1694
  export declare class InvalidSecurityGroupException extends __BaseException {
1695
1695
  readonly name: "InvalidSecurityGroupException";
1696
1696
  readonly $fault: "client";
1697
- Message?: string;
1697
+ Message?: string | undefined;
1698
1698
  /**
1699
1699
  * @internal
1700
1700
  */
@@ -1707,7 +1707,7 @@ export declare class InvalidSecurityGroupException extends __BaseException {
1707
1707
  export declare class InvalidSubnetException extends __BaseException {
1708
1708
  readonly name: "InvalidSubnetException";
1709
1709
  readonly $fault: "client";
1710
- Message?: string;
1710
+ Message?: string | undefined;
1711
1711
  /**
1712
1712
  * @internal
1713
1713
  */
@@ -1720,7 +1720,7 @@ export declare class InvalidSubnetException extends __BaseException {
1720
1720
  export declare class OperationNotPermittedException extends __BaseException {
1721
1721
  readonly name: "OperationNotPermittedException";
1722
1722
  readonly $fault: "client";
1723
- Message?: string;
1723
+ Message?: string | undefined;
1724
1724
  /**
1725
1725
  * @internal
1726
1726
  */
@@ -1733,7 +1733,7 @@ export declare class OperationNotPermittedException extends __BaseException {
1733
1733
  export declare class ResourceInUseException extends __BaseException {
1734
1734
  readonly name: "ResourceInUseException";
1735
1735
  readonly $fault: "client";
1736
- Message?: string;
1736
+ Message?: string | undefined;
1737
1737
  /**
1738
1738
  * @internal
1739
1739
  */
@@ -1746,7 +1746,7 @@ export declare class ResourceInUseException extends __BaseException {
1746
1746
  export declare class SubnetNotFoundException extends __BaseException {
1747
1747
  readonly name: "SubnetNotFoundException";
1748
1748
  readonly $fault: "client";
1749
- Message?: string;
1749
+ Message?: string | undefined;
1750
1750
  /**
1751
1751
  * @internal
1752
1752
  */
@@ -1760,7 +1760,7 @@ export declare class SubnetNotFoundException extends __BaseException {
1760
1760
  export declare class TooManyLoadBalancersException extends __BaseException {
1761
1761
  readonly name: "TooManyLoadBalancersException";
1762
1762
  readonly $fault: "client";
1763
- Message?: string;
1763
+ Message?: string | undefined;
1764
1764
  /**
1765
1765
  * @internal
1766
1766
  */
@@ -1779,7 +1779,7 @@ export interface HostHeaderConditionConfig {
1779
1779
  * the host name.</p>
1780
1780
  * @public
1781
1781
  */
1782
- Values?: string[];
1782
+ Values?: string[] | undefined;
1783
1783
  }
1784
1784
  /**
1785
1785
  * <p>Information about an HTTP header condition.</p>
@@ -1795,7 +1795,7 @@ export interface HttpHeaderConditionConfig {
1795
1795
  * <p>You can't use an HTTP header condition to specify the host header. Use <a>HostHeaderConditionConfig</a> to specify a host header condition.</p>
1796
1796
  * @public
1797
1797
  */
1798
- HttpHeaderName?: string;
1798
+ HttpHeaderName?: string | undefined;
1799
1799
  /**
1800
1800
  * <p>The strings to compare against the value of the HTTP header. The maximum size of
1801
1801
  * each string is 128 characters. The comparison strings are case insensitive. The following
@@ -1808,7 +1808,7 @@ export interface HttpHeaderConditionConfig {
1808
1808
  * condition per string.</p>
1809
1809
  * @public
1810
1810
  */
1811
- Values?: string[];
1811
+ Values?: string[] | undefined;
1812
1812
  }
1813
1813
  /**
1814
1814
  * <p>Information about an HTTP method condition.</p>
@@ -1827,7 +1827,7 @@ export interface HttpRequestMethodConditionConfig {
1827
1827
  * because the response to a HEAD request may be cached.</p>
1828
1828
  * @public
1829
1829
  */
1830
- Values?: string[];
1830
+ Values?: string[] | undefined;
1831
1831
  }
1832
1832
  /**
1833
1833
  * <p>Information about a path pattern condition.</p>
@@ -1843,7 +1843,7 @@ export interface PathPatternConditionConfig {
1843
1843
  * string. To compare against the query string, use <a>QueryStringConditionConfig</a>.</p>
1844
1844
  * @public
1845
1845
  */
1846
- Values?: string[];
1846
+ Values?: string[] | undefined;
1847
1847
  }
1848
1848
  /**
1849
1849
  * <p>Information about a key/value pair.</p>
@@ -1854,12 +1854,12 @@ export interface QueryStringKeyValuePair {
1854
1854
  * <p>The key. You can omit the key.</p>
1855
1855
  * @public
1856
1856
  */
1857
- Key?: string;
1857
+ Key?: string | undefined;
1858
1858
  /**
1859
1859
  * <p>The value.</p>
1860
1860
  * @public
1861
1861
  */
1862
- Value?: string;
1862
+ Value?: string | undefined;
1863
1863
  }
1864
1864
  /**
1865
1865
  * <p>Information about a query string condition.</p>
@@ -1880,7 +1880,7 @@ export interface QueryStringConditionConfig {
1880
1880
  * them is found in the query string.</p>
1881
1881
  * @public
1882
1882
  */
1883
- Values?: QueryStringKeyValuePair[];
1883
+ Values?: QueryStringKeyValuePair[] | undefined;
1884
1884
  }
1885
1885
  /**
1886
1886
  * <p>Information about a source IP condition.</p>
@@ -1900,7 +1900,7 @@ export interface SourceIpConditionConfig {
1900
1900
  * <p>The total number of values must be less than, or equal to five.</p>
1901
1901
  * @public
1902
1902
  */
1903
- Values?: string[];
1903
+ Values?: string[] | undefined;
1904
1904
  }
1905
1905
  /**
1906
1906
  * <p>Information about a condition for a rule.</p>
@@ -1950,7 +1950,7 @@ export interface RuleCondition {
1950
1950
  * </ul>
1951
1951
  * @public
1952
1952
  */
1953
- Field?: string;
1953
+ Field?: string | undefined;
1954
1954
  /**
1955
1955
  * <p>The condition value. Specify only when <code>Field</code> is <code>host-header</code> or
1956
1956
  * <code>path-pattern</code>. Alternatively, to specify multiple host names or multiple path
@@ -1996,43 +1996,43 @@ export interface RuleCondition {
1996
1996
  * </ul>
1997
1997
  * @public
1998
1998
  */
1999
- Values?: string[];
1999
+ Values?: string[] | undefined;
2000
2000
  /**
2001
2001
  * <p>Information for a host header condition. Specify only when <code>Field</code> is
2002
2002
  * <code>host-header</code>.</p>
2003
2003
  * @public
2004
2004
  */
2005
- HostHeaderConfig?: HostHeaderConditionConfig;
2005
+ HostHeaderConfig?: HostHeaderConditionConfig | undefined;
2006
2006
  /**
2007
2007
  * <p>Information for a path pattern condition. Specify only when <code>Field</code> is
2008
2008
  * <code>path-pattern</code>.</p>
2009
2009
  * @public
2010
2010
  */
2011
- PathPatternConfig?: PathPatternConditionConfig;
2011
+ PathPatternConfig?: PathPatternConditionConfig | undefined;
2012
2012
  /**
2013
2013
  * <p>Information for an HTTP header condition. Specify only when <code>Field</code> is
2014
2014
  * <code>http-header</code>.</p>
2015
2015
  * @public
2016
2016
  */
2017
- HttpHeaderConfig?: HttpHeaderConditionConfig;
2017
+ HttpHeaderConfig?: HttpHeaderConditionConfig | undefined;
2018
2018
  /**
2019
2019
  * <p>Information for a query string condition. Specify only when <code>Field</code> is
2020
2020
  * <code>query-string</code>.</p>
2021
2021
  * @public
2022
2022
  */
2023
- QueryStringConfig?: QueryStringConditionConfig;
2023
+ QueryStringConfig?: QueryStringConditionConfig | undefined;
2024
2024
  /**
2025
2025
  * <p>Information for an HTTP method condition. Specify only when <code>Field</code> is
2026
2026
  * <code>http-request-method</code>.</p>
2027
2027
  * @public
2028
2028
  */
2029
- HttpRequestMethodConfig?: HttpRequestMethodConditionConfig;
2029
+ HttpRequestMethodConfig?: HttpRequestMethodConditionConfig | undefined;
2030
2030
  /**
2031
2031
  * <p>Information for a source IP condition. Specify only when <code>Field</code> is
2032
2032
  * <code>source-ip</code>.</p>
2033
2033
  * @public
2034
2034
  */
2035
- SourceIpConfig?: SourceIpConditionConfig;
2035
+ SourceIpConfig?: SourceIpConditionConfig | undefined;
2036
2036
  }
2037
2037
  /**
2038
2038
  * @public
@@ -2062,7 +2062,7 @@ export interface CreateRuleInput {
2062
2062
  * <p>The tags to assign to the rule.</p>
2063
2063
  * @public
2064
2064
  */
2065
- Tags?: Tag[];
2065
+ Tags?: Tag[] | undefined;
2066
2066
  }
2067
2067
  /**
2068
2068
  * <p>Information about a rule.</p>
@@ -2073,12 +2073,12 @@ export interface Rule {
2073
2073
  * <p>The Amazon Resource Name (ARN) of the rule.</p>
2074
2074
  * @public
2075
2075
  */
2076
- RuleArn?: string;
2076
+ RuleArn?: string | undefined;
2077
2077
  /**
2078
2078
  * <p>The priority.</p>
2079
2079
  * @public
2080
2080
  */
2081
- Priority?: string;
2081
+ Priority?: string | undefined;
2082
2082
  /**
2083
2083
  * <p>The conditions. Each rule can include zero or one of the following conditions:
2084
2084
  * <code>http-request-method</code>, <code>host-header</code>, <code>path-pattern</code>, and
@@ -2086,19 +2086,19 @@ export interface Rule {
2086
2086
  * <code>http-header</code> and <code>query-string</code>.</p>
2087
2087
  * @public
2088
2088
  */
2089
- Conditions?: RuleCondition[];
2089
+ Conditions?: RuleCondition[] | undefined;
2090
2090
  /**
2091
2091
  * <p>The actions. Each rule must include exactly one of the following types of actions:
2092
2092
  * <code>forward</code>, <code>redirect</code>, or <code>fixed-response</code>, and it must be
2093
2093
  * the last action to be performed.</p>
2094
2094
  * @public
2095
2095
  */
2096
- Actions?: Action[];
2096
+ Actions?: Action[] | undefined;
2097
2097
  /**
2098
2098
  * <p>Indicates whether this is the default rule.</p>
2099
2099
  * @public
2100
2100
  */
2101
- IsDefault?: boolean;
2101
+ IsDefault?: boolean | undefined;
2102
2102
  }
2103
2103
  /**
2104
2104
  * @public
@@ -2108,7 +2108,7 @@ export interface CreateRuleOutput {
2108
2108
  * <p>Information about the rule.</p>
2109
2109
  * @public
2110
2110
  */
2111
- Rules?: Rule[];
2111
+ Rules?: Rule[] | undefined;
2112
2112
  }
2113
2113
  /**
2114
2114
  * <p>The specified priority is in use.</p>
@@ -2117,7 +2117,7 @@ export interface CreateRuleOutput {
2117
2117
  export declare class PriorityInUseException extends __BaseException {
2118
2118
  readonly name: "PriorityInUseException";
2119
2119
  readonly $fault: "client";
2120
- Message?: string;
2120
+ Message?: string | undefined;
2121
2121
  /**
2122
2122
  * @internal
2123
2123
  */
@@ -2130,7 +2130,7 @@ export declare class PriorityInUseException extends __BaseException {
2130
2130
  export declare class TooManyRulesException extends __BaseException {
2131
2131
  readonly name: "TooManyRulesException";
2132
2132
  readonly $fault: "client";
2133
- Message?: string;
2133
+ Message?: string | undefined;
2134
2134
  /**
2135
2135
  * @internal
2136
2136
  */
@@ -2144,7 +2144,7 @@ export declare class TooManyRulesException extends __BaseException {
2144
2144
  export declare class TooManyTargetGroupsException extends __BaseException {
2145
2145
  readonly name: "TooManyTargetGroupsException";
2146
2146
  readonly $fault: "client";
2147
- Message?: string;
2147
+ Message?: string | undefined;
2148
2148
  /**
2149
2149
  * @internal
2150
2150
  */
@@ -2178,13 +2178,13 @@ export interface Matcher {
2178
2178
  * escaped.</p>
2179
2179
  * @public
2180
2180
  */
2181
- HttpCode?: string;
2181
+ HttpCode?: string | undefined;
2182
2182
  /**
2183
2183
  * <p>You can specify values between 0 and 99. You can specify multiple values (for example,
2184
2184
  * "0,1") or a range of values (for example, "0-5"). The default value is 12.</p>
2185
2185
  * @public
2186
2186
  */
2187
- GrpcCode?: string;
2187
+ GrpcCode?: string | undefined;
2188
2188
  }
2189
2189
  /**
2190
2190
  * @public
@@ -2220,27 +2220,27 @@ export interface CreateTargetGroupInput {
2220
2220
  * Lambda function, this parameter does not apply.</p>
2221
2221
  * @public
2222
2222
  */
2223
- Protocol?: ProtocolEnum;
2223
+ Protocol?: ProtocolEnum | undefined;
2224
2224
  /**
2225
2225
  * <p>[HTTP/HTTPS protocol] The protocol version. Specify <code>GRPC</code> to send requests to
2226
2226
  * targets using gRPC. Specify <code>HTTP2</code> to send requests to targets using HTTP/2. The
2227
2227
  * default is <code>HTTP1</code>, which sends requests to targets using HTTP/1.1.</p>
2228
2228
  * @public
2229
2229
  */
2230
- ProtocolVersion?: string;
2230
+ ProtocolVersion?: string | undefined;
2231
2231
  /**
2232
2232
  * <p>The port on which the targets receive traffic. This port is used unless you specify a port
2233
2233
  * override when registering the target. If the target is a Lambda function, this parameter does
2234
2234
  * not apply. If the protocol is GENEVE, the supported port is 6081.</p>
2235
2235
  * @public
2236
2236
  */
2237
- Port?: number;
2237
+ Port?: number | undefined;
2238
2238
  /**
2239
2239
  * <p>The identifier of the virtual private cloud (VPC). If the target is a Lambda function,
2240
2240
  * this parameter does not apply. Otherwise, this parameter is required.</p>
2241
2241
  * @public
2242
2242
  */
2243
- VpcId?: string;
2243
+ VpcId?: string | undefined;
2244
2244
  /**
2245
2245
  * <p>The protocol the load balancer uses when performing health checks on targets. For
2246
2246
  * Application Load Balancers, the default is HTTP. For Network Load Balancers and Gateway Load
@@ -2249,7 +2249,7 @@ export interface CreateTargetGroupInput {
2249
2249
  * not supported for health checks.</p>
2250
2250
  * @public
2251
2251
  */
2252
- HealthCheckProtocol?: ProtocolEnum;
2252
+ HealthCheckProtocol?: ProtocolEnum | undefined;
2253
2253
  /**
2254
2254
  * <p>The port the load balancer uses when performing health checks on targets. If the protocol
2255
2255
  * is HTTP, HTTPS, TCP, TLS, UDP, or TCP_UDP, the default is <code>traffic-port</code>, which is
@@ -2257,7 +2257,7 @@ export interface CreateTargetGroupInput {
2257
2257
  * GENEVE, the default is port 80.</p>
2258
2258
  * @public
2259
2259
  */
2260
- HealthCheckPort?: string;
2260
+ HealthCheckPort?: string | undefined;
2261
2261
  /**
2262
2262
  * <p>Indicates whether health checks are enabled. If the target type is <code>lambda</code>,
2263
2263
  * health checks are disabled by default but can be enabled. If the target type is
@@ -2265,7 +2265,7 @@ export interface CreateTargetGroupInput {
2265
2265
  * enabled and can't be disabled.</p>
2266
2266
  * @public
2267
2267
  */
2268
- HealthCheckEnabled?: boolean;
2268
+ HealthCheckEnabled?: boolean | undefined;
2269
2269
  /**
2270
2270
  * <p>[HTTP/HTTPS health checks] The destination for health checks on the targets.</p>
2271
2271
  * <p>[HTTP1 or HTTP2 protocol version] The ping path. The default is /.</p>
@@ -2273,7 +2273,7 @@ export interface CreateTargetGroupInput {
2273
2273
  * /package.service/method. The default is /Amazon Web Services.ALB/healthcheck.</p>
2274
2274
  * @public
2275
2275
  */
2276
- HealthCheckPath?: string;
2276
+ HealthCheckPath?: string | undefined;
2277
2277
  /**
2278
2278
  * <p>The approximate amount of time, in seconds, between health checks of an individual target. The range is 5-300.
2279
2279
  * If the target group protocol is TCP, TLS, UDP, TCP_UDP, HTTP or HTTPS, the default is 30 seconds.
@@ -2281,7 +2281,7 @@ export interface CreateTargetGroupInput {
2281
2281
  * If the target type is <code>lambda</code>, the default is 35 seconds.</p>
2282
2282
  * @public
2283
2283
  */
2284
- HealthCheckIntervalSeconds?: number;
2284
+ HealthCheckIntervalSeconds?: number | undefined;
2285
2285
  /**
2286
2286
  * <p>The amount of time, in seconds, during which no response from a target means a failed
2287
2287
  * health check. The range is 2–120 seconds. For target groups with a protocol of HTTP, the
@@ -2290,7 +2290,7 @@ export interface CreateTargetGroupInput {
2290
2290
  * the target type is <code>lambda</code>, the default is 30 seconds.</p>
2291
2291
  * @public
2292
2292
  */
2293
- HealthCheckTimeoutSeconds?: number;
2293
+ HealthCheckTimeoutSeconds?: number | undefined;
2294
2294
  /**
2295
2295
  * <p>The number of consecutive health check successes required before considering a target healthy. The range is
2296
2296
  * 2-10. If the target group protocol is TCP, TCP_UDP, UDP, TLS, HTTP or HTTPS, the default is 5. For target groups
@@ -2298,7 +2298,7 @@ export interface CreateTargetGroupInput {
2298
2298
  * is <code>lambda</code>, the default is 5.</p>
2299
2299
  * @public
2300
2300
  */
2301
- HealthyThresholdCount?: number;
2301
+ HealthyThresholdCount?: number | undefined;
2302
2302
  /**
2303
2303
  * <p>The number of consecutive health check failures required before considering a target unhealthy. The range is
2304
2304
  * 2-10. If the target group protocol is TCP, TCP_UDP, UDP, TLS, HTTP or HTTPS, the default is 2. For target groups
@@ -2306,7 +2306,7 @@ export interface CreateTargetGroupInput {
2306
2306
  * is <code>lambda</code>, the default is 5.</p>
2307
2307
  * @public
2308
2308
  */
2309
- UnhealthyThresholdCount?: number;
2309
+ UnhealthyThresholdCount?: number | undefined;
2310
2310
  /**
2311
2311
  * <p>[HTTP/HTTPS health checks] The HTTP or gRPC codes to use when checking for a successful
2312
2312
  * response from a target. For target groups with a protocol of TCP, TCP_UDP, UDP or TLS the range
@@ -2314,7 +2314,7 @@ export interface CreateTargetGroupInput {
2314
2314
  * groups with a protocol of GENEVE, the range is 200-399.</p>
2315
2315
  * @public
2316
2316
  */
2317
- Matcher?: Matcher;
2317
+ Matcher?: Matcher | undefined;
2318
2318
  /**
2319
2319
  * <p>The type of target that you must specify when registering targets with this target group.
2320
2320
  * You can't specify targets for a target group using more than one target type.</p>
@@ -2342,17 +2342,17 @@ export interface CreateTargetGroupInput {
2342
2342
  * </ul>
2343
2343
  * @public
2344
2344
  */
2345
- TargetType?: TargetTypeEnum;
2345
+ TargetType?: TargetTypeEnum | undefined;
2346
2346
  /**
2347
2347
  * <p>The tags to assign to the target group.</p>
2348
2348
  * @public
2349
2349
  */
2350
- Tags?: Tag[];
2350
+ Tags?: Tag[] | undefined;
2351
2351
  /**
2352
2352
  * <p>The IP address type. The default value is <code>ipv4</code>.</p>
2353
2353
  * @public
2354
2354
  */
2355
- IpAddressType?: TargetGroupIpAddressTypeEnum;
2355
+ IpAddressType?: TargetGroupIpAddressTypeEnum | undefined;
2356
2356
  }
2357
2357
  /**
2358
2358
  * <p>Information about a target group.</p>
@@ -2363,85 +2363,85 @@ export interface TargetGroup {
2363
2363
  * <p>The Amazon Resource Name (ARN) of the target group.</p>
2364
2364
  * @public
2365
2365
  */
2366
- TargetGroupArn?: string;
2366
+ TargetGroupArn?: string | undefined;
2367
2367
  /**
2368
2368
  * <p>The name of the target group.</p>
2369
2369
  * @public
2370
2370
  */
2371
- TargetGroupName?: string;
2371
+ TargetGroupName?: string | undefined;
2372
2372
  /**
2373
2373
  * <p>The protocol to use for routing traffic to the targets.</p>
2374
2374
  * @public
2375
2375
  */
2376
- Protocol?: ProtocolEnum;
2376
+ Protocol?: ProtocolEnum | undefined;
2377
2377
  /**
2378
2378
  * <p>The port on which the targets are listening. This parameter is not used if the target is
2379
2379
  * a Lambda function.</p>
2380
2380
  * @public
2381
2381
  */
2382
- Port?: number;
2382
+ Port?: number | undefined;
2383
2383
  /**
2384
2384
  * <p>The ID of the VPC for the targets.</p>
2385
2385
  * @public
2386
2386
  */
2387
- VpcId?: string;
2387
+ VpcId?: string | undefined;
2388
2388
  /**
2389
2389
  * <p>The protocol to use to connect with the target. The GENEVE, TLS, UDP, and TCP_UDP
2390
2390
  * protocols are not supported for health checks.</p>
2391
2391
  * @public
2392
2392
  */
2393
- HealthCheckProtocol?: ProtocolEnum;
2393
+ HealthCheckProtocol?: ProtocolEnum | undefined;
2394
2394
  /**
2395
2395
  * <p>The port to use to connect with the target.</p>
2396
2396
  * @public
2397
2397
  */
2398
- HealthCheckPort?: string;
2398
+ HealthCheckPort?: string | undefined;
2399
2399
  /**
2400
2400
  * <p>Indicates whether health checks are enabled.</p>
2401
2401
  * @public
2402
2402
  */
2403
- HealthCheckEnabled?: boolean;
2403
+ HealthCheckEnabled?: boolean | undefined;
2404
2404
  /**
2405
2405
  * <p>The approximate amount of time, in seconds, between health checks of an individual
2406
2406
  * target.</p>
2407
2407
  * @public
2408
2408
  */
2409
- HealthCheckIntervalSeconds?: number;
2409
+ HealthCheckIntervalSeconds?: number | undefined;
2410
2410
  /**
2411
2411
  * <p>The amount of time, in seconds, during which no response means a failed health
2412
2412
  * check.</p>
2413
2413
  * @public
2414
2414
  */
2415
- HealthCheckTimeoutSeconds?: number;
2415
+ HealthCheckTimeoutSeconds?: number | undefined;
2416
2416
  /**
2417
2417
  * <p>The number of consecutive health checks successes required before considering an unhealthy
2418
2418
  * target healthy.</p>
2419
2419
  * @public
2420
2420
  */
2421
- HealthyThresholdCount?: number;
2421
+ HealthyThresholdCount?: number | undefined;
2422
2422
  /**
2423
2423
  * <p>The number of consecutive health check failures required before considering the target
2424
2424
  * unhealthy.</p>
2425
2425
  * @public
2426
2426
  */
2427
- UnhealthyThresholdCount?: number;
2427
+ UnhealthyThresholdCount?: number | undefined;
2428
2428
  /**
2429
2429
  * <p>The destination for health checks on the targets.</p>
2430
2430
  * @public
2431
2431
  */
2432
- HealthCheckPath?: string;
2432
+ HealthCheckPath?: string | undefined;
2433
2433
  /**
2434
2434
  * <p>The HTTP or gRPC codes to use when checking for a successful response from a
2435
2435
  * target.</p>
2436
2436
  * @public
2437
2437
  */
2438
- Matcher?: Matcher;
2438
+ Matcher?: Matcher | undefined;
2439
2439
  /**
2440
2440
  * <p>The Amazon Resource Name (ARN) of the load balancer that routes traffic to this target
2441
2441
  * group. You can use each target group with only one load balancer.</p>
2442
2442
  * @public
2443
2443
  */
2444
- LoadBalancerArns?: string[];
2444
+ LoadBalancerArns?: string[] | undefined;
2445
2445
  /**
2446
2446
  * <p>The type of target that you must specify when registering targets with this target group.
2447
2447
  * The possible values are <code>instance</code> (register targets by instance ID),
@@ -2450,18 +2450,18 @@ export interface TargetGroup {
2450
2450
  * as a target).</p>
2451
2451
  * @public
2452
2452
  */
2453
- TargetType?: TargetTypeEnum;
2453
+ TargetType?: TargetTypeEnum | undefined;
2454
2454
  /**
2455
2455
  * <p>[HTTP/HTTPS protocol] The protocol version. The possible values are <code>GRPC</code>,
2456
2456
  * <code>HTTP1</code>, and <code>HTTP2</code>.</p>
2457
2457
  * @public
2458
2458
  */
2459
- ProtocolVersion?: string;
2459
+ ProtocolVersion?: string | undefined;
2460
2460
  /**
2461
2461
  * <p>The IP address type. The default value is <code>ipv4</code>.</p>
2462
2462
  * @public
2463
2463
  */
2464
- IpAddressType?: TargetGroupIpAddressTypeEnum;
2464
+ IpAddressType?: TargetGroupIpAddressTypeEnum | undefined;
2465
2465
  }
2466
2466
  /**
2467
2467
  * @public
@@ -2471,7 +2471,7 @@ export interface CreateTargetGroupOutput {
2471
2471
  * <p>Information about the target group.</p>
2472
2472
  * @public
2473
2473
  */
2474
- TargetGroups?: TargetGroup[];
2474
+ TargetGroups?: TargetGroup[] | undefined;
2475
2475
  }
2476
2476
  /**
2477
2477
  * <p>A target group with the specified name already exists.</p>
@@ -2480,7 +2480,7 @@ export interface CreateTargetGroupOutput {
2480
2480
  export declare class DuplicateTargetGroupNameException extends __BaseException {
2481
2481
  readonly name: "DuplicateTargetGroupNameException";
2482
2482
  readonly $fault: "client";
2483
- Message?: string;
2483
+ Message?: string | undefined;
2484
2484
  /**
2485
2485
  * @internal
2486
2486
  */
@@ -2510,12 +2510,12 @@ export interface CreateTrustStoreInput {
2510
2510
  * <p>The Amazon S3 object version for the ca certificates bundle. If undefined the current version is used.</p>
2511
2511
  * @public
2512
2512
  */
2513
- CaCertificatesBundleS3ObjectVersion?: string;
2513
+ CaCertificatesBundleS3ObjectVersion?: string | undefined;
2514
2514
  /**
2515
2515
  * <p>The tags to assign to the trust store.</p>
2516
2516
  * @public
2517
2517
  */
2518
- Tags?: Tag[];
2518
+ Tags?: Tag[] | undefined;
2519
2519
  }
2520
2520
  /**
2521
2521
  * @public
@@ -2538,27 +2538,27 @@ export interface TrustStore {
2538
2538
  * <p>The name of the trust store.</p>
2539
2539
  * @public
2540
2540
  */
2541
- Name?: string;
2541
+ Name?: string | undefined;
2542
2542
  /**
2543
2543
  * <p>The Amazon Resource Name (ARN) of the trust store.</p>
2544
2544
  * @public
2545
2545
  */
2546
- TrustStoreArn?: string;
2546
+ TrustStoreArn?: string | undefined;
2547
2547
  /**
2548
2548
  * <p>The current status of the trust store.</p>
2549
2549
  * @public
2550
2550
  */
2551
- Status?: TrustStoreStatus;
2551
+ Status?: TrustStoreStatus | undefined;
2552
2552
  /**
2553
2553
  * <p>The number of ca certificates in the trust store.</p>
2554
2554
  * @public
2555
2555
  */
2556
- NumberOfCaCertificates?: number;
2556
+ NumberOfCaCertificates?: number | undefined;
2557
2557
  /**
2558
2558
  * <p>The number of revoked certificates in the trust store.</p>
2559
2559
  * @public
2560
2560
  */
2561
- TotalRevokedEntries?: number;
2561
+ TotalRevokedEntries?: number | undefined;
2562
2562
  }
2563
2563
  /**
2564
2564
  * @public
@@ -2568,7 +2568,7 @@ export interface CreateTrustStoreOutput {
2568
2568
  * <p>Information about the trust store created.</p>
2569
2569
  * @public
2570
2570
  */
2571
- TrustStores?: TrustStore[];
2571
+ TrustStores?: TrustStore[] | undefined;
2572
2572
  }
2573
2573
  /**
2574
2574
  * <p>A trust store with the specified name already exists.</p>
@@ -2577,7 +2577,7 @@ export interface CreateTrustStoreOutput {
2577
2577
  export declare class DuplicateTrustStoreNameException extends __BaseException {
2578
2578
  readonly name: "DuplicateTrustStoreNameException";
2579
2579
  readonly $fault: "client";
2580
- Message?: string;
2580
+ Message?: string | undefined;
2581
2581
  /**
2582
2582
  * @internal
2583
2583
  */
@@ -2590,7 +2590,7 @@ export declare class DuplicateTrustStoreNameException extends __BaseException {
2590
2590
  export declare class InvalidCaCertificatesBundleException extends __BaseException {
2591
2591
  readonly name: "InvalidCaCertificatesBundleException";
2592
2592
  readonly $fault: "client";
2593
- Message?: string;
2593
+ Message?: string | undefined;
2594
2594
  /**
2595
2595
  * @internal
2596
2596
  */
@@ -2603,7 +2603,7 @@ export declare class InvalidCaCertificatesBundleException extends __BaseExceptio
2603
2603
  export declare class TooManyTrustStoresException extends __BaseException {
2604
2604
  readonly name: "TooManyTrustStoresException";
2605
2605
  readonly $fault: "client";
2606
- Message?: string;
2606
+ Message?: string | undefined;
2607
2607
  /**
2608
2608
  * @internal
2609
2609
  */
@@ -2616,7 +2616,7 @@ export declare class TooManyTrustStoresException extends __BaseException {
2616
2616
  export declare class DeleteAssociationSameAccountException extends __BaseException {
2617
2617
  readonly name: "DeleteAssociationSameAccountException";
2618
2618
  readonly $fault: "client";
2619
- Message?: string;
2619
+ Message?: string | undefined;
2620
2620
  /**
2621
2621
  * @internal
2622
2622
  */
@@ -2694,7 +2694,7 @@ export interface DeleteSharedTrustStoreAssociationOutput {
2694
2694
  export declare class TrustStoreAssociationNotFoundException extends __BaseException {
2695
2695
  readonly name: "TrustStoreAssociationNotFoundException";
2696
2696
  readonly $fault: "client";
2697
- Message?: string;
2697
+ Message?: string | undefined;
2698
2698
  /**
2699
2699
  * @internal
2700
2700
  */
@@ -2737,7 +2737,7 @@ export interface DeleteTrustStoreOutput {
2737
2737
  export declare class TrustStoreInUseException extends __BaseException {
2738
2738
  readonly name: "TrustStoreInUseException";
2739
2739
  readonly $fault: "client";
2740
- Message?: string;
2740
+ Message?: string | undefined;
2741
2741
  /**
2742
2742
  * @internal
2743
2743
  */
@@ -2763,7 +2763,7 @@ export interface TargetDescription {
2763
2763
  * parameter is not used if the target is a Lambda function.</p>
2764
2764
  * @public
2765
2765
  */
2766
- Port?: number;
2766
+ Port?: number | undefined;
2767
2767
  /**
2768
2768
  * <p>An Availability Zone or <code>all</code>. This determines whether the target receives
2769
2769
  * traffic from the load balancer nodes in the specified Availability Zone or from all enabled
@@ -2783,7 +2783,7 @@ export interface TargetDescription {
2783
2783
  * supported value is <code>all</code>.</p>
2784
2784
  * @public
2785
2785
  */
2786
- AvailabilityZone?: string;
2786
+ AvailabilityZone?: string | undefined;
2787
2787
  }
2788
2788
  /**
2789
2789
  * @public
@@ -2814,7 +2814,7 @@ export interface DeregisterTargetsOutput {
2814
2814
  export declare class InvalidTargetException extends __BaseException {
2815
2815
  readonly name: "InvalidTargetException";
2816
2816
  readonly $fault: "client";
2817
- Message?: string;
2817
+ Message?: string | undefined;
2818
2818
  /**
2819
2819
  * @internal
2820
2820
  */
@@ -2829,12 +2829,12 @@ export interface DescribeAccountLimitsInput {
2829
2829
  * call.)</p>
2830
2830
  * @public
2831
2831
  */
2832
- Marker?: string;
2832
+ Marker?: string | undefined;
2833
2833
  /**
2834
2834
  * <p>The maximum number of results to return with this call.</p>
2835
2835
  * @public
2836
2836
  */
2837
- PageSize?: number;
2837
+ PageSize?: number | undefined;
2838
2838
  }
2839
2839
  /**
2840
2840
  * <p>Information about an Elastic Load Balancing resource limit for your Amazon Web Services
@@ -2923,12 +2923,12 @@ export interface Limit {
2923
2923
  * </ul>
2924
2924
  * @public
2925
2925
  */
2926
- Name?: string;
2926
+ Name?: string | undefined;
2927
2927
  /**
2928
2928
  * <p>The maximum value of the limit.</p>
2929
2929
  * @public
2930
2930
  */
2931
- Max?: string;
2931
+ Max?: string | undefined;
2932
2932
  }
2933
2933
  /**
2934
2934
  * @public
@@ -2938,13 +2938,13 @@ export interface DescribeAccountLimitsOutput {
2938
2938
  * <p>Information about the limits.</p>
2939
2939
  * @public
2940
2940
  */
2941
- Limits?: Limit[];
2941
+ Limits?: Limit[] | undefined;
2942
2942
  /**
2943
2943
  * <p>If there are additional results, this is the marker for the next set of results.
2944
2944
  * Otherwise, this is null.</p>
2945
2945
  * @public
2946
2946
  */
2947
- NextMarker?: string;
2947
+ NextMarker?: string | undefined;
2948
2948
  }
2949
2949
  /**
2950
2950
  * @public
@@ -2973,12 +2973,12 @@ export interface ListenerAttribute {
2973
2973
  * </ul>
2974
2974
  * @public
2975
2975
  */
2976
- Key?: string;
2976
+ Key?: string | undefined;
2977
2977
  /**
2978
2978
  * <p>The value of the attribute.</p>
2979
2979
  * @public
2980
2980
  */
2981
- Value?: string;
2981
+ Value?: string | undefined;
2982
2982
  }
2983
2983
  /**
2984
2984
  * @public
@@ -2988,7 +2988,7 @@ export interface DescribeListenerAttributesOutput {
2988
2988
  * <p>Information about the listener attributes.</p>
2989
2989
  * @public
2990
2990
  */
2991
- Attributes?: ListenerAttribute[];
2991
+ Attributes?: ListenerAttribute[] | undefined;
2992
2992
  }
2993
2993
  /**
2994
2994
  * @public
@@ -3004,12 +3004,12 @@ export interface DescribeListenerCertificatesInput {
3004
3004
  * call.)</p>
3005
3005
  * @public
3006
3006
  */
3007
- Marker?: string;
3007
+ Marker?: string | undefined;
3008
3008
  /**
3009
3009
  * <p>The maximum number of results to return with this call.</p>
3010
3010
  * @public
3011
3011
  */
3012
- PageSize?: number;
3012
+ PageSize?: number | undefined;
3013
3013
  }
3014
3014
  /**
3015
3015
  * @public
@@ -3019,13 +3019,13 @@ export interface DescribeListenerCertificatesOutput {
3019
3019
  * <p>Information about the certificates.</p>
3020
3020
  * @public
3021
3021
  */
3022
- Certificates?: Certificate[];
3022
+ Certificates?: Certificate[] | undefined;
3023
3023
  /**
3024
3024
  * <p>If there are additional results, this is the marker for the next set of results.
3025
3025
  * Otherwise, this is null.</p>
3026
3026
  * @public
3027
3027
  */
3028
- NextMarker?: string;
3028
+ NextMarker?: string | undefined;
3029
3029
  }
3030
3030
  /**
3031
3031
  * @public
@@ -3035,23 +3035,23 @@ export interface DescribeListenersInput {
3035
3035
  * <p>The Amazon Resource Name (ARN) of the load balancer.</p>
3036
3036
  * @public
3037
3037
  */
3038
- LoadBalancerArn?: string;
3038
+ LoadBalancerArn?: string | undefined;
3039
3039
  /**
3040
3040
  * <p>The Amazon Resource Names (ARN) of the listeners.</p>
3041
3041
  * @public
3042
3042
  */
3043
- ListenerArns?: string[];
3043
+ ListenerArns?: string[] | undefined;
3044
3044
  /**
3045
3045
  * <p>The marker for the next set of results. (You received this marker from a previous
3046
3046
  * call.)</p>
3047
3047
  * @public
3048
3048
  */
3049
- Marker?: string;
3049
+ Marker?: string | undefined;
3050
3050
  /**
3051
3051
  * <p>The maximum number of results to return with this call.</p>
3052
3052
  * @public
3053
3053
  */
3054
- PageSize?: number;
3054
+ PageSize?: number | undefined;
3055
3055
  }
3056
3056
  /**
3057
3057
  * @public
@@ -3061,13 +3061,13 @@ export interface DescribeListenersOutput {
3061
3061
  * <p>Information about the listeners.</p>
3062
3062
  * @public
3063
3063
  */
3064
- Listeners?: Listener[];
3064
+ Listeners?: Listener[] | undefined;
3065
3065
  /**
3066
3066
  * <p>If there are additional results, this is the marker for the next set of results.
3067
3067
  * Otherwise, this is null.</p>
3068
3068
  * @public
3069
3069
  */
3070
- NextMarker?: string;
3070
+ NextMarker?: string | undefined;
3071
3071
  }
3072
3072
  /**
3073
3073
  * @public
@@ -3257,12 +3257,12 @@ export interface LoadBalancerAttribute {
3257
3257
  * </ul>
3258
3258
  * @public
3259
3259
  */
3260
- Key?: string;
3260
+ Key?: string | undefined;
3261
3261
  /**
3262
3262
  * <p>The value of the attribute.</p>
3263
3263
  * @public
3264
3264
  */
3265
- Value?: string;
3265
+ Value?: string | undefined;
3266
3266
  }
3267
3267
  /**
3268
3268
  * @public
@@ -3272,7 +3272,7 @@ export interface DescribeLoadBalancerAttributesOutput {
3272
3272
  * <p>Information about the load balancer attributes.</p>
3273
3273
  * @public
3274
3274
  */
3275
- Attributes?: LoadBalancerAttribute[];
3275
+ Attributes?: LoadBalancerAttribute[] | undefined;
3276
3276
  }
3277
3277
  /**
3278
3278
  * @public
@@ -3283,23 +3283,23 @@ export interface DescribeLoadBalancersInput {
3283
3283
  * balancers in a single call.</p>
3284
3284
  * @public
3285
3285
  */
3286
- LoadBalancerArns?: string[];
3286
+ LoadBalancerArns?: string[] | undefined;
3287
3287
  /**
3288
3288
  * <p>The names of the load balancers.</p>
3289
3289
  * @public
3290
3290
  */
3291
- Names?: string[];
3291
+ Names?: string[] | undefined;
3292
3292
  /**
3293
3293
  * <p>The marker for the next set of results. (You received this marker from a previous
3294
3294
  * call.)</p>
3295
3295
  * @public
3296
3296
  */
3297
- Marker?: string;
3297
+ Marker?: string | undefined;
3298
3298
  /**
3299
3299
  * <p>The maximum number of results to return with this call.</p>
3300
3300
  * @public
3301
3301
  */
3302
- PageSize?: number;
3302
+ PageSize?: number | undefined;
3303
3303
  }
3304
3304
  /**
3305
3305
  * @public
@@ -3309,13 +3309,13 @@ export interface DescribeLoadBalancersOutput {
3309
3309
  * <p>Information about the load balancers.</p>
3310
3310
  * @public
3311
3311
  */
3312
- LoadBalancers?: LoadBalancer[];
3312
+ LoadBalancers?: LoadBalancer[] | undefined;
3313
3313
  /**
3314
3314
  * <p>If there are additional results, this is the marker for the next set of results.
3315
3315
  * Otherwise, this is null.</p>
3316
3316
  * @public
3317
3317
  */
3318
- NextMarker?: string;
3318
+ NextMarker?: string | undefined;
3319
3319
  }
3320
3320
  /**
3321
3321
  * @public
@@ -3325,23 +3325,23 @@ export interface DescribeRulesInput {
3325
3325
  * <p>The Amazon Resource Name (ARN) of the listener.</p>
3326
3326
  * @public
3327
3327
  */
3328
- ListenerArn?: string;
3328
+ ListenerArn?: string | undefined;
3329
3329
  /**
3330
3330
  * <p>The Amazon Resource Names (ARN) of the rules.</p>
3331
3331
  * @public
3332
3332
  */
3333
- RuleArns?: string[];
3333
+ RuleArns?: string[] | undefined;
3334
3334
  /**
3335
3335
  * <p>The marker for the next set of results. (You received this marker from a previous
3336
3336
  * call.)</p>
3337
3337
  * @public
3338
3338
  */
3339
- Marker?: string;
3339
+ Marker?: string | undefined;
3340
3340
  /**
3341
3341
  * <p>The maximum number of results to return with this call.</p>
3342
3342
  * @public
3343
3343
  */
3344
- PageSize?: number;
3344
+ PageSize?: number | undefined;
3345
3345
  }
3346
3346
  /**
3347
3347
  * @public
@@ -3351,13 +3351,13 @@ export interface DescribeRulesOutput {
3351
3351
  * <p>Information about the rules.</p>
3352
3352
  * @public
3353
3353
  */
3354
- Rules?: Rule[];
3354
+ Rules?: Rule[] | undefined;
3355
3355
  /**
3356
3356
  * <p>If there are additional results, this is the marker for the next set of results.
3357
3357
  * Otherwise, this is null.</p>
3358
3358
  * @public
3359
3359
  */
3360
- NextMarker?: string;
3360
+ NextMarker?: string | undefined;
3361
3361
  }
3362
3362
  /**
3363
3363
  * @public
@@ -3367,24 +3367,24 @@ export interface DescribeSSLPoliciesInput {
3367
3367
  * <p>The names of the policies.</p>
3368
3368
  * @public
3369
3369
  */
3370
- Names?: string[];
3370
+ Names?: string[] | undefined;
3371
3371
  /**
3372
3372
  * <p>The marker for the next set of results. (You received this marker from a previous
3373
3373
  * call.)</p>
3374
3374
  * @public
3375
3375
  */
3376
- Marker?: string;
3376
+ Marker?: string | undefined;
3377
3377
  /**
3378
3378
  * <p>The maximum number of results to return with this call.</p>
3379
3379
  * @public
3380
3380
  */
3381
- PageSize?: number;
3381
+ PageSize?: number | undefined;
3382
3382
  /**
3383
3383
  * <p> The type of load balancer. The default lists the SSL policies for all load
3384
3384
  * balancers.</p>
3385
3385
  * @public
3386
3386
  */
3387
- LoadBalancerType?: LoadBalancerTypeEnum;
3387
+ LoadBalancerType?: LoadBalancerTypeEnum | undefined;
3388
3388
  }
3389
3389
  /**
3390
3390
  * <p>Information about a policy used for SSL negotiation.</p>
@@ -3395,22 +3395,22 @@ export interface SslPolicy {
3395
3395
  * <p>The protocols.</p>
3396
3396
  * @public
3397
3397
  */
3398
- SslProtocols?: string[];
3398
+ SslProtocols?: string[] | undefined;
3399
3399
  /**
3400
3400
  * <p>The ciphers.</p>
3401
3401
  * @public
3402
3402
  */
3403
- Ciphers?: Cipher[];
3403
+ Ciphers?: Cipher[] | undefined;
3404
3404
  /**
3405
3405
  * <p>The name of the policy.</p>
3406
3406
  * @public
3407
3407
  */
3408
- Name?: string;
3408
+ Name?: string | undefined;
3409
3409
  /**
3410
3410
  * <p> The supported load balancers. </p>
3411
3411
  * @public
3412
3412
  */
3413
- SupportedLoadBalancerTypes?: string[];
3413
+ SupportedLoadBalancerTypes?: string[] | undefined;
3414
3414
  }
3415
3415
  /**
3416
3416
  * @public
@@ -3420,13 +3420,13 @@ export interface DescribeSSLPoliciesOutput {
3420
3420
  * <p>Information about the security policies.</p>
3421
3421
  * @public
3422
3422
  */
3423
- SslPolicies?: SslPolicy[];
3423
+ SslPolicies?: SslPolicy[] | undefined;
3424
3424
  /**
3425
3425
  * <p>If there are additional results, this is the marker for the next set of results.
3426
3426
  * Otherwise, this is null.</p>
3427
3427
  * @public
3428
3428
  */
3429
- NextMarker?: string;
3429
+ NextMarker?: string | undefined;
3430
3430
  }
3431
3431
  /**
3432
3432
  * @public
@@ -3448,12 +3448,12 @@ export interface TagDescription {
3448
3448
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
3449
3449
  * @public
3450
3450
  */
3451
- ResourceArn?: string;
3451
+ ResourceArn?: string | undefined;
3452
3452
  /**
3453
3453
  * <p>Information about the tags.</p>
3454
3454
  * @public
3455
3455
  */
3456
- Tags?: Tag[];
3456
+ Tags?: Tag[] | undefined;
3457
3457
  }
3458
3458
  /**
3459
3459
  * @public
@@ -3463,7 +3463,7 @@ export interface DescribeTagsOutput {
3463
3463
  * <p>Information about the tags.</p>
3464
3464
  * @public
3465
3465
  */
3466
- TagDescriptions?: TagDescription[];
3466
+ TagDescriptions?: TagDescription[] | undefined;
3467
3467
  }
3468
3468
  /**
3469
3469
  * @public
@@ -3682,12 +3682,12 @@ export interface TargetGroupAttribute {
3682
3682
  * </ul>
3683
3683
  * @public
3684
3684
  */
3685
- Key?: string;
3685
+ Key?: string | undefined;
3686
3686
  /**
3687
3687
  * <p>The value of the attribute.</p>
3688
3688
  * @public
3689
3689
  */
3690
- Value?: string;
3690
+ Value?: string | undefined;
3691
3691
  }
3692
3692
  /**
3693
3693
  * @public
@@ -3697,7 +3697,7 @@ export interface DescribeTargetGroupAttributesOutput {
3697
3697
  * <p>Information about the target group attributes</p>
3698
3698
  * @public
3699
3699
  */
3700
- Attributes?: TargetGroupAttribute[];
3700
+ Attributes?: TargetGroupAttribute[] | undefined;
3701
3701
  }
3702
3702
  /**
3703
3703
  * @public
@@ -3707,28 +3707,28 @@ export interface DescribeTargetGroupsInput {
3707
3707
  * <p>The Amazon Resource Name (ARN) of the load balancer.</p>
3708
3708
  * @public
3709
3709
  */
3710
- LoadBalancerArn?: string;
3710
+ LoadBalancerArn?: string | undefined;
3711
3711
  /**
3712
3712
  * <p>The Amazon Resource Names (ARN) of the target groups.</p>
3713
3713
  * @public
3714
3714
  */
3715
- TargetGroupArns?: string[];
3715
+ TargetGroupArns?: string[] | undefined;
3716
3716
  /**
3717
3717
  * <p>The names of the target groups.</p>
3718
3718
  * @public
3719
3719
  */
3720
- Names?: string[];
3720
+ Names?: string[] | undefined;
3721
3721
  /**
3722
3722
  * <p>The marker for the next set of results. (You received this marker from a previous
3723
3723
  * call.)</p>
3724
3724
  * @public
3725
3725
  */
3726
- Marker?: string;
3726
+ Marker?: string | undefined;
3727
3727
  /**
3728
3728
  * <p>The maximum number of results to return with this call.</p>
3729
3729
  * @public
3730
3730
  */
3731
- PageSize?: number;
3731
+ PageSize?: number | undefined;
3732
3732
  }
3733
3733
  /**
3734
3734
  * @public
@@ -3738,13 +3738,13 @@ export interface DescribeTargetGroupsOutput {
3738
3738
  * <p>Information about the target groups.</p>
3739
3739
  * @public
3740
3740
  */
3741
- TargetGroups?: TargetGroup[];
3741
+ TargetGroups?: TargetGroup[] | undefined;
3742
3742
  /**
3743
3743
  * <p>If there are additional results, this is the marker for the next set of results.
3744
3744
  * Otherwise, this is null.</p>
3745
3745
  * @public
3746
3746
  */
3747
- NextMarker?: string;
3747
+ NextMarker?: string | undefined;
3748
3748
  }
3749
3749
  /**
3750
3750
  * @public
@@ -3771,12 +3771,12 @@ export interface DescribeTargetHealthInput {
3771
3771
  * <p>The targets.</p>
3772
3772
  * @public
3773
3773
  */
3774
- Targets?: TargetDescription[];
3774
+ Targets?: TargetDescription[] | undefined;
3775
3775
  /**
3776
3776
  * <p>Used to include anomaly detection information.</p>
3777
3777
  * @public
3778
3778
  */
3779
- Include?: DescribeTargetHealthInputIncludeEnum[];
3779
+ Include?: DescribeTargetHealthInputIncludeEnum[] | undefined;
3780
3780
  }
3781
3781
  /**
3782
3782
  * @public
@@ -3826,7 +3826,7 @@ export interface TargetHealth {
3826
3826
  * <p>The state of the target.</p>
3827
3827
  * @public
3828
3828
  */
3829
- State?: TargetHealthStateEnum;
3829
+ State?: TargetHealthStateEnum | undefined;
3830
3830
  /**
3831
3831
  * <p>The reason code.</p>
3832
3832
  * <p>If the target state is <code>healthy</code>, a reason code is not provided.</p>
@@ -3918,13 +3918,13 @@ export interface TargetHealth {
3918
3918
  * </ul>
3919
3919
  * @public
3920
3920
  */
3921
- Reason?: TargetHealthReasonEnum;
3921
+ Reason?: TargetHealthReasonEnum | undefined;
3922
3922
  /**
3923
3923
  * <p>A description of the target health that provides additional details. If the state is
3924
3924
  * <code>healthy</code>, a description is not provided.</p>
3925
3925
  * @public
3926
3926
  */
3927
- Description?: string;
3927
+ Description?: string | undefined;
3928
3928
  }
3929
3929
  /**
3930
3930
  * <p>Information about the health of a target.</p>
@@ -3935,29 +3935,29 @@ export interface TargetHealthDescription {
3935
3935
  * <p>The description of the target.</p>
3936
3936
  * @public
3937
3937
  */
3938
- Target?: TargetDescription;
3938
+ Target?: TargetDescription | undefined;
3939
3939
  /**
3940
3940
  * <p>The port to use to connect with the target.</p>
3941
3941
  * @public
3942
3942
  */
3943
- HealthCheckPort?: string;
3943
+ HealthCheckPort?: string | undefined;
3944
3944
  /**
3945
3945
  * <p>The health information for the target.</p>
3946
3946
  * @public
3947
3947
  */
3948
- TargetHealth?: TargetHealth;
3948
+ TargetHealth?: TargetHealth | undefined;
3949
3949
  /**
3950
3950
  * <p>The anomaly detection result for the target.</p>
3951
3951
  * <p>If no anomalies were detected, the result is <code>normal</code>.</p>
3952
3952
  * <p>If anomalies were detected, the result is <code>anomalous</code>.</p>
3953
3953
  * @public
3954
3954
  */
3955
- AnomalyDetection?: AnomalyDetection;
3955
+ AnomalyDetection?: AnomalyDetection | undefined;
3956
3956
  /**
3957
3957
  * <p>The administrative override information for the target.</p>
3958
3958
  * @public
3959
3959
  */
3960
- AdministrativeOverride?: AdministrativeOverride;
3960
+ AdministrativeOverride?: AdministrativeOverride | undefined;
3961
3961
  }
3962
3962
  /**
3963
3963
  * @public
@@ -3967,7 +3967,7 @@ export interface DescribeTargetHealthOutput {
3967
3967
  * <p>Information about the health of the targets.</p>
3968
3968
  * @public
3969
3969
  */
3970
- TargetHealthDescriptions?: TargetHealthDescription[];
3970
+ TargetHealthDescriptions?: TargetHealthDescription[] | undefined;
3971
3971
  }
3972
3972
  /**
3973
3973
  * <p>The health of the specified targets could not be retrieved due to an internal
@@ -3977,7 +3977,7 @@ export interface DescribeTargetHealthOutput {
3977
3977
  export declare class HealthUnavailableException extends __BaseException {
3978
3978
  readonly name: "HealthUnavailableException";
3979
3979
  readonly $fault: "server";
3980
- Message?: string;
3980
+ Message?: string | undefined;
3981
3981
  /**
3982
3982
  * @internal
3983
3983
  */
@@ -3996,12 +3996,12 @@ export interface DescribeTrustStoreAssociationsInput {
3996
3996
  * <p>The marker for the next set of results. (You received this marker from a previous call.)</p>
3997
3997
  * @public
3998
3998
  */
3999
- Marker?: string;
3999
+ Marker?: string | undefined;
4000
4000
  /**
4001
4001
  * <p>The maximum number of results to return with this call.</p>
4002
4002
  * @public
4003
4003
  */
4004
- PageSize?: number;
4004
+ PageSize?: number | undefined;
4005
4005
  }
4006
4006
  /**
4007
4007
  * <p>Information about the resources a trust store is associated with.</p>
@@ -4012,7 +4012,7 @@ export interface TrustStoreAssociation {
4012
4012
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
4013
4013
  * @public
4014
4014
  */
4015
- ResourceArn?: string;
4015
+ ResourceArn?: string | undefined;
4016
4016
  }
4017
4017
  /**
4018
4018
  * @public
@@ -4022,13 +4022,13 @@ export interface DescribeTrustStoreAssociationsOutput {
4022
4022
  * <p>Information about the resources the trust store is associated to.</p>
4023
4023
  * @public
4024
4024
  */
4025
- TrustStoreAssociations?: TrustStoreAssociation[];
4025
+ TrustStoreAssociations?: TrustStoreAssociation[] | undefined;
4026
4026
  /**
4027
4027
  * <p>If there are additional results, this is the marker for the next set of results.
4028
4028
  * Otherwise, this is null.</p>
4029
4029
  * @public
4030
4030
  */
4031
- NextMarker?: string;
4031
+ NextMarker?: string | undefined;
4032
4032
  }
4033
4033
  /**
4034
4034
  * <p>Information about the revocations used by a trust store.</p>
@@ -4039,22 +4039,22 @@ export interface DescribeTrustStoreRevocation {
4039
4039
  * <p>The Amazon Resource Name (ARN) of the trust store.</p>
4040
4040
  * @public
4041
4041
  */
4042
- TrustStoreArn?: string;
4042
+ TrustStoreArn?: string | undefined;
4043
4043
  /**
4044
4044
  * <p>The revocation ID of a revocation file in use.</p>
4045
4045
  * @public
4046
4046
  */
4047
- RevocationId?: number;
4047
+ RevocationId?: number | undefined;
4048
4048
  /**
4049
4049
  * <p>The type of revocation file.</p>
4050
4050
  * @public
4051
4051
  */
4052
- RevocationType?: RevocationType;
4052
+ RevocationType?: RevocationType | undefined;
4053
4053
  /**
4054
4054
  * <p>The number of revoked certificates.</p>
4055
4055
  * @public
4056
4056
  */
4057
- NumberOfRevokedEntries?: number;
4057
+ NumberOfRevokedEntries?: number | undefined;
4058
4058
  }
4059
4059
  /**
4060
4060
  * @public
@@ -4069,17 +4069,17 @@ export interface DescribeTrustStoreRevocationsInput {
4069
4069
  * <p>The revocation IDs of the revocation files you want to describe.</p>
4070
4070
  * @public
4071
4071
  */
4072
- RevocationIds?: number[];
4072
+ RevocationIds?: number[] | undefined;
4073
4073
  /**
4074
4074
  * <p>The marker for the next set of results. (You received this marker from a previous call.)</p>
4075
4075
  * @public
4076
4076
  */
4077
- Marker?: string;
4077
+ Marker?: string | undefined;
4078
4078
  /**
4079
4079
  * <p>The maximum number of results to return with this call.</p>
4080
4080
  * @public
4081
4081
  */
4082
- PageSize?: number;
4082
+ PageSize?: number | undefined;
4083
4083
  }
4084
4084
  /**
4085
4085
  * @public
@@ -4089,13 +4089,13 @@ export interface DescribeTrustStoreRevocationsOutput {
4089
4089
  * <p>Information about the revocation file in the trust store.</p>
4090
4090
  * @public
4091
4091
  */
4092
- TrustStoreRevocations?: DescribeTrustStoreRevocation[];
4092
+ TrustStoreRevocations?: DescribeTrustStoreRevocation[] | undefined;
4093
4093
  /**
4094
4094
  * <p>If there are additional results, this is the marker for the next set of results.
4095
4095
  * Otherwise, this is null.</p>
4096
4096
  * @public
4097
4097
  */
4098
- NextMarker?: string;
4098
+ NextMarker?: string | undefined;
4099
4099
  }
4100
4100
  /**
4101
4101
  * <p>The specified revocation ID does not exist.</p>
@@ -4104,7 +4104,7 @@ export interface DescribeTrustStoreRevocationsOutput {
4104
4104
  export declare class RevocationIdNotFoundException extends __BaseException {
4105
4105
  readonly name: "RevocationIdNotFoundException";
4106
4106
  readonly $fault: "client";
4107
- Message?: string;
4107
+ Message?: string | undefined;
4108
4108
  /**
4109
4109
  * @internal
4110
4110
  */
@@ -4118,22 +4118,22 @@ export interface DescribeTrustStoresInput {
4118
4118
  * <p>The Amazon Resource Name (ARN) of the trust store.</p>
4119
4119
  * @public
4120
4120
  */
4121
- TrustStoreArns?: string[];
4121
+ TrustStoreArns?: string[] | undefined;
4122
4122
  /**
4123
4123
  * <p>The names of the trust stores.</p>
4124
4124
  * @public
4125
4125
  */
4126
- Names?: string[];
4126
+ Names?: string[] | undefined;
4127
4127
  /**
4128
4128
  * <p>The marker for the next set of results. (You received this marker from a previous call.)</p>
4129
4129
  * @public
4130
4130
  */
4131
- Marker?: string;
4131
+ Marker?: string | undefined;
4132
4132
  /**
4133
4133
  * <p>The maximum number of results to return with this call.</p>
4134
4134
  * @public
4135
4135
  */
4136
- PageSize?: number;
4136
+ PageSize?: number | undefined;
4137
4137
  }
4138
4138
  /**
4139
4139
  * @public
@@ -4143,13 +4143,13 @@ export interface DescribeTrustStoresOutput {
4143
4143
  * <p>Information about the trust stores.</p>
4144
4144
  * @public
4145
4145
  */
4146
- TrustStores?: TrustStore[];
4146
+ TrustStores?: TrustStore[] | undefined;
4147
4147
  /**
4148
4148
  * <p>If there are additional results, this is the marker for the next set of results.
4149
4149
  * Otherwise, this is null.</p>
4150
4150
  * @public
4151
4151
  */
4152
- NextMarker?: string;
4152
+ NextMarker?: string | undefined;
4153
4153
  }
4154
4154
  /**
4155
4155
  * @public
@@ -4169,7 +4169,7 @@ export interface GetResourcePolicyOutput {
4169
4169
  * <p>The content of the resource policy.</p>
4170
4170
  * @public
4171
4171
  */
4172
- Policy?: string;
4172
+ Policy?: string | undefined;
4173
4173
  }
4174
4174
  /**
4175
4175
  * <p>The specified resource does not exist.</p>
@@ -4178,7 +4178,7 @@ export interface GetResourcePolicyOutput {
4178
4178
  export declare class ResourceNotFoundException extends __BaseException {
4179
4179
  readonly name: "ResourceNotFoundException";
4180
4180
  readonly $fault: "client";
4181
- Message?: string;
4181
+ Message?: string | undefined;
4182
4182
  /**
4183
4183
  * @internal
4184
4184
  */
@@ -4202,7 +4202,7 @@ export interface GetTrustStoreCaCertificatesBundleOutput {
4202
4202
  * <p>The ca certificate bundles Amazon S3 URI.</p>
4203
4203
  * @public
4204
4204
  */
4205
- Location?: string;
4205
+ Location?: string | undefined;
4206
4206
  }
4207
4207
  /**
4208
4208
  * @public
@@ -4227,7 +4227,7 @@ export interface GetTrustStoreRevocationContentOutput {
4227
4227
  * <p>The revocation files Amazon S3 URI.</p>
4228
4228
  * @public
4229
4229
  */
4230
- Location?: string;
4230
+ Location?: string | undefined;
4231
4231
  }
4232
4232
  /**
4233
4233
  * @public
@@ -4243,7 +4243,7 @@ export interface ModifyListenerInput {
4243
4243
  * a Gateway Load Balancer.</p>
4244
4244
  * @public
4245
4245
  */
4246
- Port?: number;
4246
+ Port?: number | undefined;
4247
4247
  /**
4248
4248
  * <p>The protocol for connections from clients to the load balancer. Application Load Balancers
4249
4249
  * support the HTTP and HTTPS protocols. Network Load Balancers support the TCP, TLS, UDP, and
@@ -4251,7 +4251,7 @@ export interface ModifyListenerInput {
4251
4251
  * enabled. You can't specify a protocol for a Gateway Load Balancer.</p>
4252
4252
  * @public
4253
4253
  */
4254
- Protocol?: ProtocolEnum;
4254
+ Protocol?: ProtocolEnum | undefined;
4255
4255
  /**
4256
4256
  * <p>[HTTPS and TLS listeners] The security policy that defines which protocols and ciphers are
4257
4257
  * supported.</p>
@@ -4259,19 +4259,19 @@ export interface ModifyListenerInput {
4259
4259
  * <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/create-tls-listener.html#describe-ssl-policies">Security policies</a> in the <i>Network Load Balancers Guide</i>.</p>
4260
4260
  * @public
4261
4261
  */
4262
- SslPolicy?: string;
4262
+ SslPolicy?: string | undefined;
4263
4263
  /**
4264
4264
  * <p>[HTTPS and TLS listeners] The default certificate for the listener. You must provide
4265
4265
  * exactly one certificate. Set <code>CertificateArn</code> to the certificate ARN but do not set
4266
4266
  * <code>IsDefault</code>.</p>
4267
4267
  * @public
4268
4268
  */
4269
- Certificates?: Certificate[];
4269
+ Certificates?: Certificate[] | undefined;
4270
4270
  /**
4271
4271
  * <p>The actions for the default rule.</p>
4272
4272
  * @public
4273
4273
  */
4274
- DefaultActions?: Action[];
4274
+ DefaultActions?: Action[] | undefined;
4275
4275
  /**
4276
4276
  * <p>[TLS listeners] The name of the Application-Layer Protocol Negotiation (ALPN) policy. You
4277
4277
  * can specify one policy name. The following are the possible values:</p>
@@ -4306,12 +4306,12 @@ export interface ModifyListenerInput {
4306
4306
  * policies</a> in the <i>Network Load Balancers Guide</i>.</p>
4307
4307
  * @public
4308
4308
  */
4309
- AlpnPolicy?: string[];
4309
+ AlpnPolicy?: string[] | undefined;
4310
4310
  /**
4311
4311
  * <p>The mutual authentication configuration information.</p>
4312
4312
  * @public
4313
4313
  */
4314
- MutualAuthentication?: MutualAuthenticationAttributes;
4314
+ MutualAuthentication?: MutualAuthenticationAttributes | undefined;
4315
4315
  }
4316
4316
  /**
4317
4317
  * @public
@@ -4321,7 +4321,7 @@ export interface ModifyListenerOutput {
4321
4321
  * <p>Information about the modified listener.</p>
4322
4322
  * @public
4323
4323
  */
4324
- Listeners?: Listener[];
4324
+ Listeners?: Listener[] | undefined;
4325
4325
  }
4326
4326
  /**
4327
4327
  * @public
@@ -4346,7 +4346,7 @@ export interface ModifyListenerAttributesOutput {
4346
4346
  * <p>Information about the listener attributes.</p>
4347
4347
  * @public
4348
4348
  */
4349
- Attributes?: ListenerAttribute[];
4349
+ Attributes?: ListenerAttribute[] | undefined;
4350
4350
  }
4351
4351
  /**
4352
4352
  * @public
@@ -4371,7 +4371,7 @@ export interface ModifyLoadBalancerAttributesOutput {
4371
4371
  * <p>Information about the load balancer attributes.</p>
4372
4372
  * @public
4373
4373
  */
4374
- Attributes?: LoadBalancerAttribute[];
4374
+ Attributes?: LoadBalancerAttribute[] | undefined;
4375
4375
  }
4376
4376
  /**
4377
4377
  * @public
@@ -4386,12 +4386,12 @@ export interface ModifyRuleInput {
4386
4386
  * <p>The conditions.</p>
4387
4387
  * @public
4388
4388
  */
4389
- Conditions?: RuleCondition[];
4389
+ Conditions?: RuleCondition[] | undefined;
4390
4390
  /**
4391
4391
  * <p>The actions.</p>
4392
4392
  * @public
4393
4393
  */
4394
- Actions?: Action[];
4394
+ Actions?: Action[] | undefined;
4395
4395
  }
4396
4396
  /**
4397
4397
  * @public
@@ -4401,7 +4401,7 @@ export interface ModifyRuleOutput {
4401
4401
  * <p>Information about the modified rule.</p>
4402
4402
  * @public
4403
4403
  */
4404
- Rules?: Rule[];
4404
+ Rules?: Rule[] | undefined;
4405
4405
  }
4406
4406
  /**
4407
4407
  * @public
@@ -4421,12 +4421,12 @@ export interface ModifyTargetGroupInput {
4421
4421
  * protocols are not supported for health checks.</p>
4422
4422
  * @public
4423
4423
  */
4424
- HealthCheckProtocol?: ProtocolEnum;
4424
+ HealthCheckProtocol?: ProtocolEnum | undefined;
4425
4425
  /**
4426
4426
  * <p>The port the load balancer uses when performing health checks on targets.</p>
4427
4427
  * @public
4428
4428
  */
4429
- HealthCheckPort?: string;
4429
+ HealthCheckPort?: string | undefined;
4430
4430
  /**
4431
4431
  * <p>[HTTP/HTTPS health checks] The destination for health checks on the targets.</p>
4432
4432
  * <p>[HTTP1 or HTTP2 protocol version] The ping path. The default is /.</p>
@@ -4434,35 +4434,35 @@ export interface ModifyTargetGroupInput {
4434
4434
  * /package.service/method. The default is /Amazon Web Services.ALB/healthcheck.</p>
4435
4435
  * @public
4436
4436
  */
4437
- HealthCheckPath?: string;
4437
+ HealthCheckPath?: string | undefined;
4438
4438
  /**
4439
4439
  * <p>Indicates whether health checks are enabled.</p>
4440
4440
  * @public
4441
4441
  */
4442
- HealthCheckEnabled?: boolean;
4442
+ HealthCheckEnabled?: boolean | undefined;
4443
4443
  /**
4444
4444
  * <p>The approximate amount of time, in seconds, between health checks of an individual target.</p>
4445
4445
  * @public
4446
4446
  */
4447
- HealthCheckIntervalSeconds?: number;
4447
+ HealthCheckIntervalSeconds?: number | undefined;
4448
4448
  /**
4449
4449
  * <p>[HTTP/HTTPS health checks] The amount of time, in seconds, during which no response means
4450
4450
  * a failed health check.</p>
4451
4451
  * @public
4452
4452
  */
4453
- HealthCheckTimeoutSeconds?: number;
4453
+ HealthCheckTimeoutSeconds?: number | undefined;
4454
4454
  /**
4455
4455
  * <p>The number of consecutive health checks successes required before considering an unhealthy
4456
4456
  * target healthy.</p>
4457
4457
  * @public
4458
4458
  */
4459
- HealthyThresholdCount?: number;
4459
+ HealthyThresholdCount?: number | undefined;
4460
4460
  /**
4461
4461
  * <p>The number of consecutive health check failures required before considering the target
4462
4462
  * unhealthy.</p>
4463
4463
  * @public
4464
4464
  */
4465
- UnhealthyThresholdCount?: number;
4465
+ UnhealthyThresholdCount?: number | undefined;
4466
4466
  /**
4467
4467
  * <p>[HTTP/HTTPS health checks] The HTTP or gRPC codes to use when checking for a successful
4468
4468
  * response from a target. For target groups with a protocol of TCP, TCP_UDP, UDP or TLS the range
@@ -4470,7 +4470,7 @@ export interface ModifyTargetGroupInput {
4470
4470
  * groups with a protocol of GENEVE, the range is 200-399.</p>
4471
4471
  * @public
4472
4472
  */
4473
- Matcher?: Matcher;
4473
+ Matcher?: Matcher | undefined;
4474
4474
  }
4475
4475
  /**
4476
4476
  * @public
@@ -4480,7 +4480,7 @@ export interface ModifyTargetGroupOutput {
4480
4480
  * <p>Information about the modified target group.</p>
4481
4481
  * @public
4482
4482
  */
4483
- TargetGroups?: TargetGroup[];
4483
+ TargetGroups?: TargetGroup[] | undefined;
4484
4484
  }
4485
4485
  /**
4486
4486
  * @public
@@ -4505,7 +4505,7 @@ export interface ModifyTargetGroupAttributesOutput {
4505
4505
  * <p>Information about the target group attributes.</p>
4506
4506
  * @public
4507
4507
  */
4508
- Attributes?: TargetGroupAttribute[];
4508
+ Attributes?: TargetGroupAttribute[] | undefined;
4509
4509
  }
4510
4510
  /**
4511
4511
  * @public
@@ -4530,7 +4530,7 @@ export interface ModifyTrustStoreInput {
4530
4530
  * <p>The Amazon S3 object version for the ca certificates bundle. If undefined the current version is used.</p>
4531
4531
  * @public
4532
4532
  */
4533
- CaCertificatesBundleS3ObjectVersion?: string;
4533
+ CaCertificatesBundleS3ObjectVersion?: string | undefined;
4534
4534
  }
4535
4535
  /**
4536
4536
  * @public
@@ -4540,7 +4540,7 @@ export interface ModifyTrustStoreOutput {
4540
4540
  * <p>Information about the modified trust store.</p>
4541
4541
  * @public
4542
4542
  */
4543
- TrustStores?: TrustStore[];
4543
+ TrustStores?: TrustStore[] | undefined;
4544
4544
  }
4545
4545
  /**
4546
4546
  * @public
@@ -4656,7 +4656,7 @@ export interface SetIpAddressTypeOutput {
4656
4656
  * <p>The IP address type.</p>
4657
4657
  * @public
4658
4658
  */
4659
- IpAddressType?: IpAddressType;
4659
+ IpAddressType?: IpAddressType | undefined;
4660
4660
  }
4661
4661
  /**
4662
4662
  * <p>Information about the priorities for the rules for a listener.</p>
@@ -4667,12 +4667,12 @@ export interface RulePriorityPair {
4667
4667
  * <p>The Amazon Resource Name (ARN) of the rule.</p>
4668
4668
  * @public
4669
4669
  */
4670
- RuleArn?: string;
4670
+ RuleArn?: string | undefined;
4671
4671
  /**
4672
4672
  * <p>The rule priority.</p>
4673
4673
  * @public
4674
4674
  */
4675
- Priority?: number;
4675
+ Priority?: number | undefined;
4676
4676
  }
4677
4677
  /**
4678
4678
  * @public
@@ -4692,7 +4692,7 @@ export interface SetRulePrioritiesOutput {
4692
4692
  * <p>Information about the rules.</p>
4693
4693
  * @public
4694
4694
  */
4695
- Rules?: Rule[];
4695
+ Rules?: Rule[] | undefined;
4696
4696
  }
4697
4697
  /**
4698
4698
  * @public
@@ -4725,7 +4725,7 @@ export interface SetSecurityGroupsInput {
4725
4725
  * Network Load Balancer through Amazon Web Services PrivateLink. The default is <code>on</code>.</p>
4726
4726
  * @public
4727
4727
  */
4728
- EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum;
4728
+ EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum | undefined;
4729
4729
  }
4730
4730
  /**
4731
4731
  * @public
@@ -4735,13 +4735,13 @@ export interface SetSecurityGroupsOutput {
4735
4735
  * <p>The IDs of the security groups associated with the load balancer.</p>
4736
4736
  * @public
4737
4737
  */
4738
- SecurityGroupIds?: string[];
4738
+ SecurityGroupIds?: string[] | undefined;
4739
4739
  /**
4740
4740
  * <p>Indicates whether to evaluate inbound security group rules for traffic sent to a
4741
4741
  * Network Load Balancer through Amazon Web Services PrivateLink.</p>
4742
4742
  * @public
4743
4743
  */
4744
- EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum;
4744
+ EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum | undefined;
4745
4745
  }
4746
4746
  /**
4747
4747
  * @public
@@ -4764,7 +4764,7 @@ export interface SetSubnetsInput {
4764
4764
  * Availability Zones.</p>
4765
4765
  * @public
4766
4766
  */
4767
- Subnets?: string[];
4767
+ Subnets?: string[] | undefined;
4768
4768
  /**
4769
4769
  * <p>The IDs of the public subnets. You can specify only one subnet per Availability Zone. You
4770
4770
  * must specify either subnets or subnet mappings.</p>
@@ -4782,7 +4782,7 @@ export interface SetSubnetsInput {
4782
4782
  * Zones.</p>
4783
4783
  * @public
4784
4784
  */
4785
- SubnetMappings?: SubnetMapping[];
4785
+ SubnetMappings?: SubnetMapping[] | undefined;
4786
4786
  /**
4787
4787
  * <p>The IP address type.</p>
4788
4788
  * <p>[Application Load Balancers] The possible values are <code>ipv4</code> (IPv4 addresses),
@@ -4792,14 +4792,14 @@ export interface SetSubnetsInput {
4792
4792
  * (IPv4 addresses) and <code>dualstack</code> (IPv4 and IPv6 addresses).</p>
4793
4793
  * @public
4794
4794
  */
4795
- IpAddressType?: IpAddressType;
4795
+ IpAddressType?: IpAddressType | undefined;
4796
4796
  /**
4797
4797
  * <p>[Network Load Balancers with UDP listeners] Indicates whether to use an IPv6 prefix
4798
4798
  * from each subnet for source NAT. The IP address type must be <code>dualstack</code>.
4799
4799
  * The default value is <code>off</code>.</p>
4800
4800
  * @public
4801
4801
  */
4802
- EnablePrefixForIpv6SourceNat?: EnablePrefixForIpv6SourceNatEnum;
4802
+ EnablePrefixForIpv6SourceNat?: EnablePrefixForIpv6SourceNatEnum | undefined;
4803
4803
  }
4804
4804
  /**
4805
4805
  * @public
@@ -4809,15 +4809,15 @@ export interface SetSubnetsOutput {
4809
4809
  * <p>Information about the subnets.</p>
4810
4810
  * @public
4811
4811
  */
4812
- AvailabilityZones?: AvailabilityZone[];
4812
+ AvailabilityZones?: AvailabilityZone[] | undefined;
4813
4813
  /**
4814
4814
  * <p>The IP address type.</p>
4815
4815
  * @public
4816
4816
  */
4817
- IpAddressType?: IpAddressType;
4817
+ IpAddressType?: IpAddressType | undefined;
4818
4818
  /**
4819
4819
  * <p>[Network Load Balancers] Indicates whether to use an IPv6 prefix from each subnet for source NAT.</p>
4820
4820
  * @public
4821
4821
  */
4822
- EnablePrefixForIpv6SourceNat?: EnablePrefixForIpv6SourceNatEnum;
4822
+ EnablePrefixForIpv6SourceNat?: EnablePrefixForIpv6SourceNatEnum | undefined;
4823
4823
  }