@aws-sdk/client-route53resolver 3.687.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.
@@ -9,7 +9,7 @@ import { Route53ResolverServiceException as __BaseException } from "./Route53Res
9
9
  export declare class AccessDeniedException extends __BaseException {
10
10
  readonly name: "AccessDeniedException";
11
11
  readonly $fault: "client";
12
- Message?: string;
12
+ Message?: string | undefined;
13
13
  /**
14
14
  * @internal
15
15
  */
@@ -68,7 +68,7 @@ export interface AssociateFirewallRuleGroupRequest {
68
68
  * can be any unique string, for example, a date/time stamp. </p>
69
69
  * @public
70
70
  */
71
- CreatorRequestId?: string;
71
+ CreatorRequestId?: string | undefined;
72
72
  /**
73
73
  * <p>The unique identifier of the firewall rule group. </p>
74
74
  * @public
@@ -100,12 +100,12 @@ export interface AssociateFirewallRuleGroupRequest {
100
100
  * When you create the association, the default setting is <code>DISABLED</code>. </p>
101
101
  * @public
102
102
  */
103
- MutationProtection?: MutationProtectionStatus;
103
+ MutationProtection?: MutationProtectionStatus | undefined;
104
104
  /**
105
105
  * <p>A list of the tag keys and values that you want to associate with the rule group association. </p>
106
106
  * @public
107
107
  */
108
- Tags?: Tag[];
108
+ Tags?: Tag[] | undefined;
109
109
  }
110
110
  /**
111
111
  * @public
@@ -130,71 +130,71 @@ export interface FirewallRuleGroupAssociation {
130
130
  * <p>The identifier for the association.</p>
131
131
  * @public
132
132
  */
133
- Id?: string;
133
+ Id?: string | undefined;
134
134
  /**
135
135
  * <p>The Amazon Resource Name (ARN) of the firewall rule group association.</p>
136
136
  * @public
137
137
  */
138
- Arn?: string;
138
+ Arn?: string | undefined;
139
139
  /**
140
140
  * <p>The unique identifier of the firewall rule group. </p>
141
141
  * @public
142
142
  */
143
- FirewallRuleGroupId?: string;
143
+ FirewallRuleGroupId?: string | undefined;
144
144
  /**
145
145
  * <p>The unique identifier of the VPC that is associated with the rule group. </p>
146
146
  * @public
147
147
  */
148
- VpcId?: string;
148
+ VpcId?: string | undefined;
149
149
  /**
150
150
  * <p>The name of the association.</p>
151
151
  * @public
152
152
  */
153
- Name?: string;
153
+ Name?: string | undefined;
154
154
  /**
155
155
  * <p>The setting that determines the processing order of the rule group among the rule groups that are associated with a single VPC. DNS Firewall
156
156
  * filters VPC traffic starting from rule group with the lowest numeric priority setting. </p>
157
157
  * @public
158
158
  */
159
- Priority?: number;
159
+ Priority?: number | undefined;
160
160
  /**
161
161
  * <p>If enabled, this setting disallows modification or removal of the association, to help prevent against accidentally altering DNS firewall protections. </p>
162
162
  * @public
163
163
  */
164
- MutationProtection?: MutationProtectionStatus;
164
+ MutationProtection?: MutationProtectionStatus | undefined;
165
165
  /**
166
166
  * <p>The owner of the association, used only for associations that are not managed by you. If you use Firewall Manager to
167
167
  * manage your DNS Firewalls, then this reports Firewall Manager as the managed owner.</p>
168
168
  * @public
169
169
  */
170
- ManagedOwnerName?: string;
170
+ ManagedOwnerName?: string | undefined;
171
171
  /**
172
172
  * <p>The current status of the association.</p>
173
173
  * @public
174
174
  */
175
- Status?: FirewallRuleGroupAssociationStatus;
175
+ Status?: FirewallRuleGroupAssociationStatus | undefined;
176
176
  /**
177
177
  * <p>Additional information about the status of the response, if available.</p>
178
178
  * @public
179
179
  */
180
- StatusMessage?: string;
180
+ StatusMessage?: string | undefined;
181
181
  /**
182
182
  * <p>A unique string defined by you to identify the request. This allows you to retry failed
183
183
  * requests without the risk of running the operation twice. This can be any unique string,
184
184
  * for example, a timestamp. </p>
185
185
  * @public
186
186
  */
187
- CreatorRequestId?: string;
187
+ CreatorRequestId?: string | undefined;
188
188
  /**
189
189
  * <p>The date and time that the association was created, in Unix time format and Coordinated Universal Time (UTC). </p>
190
190
  * @public
191
191
  */
192
- CreationTime?: string;
192
+ CreationTime?: string | undefined;
193
193
  /**
194
194
  * <p>The date and time that the association was last modified, in Unix time format and Coordinated Universal Time (UTC).</p>
195
195
  * @public
196
196
  */
197
- ModificationTime?: string;
197
+ ModificationTime?: string | undefined;
198
198
  }
199
199
  /**
200
200
  * @public
@@ -205,7 +205,7 @@ export interface AssociateFirewallRuleGroupResponse {
205
205
  * identify it in other requests, like update and delete.</p>
206
206
  * @public
207
207
  */
208
- FirewallRuleGroupAssociation?: FirewallRuleGroupAssociation;
208
+ FirewallRuleGroupAssociation?: FirewallRuleGroupAssociation | undefined;
209
209
  }
210
210
  /**
211
211
  * <p>The requested state transition isn't valid. For example, you can't delete a firewall
@@ -216,7 +216,7 @@ export interface AssociateFirewallRuleGroupResponse {
216
216
  export declare class ConflictException extends __BaseException {
217
217
  readonly name: "ConflictException";
218
218
  readonly $fault: "client";
219
- Message?: string;
219
+ Message?: string | undefined;
220
220
  /**
221
221
  * @internal
222
222
  */
@@ -229,7 +229,7 @@ export declare class ConflictException extends __BaseException {
229
229
  export declare class InternalServiceErrorException extends __BaseException {
230
230
  readonly name: "InternalServiceErrorException";
231
231
  readonly $fault: "client";
232
- Message?: string;
232
+ Message?: string | undefined;
233
233
  /**
234
234
  * @internal
235
235
  */
@@ -242,12 +242,12 @@ export declare class InternalServiceErrorException extends __BaseException {
242
242
  export declare class LimitExceededException extends __BaseException {
243
243
  readonly name: "LimitExceededException";
244
244
  readonly $fault: "client";
245
- Message?: string;
245
+ Message?: string | undefined;
246
246
  /**
247
247
  * <p>For a <code>LimitExceededException</code> error, the type of resource that exceeded the current limit.</p>
248
248
  * @public
249
249
  */
250
- ResourceType?: string;
250
+ ResourceType?: string | undefined;
251
251
  /**
252
252
  * @internal
253
253
  */
@@ -260,12 +260,12 @@ export declare class LimitExceededException extends __BaseException {
260
260
  export declare class ResourceNotFoundException extends __BaseException {
261
261
  readonly name: "ResourceNotFoundException";
262
262
  readonly $fault: "client";
263
- Message?: string;
263
+ Message?: string | undefined;
264
264
  /**
265
265
  * <p>For a <code>ResourceNotFoundException</code> error, the type of resource that doesn't exist.</p>
266
266
  * @public
267
267
  */
268
- ResourceType?: string;
268
+ ResourceType?: string | undefined;
269
269
  /**
270
270
  * @internal
271
271
  */
@@ -278,7 +278,7 @@ export declare class ResourceNotFoundException extends __BaseException {
278
278
  export declare class ThrottlingException extends __BaseException {
279
279
  readonly name: "ThrottlingException";
280
280
  readonly $fault: "client";
281
- Message?: string;
281
+ Message?: string | undefined;
282
282
  /**
283
283
  * @internal
284
284
  */
@@ -292,7 +292,7 @@ export declare class ThrottlingException extends __BaseException {
292
292
  export declare class ValidationException extends __BaseException {
293
293
  readonly name: "ValidationException";
294
294
  readonly $fault: "client";
295
- Message?: string;
295
+ Message?: string | undefined;
296
296
  /**
297
297
  * @internal
298
298
  */
@@ -312,25 +312,25 @@ export interface IpAddressUpdate {
312
312
  * <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_GetResolverEndpoint.html">GetResolverEndpoint</a>.</p>
313
313
  * @public
314
314
  */
315
- IpId?: string;
315
+ IpId?: string | undefined;
316
316
  /**
317
317
  * <p>The ID of the subnet that includes the IP address that you want to update. To get this ID, use
318
318
  * <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_GetResolverEndpoint.html">GetResolverEndpoint</a>.</p>
319
319
  * @public
320
320
  */
321
- SubnetId?: string;
321
+ SubnetId?: string | undefined;
322
322
  /**
323
323
  * <p>The new IPv4 address.</p>
324
324
  * @public
325
325
  */
326
- Ip?: string;
326
+ Ip?: string | undefined;
327
327
  /**
328
328
  * <p>
329
329
  * The new IPv6 address.
330
330
  * </p>
331
331
  * @public
332
332
  */
333
- Ipv6?: string;
333
+ Ipv6?: string | undefined;
334
334
  }
335
335
  /**
336
336
  * @public
@@ -418,33 +418,33 @@ export interface ResolverEndpoint {
418
418
  * <p>The ID of the Resolver endpoint.</p>
419
419
  * @public
420
420
  */
421
- Id?: string;
421
+ Id?: string | undefined;
422
422
  /**
423
423
  * <p>A unique string that identifies the request that created the Resolver endpoint. The
424
424
  * <code>CreatorRequestId</code> allows failed requests to be retried without the risk
425
425
  * of running the operation twice.</p>
426
426
  * @public
427
427
  */
428
- CreatorRequestId?: string;
428
+ CreatorRequestId?: string | undefined;
429
429
  /**
430
430
  * <p>The ARN (Amazon Resource Name) for the Resolver endpoint.</p>
431
431
  * @public
432
432
  */
433
- Arn?: string;
433
+ Arn?: string | undefined;
434
434
  /**
435
435
  * <p>The name that you assigned to the Resolver endpoint when you submitted a
436
436
  * <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_CreateResolverEndpoint.html">CreateResolverEndpoint</a>
437
437
  * request.</p>
438
438
  * @public
439
439
  */
440
- Name?: string;
440
+ Name?: string | undefined;
441
441
  /**
442
442
  * <p>The ID of one or more security groups that control access to this VPC. The security group must include one or more inbound rules
443
443
  * (for inbound endpoints) or outbound rules (for outbound endpoints). Inbound and outbound rules must allow TCP and UDP access.
444
444
  * For inbound access, open port 53. For outbound access, open the port that you're using for DNS queries on your network.</p>
445
445
  * @public
446
446
  */
447
- SecurityGroupIds?: string[];
447
+ SecurityGroupIds?: string[] | undefined;
448
448
  /**
449
449
  * <p>Indicates whether the Resolver endpoint allows inbound or outbound DNS queries:</p>
450
450
  * <ul>
@@ -459,17 +459,17 @@ export interface ResolverEndpoint {
459
459
  * </ul>
460
460
  * @public
461
461
  */
462
- Direction?: ResolverEndpointDirection;
462
+ Direction?: ResolverEndpointDirection | undefined;
463
463
  /**
464
464
  * <p>The number of IP addresses that the Resolver endpoint can use for DNS queries.</p>
465
465
  * @public
466
466
  */
467
- IpAddressCount?: number;
467
+ IpAddressCount?: number | undefined;
468
468
  /**
469
469
  * <p>The ID of the VPC that you want to create the Resolver endpoint in.</p>
470
470
  * @public
471
471
  */
472
- HostVPCId?: string;
472
+ HostVPCId?: string | undefined;
473
473
  /**
474
474
  * <p>A code that specifies the current status of the Resolver endpoint. Valid values include the following:</p>
475
475
  * <ul>
@@ -517,41 +517,41 @@ export interface ResolverEndpoint {
517
517
  * </ul>
518
518
  * @public
519
519
  */
520
- Status?: ResolverEndpointStatus;
520
+ Status?: ResolverEndpointStatus | undefined;
521
521
  /**
522
522
  * <p>A detailed description of the status of the Resolver endpoint.</p>
523
523
  * @public
524
524
  */
525
- StatusMessage?: string;
525
+ StatusMessage?: string | undefined;
526
526
  /**
527
527
  * <p>The date and time that the endpoint was created, in Unix time format and Coordinated Universal Time (UTC).</p>
528
528
  * @public
529
529
  */
530
- CreationTime?: string;
530
+ CreationTime?: string | undefined;
531
531
  /**
532
532
  * <p>The date and time that the endpoint was last modified, in Unix time format and Coordinated Universal Time (UTC).</p>
533
533
  * @public
534
534
  */
535
- ModificationTime?: string;
535
+ ModificationTime?: string | undefined;
536
536
  /**
537
537
  * <p>The ARN (Amazon Resource Name) for the Outpost.</p>
538
538
  * @public
539
539
  */
540
- OutpostArn?: string;
540
+ OutpostArn?: string | undefined;
541
541
  /**
542
542
  * <p>
543
543
  * The Amazon EC2 instance type.
544
544
  * </p>
545
545
  * @public
546
546
  */
547
- PreferredInstanceType?: string;
547
+ PreferredInstanceType?: string | undefined;
548
548
  /**
549
549
  * <p>
550
550
  * The Resolver endpoint IP address type.
551
551
  * </p>
552
552
  * @public
553
553
  */
554
- ResolverEndpointType?: ResolverEndpointType;
554
+ ResolverEndpointType?: ResolverEndpointType | undefined;
555
555
  /**
556
556
  * <p>
557
557
  * Protocols used for the endpoint. DoH-FIPS is applicable for inbound endpoints only.
@@ -594,7 +594,7 @@ export interface ResolverEndpoint {
594
594
  * </ul>
595
595
  * @public
596
596
  */
597
- Protocols?: Protocol[];
597
+ Protocols?: Protocol[] | undefined;
598
598
  }
599
599
  /**
600
600
  * @public
@@ -604,7 +604,7 @@ export interface AssociateResolverEndpointIpAddressResponse {
604
604
  * <p>The response to an <code>AssociateResolverEndpointIpAddress</code> request.</p>
605
605
  * @public
606
606
  */
607
- ResolverEndpoint?: ResolverEndpoint;
607
+ ResolverEndpoint?: ResolverEndpoint | undefined;
608
608
  }
609
609
  /**
610
610
  * <p>One or more parameters in this request are not valid.</p>
@@ -618,7 +618,7 @@ export declare class InvalidParameterException extends __BaseException {
618
618
  * <p>For an <code>InvalidParameterException</code> error, the name of the parameter that's invalid.</p>
619
619
  * @public
620
620
  */
621
- FieldName?: string;
621
+ FieldName?: string | undefined;
622
622
  /**
623
623
  * @internal
624
624
  */
@@ -631,7 +631,7 @@ export declare class InvalidParameterException extends __BaseException {
631
631
  export declare class InvalidRequestException extends __BaseException {
632
632
  readonly name: "InvalidRequestException";
633
633
  readonly $fault: "client";
634
- Message?: string;
634
+ Message?: string | undefined;
635
635
  /**
636
636
  * @internal
637
637
  */
@@ -644,12 +644,12 @@ export declare class InvalidRequestException extends __BaseException {
644
644
  export declare class ResourceExistsException extends __BaseException {
645
645
  readonly name: "ResourceExistsException";
646
646
  readonly $fault: "client";
647
- Message?: string;
647
+ Message?: string | undefined;
648
648
  /**
649
649
  * <p>For a <code>ResourceExistsException</code> error, the type of resource that the error applies to.</p>
650
650
  * @public
651
651
  */
652
- ResourceType?: string;
652
+ ResourceType?: string | undefined;
653
653
  /**
654
654
  * @internal
655
655
  */
@@ -717,17 +717,17 @@ export interface ResolverQueryLogConfigAssociation {
717
717
  * <p>The ID of the query logging association.</p>
718
718
  * @public
719
719
  */
720
- Id?: string;
720
+ Id?: string | undefined;
721
721
  /**
722
722
  * <p>The ID of the query logging configuration that a VPC is associated with.</p>
723
723
  * @public
724
724
  */
725
- ResolverQueryLogConfigId?: string;
725
+ ResolverQueryLogConfigId?: string | undefined;
726
726
  /**
727
727
  * <p>The ID of the Amazon VPC that is associated with the query logging configuration.</p>
728
728
  * @public
729
729
  */
730
- ResourceId?: string;
730
+ ResourceId?: string | undefined;
731
731
  /**
732
732
  * <p>The status of the specified query logging association. Valid values include the following:</p>
733
733
  * <ul>
@@ -751,7 +751,7 @@ export interface ResolverQueryLogConfigAssociation {
751
751
  * </ul>
752
752
  * @public
753
753
  */
754
- Status?: ResolverQueryLogConfigAssociationStatus;
754
+ Status?: ResolverQueryLogConfigAssociationStatus | undefined;
755
755
  /**
756
756
  * <p>If the value of <code>Status</code> is <code>FAILED</code>, the value of <code>Error</code> indicates the cause:</p>
757
757
  * <ul>
@@ -767,17 +767,17 @@ export interface ResolverQueryLogConfigAssociation {
767
767
  * <p>If the value of <code>Status</code> is a value other than <code>FAILED</code>, <code>Error</code> is null. </p>
768
768
  * @public
769
769
  */
770
- Error?: ResolverQueryLogConfigAssociationError;
770
+ Error?: ResolverQueryLogConfigAssociationError | undefined;
771
771
  /**
772
772
  * <p>Contains additional information about the error. If the value or <code>Error</code> is null, the value of <code>ErrorMessage</code> also is null.</p>
773
773
  * @public
774
774
  */
775
- ErrorMessage?: string;
775
+ ErrorMessage?: string | undefined;
776
776
  /**
777
777
  * <p>The date and time that the VPC was associated with the query logging configuration, in Unix time format and Coordinated Universal Time (UTC).</p>
778
778
  * @public
779
779
  */
780
- CreationTime?: string;
780
+ CreationTime?: string | undefined;
781
781
  }
782
782
  /**
783
783
  * @public
@@ -787,7 +787,7 @@ export interface AssociateResolverQueryLogConfigResponse {
787
787
  * <p>A complex type that contains settings for a specified association between an Amazon VPC and a query logging configuration.</p>
788
788
  * @public
789
789
  */
790
- ResolverQueryLogConfigAssociation?: ResolverQueryLogConfigAssociation;
790
+ ResolverQueryLogConfigAssociation?: ResolverQueryLogConfigAssociation | undefined;
791
791
  }
792
792
  /**
793
793
  * @public
@@ -803,7 +803,7 @@ export interface AssociateResolverRuleRequest {
803
803
  * <p>A name for the association that you're creating between a Resolver rule and a VPC.</p>
804
804
  * @public
805
805
  */
806
- Name?: string;
806
+ Name?: string | undefined;
807
807
  /**
808
808
  * <p>The ID of the VPC that you want to associate the Resolver rule with.</p>
809
809
  * @public
@@ -842,32 +842,32 @@ export interface ResolverRuleAssociation {
842
842
  * request.</p>
843
843
  * @public
844
844
  */
845
- Id?: string;
845
+ Id?: string | undefined;
846
846
  /**
847
847
  * <p>The ID of the Resolver rule that you associated with the VPC that is specified by <code>VPCId</code>.</p>
848
848
  * @public
849
849
  */
850
- ResolverRuleId?: string;
850
+ ResolverRuleId?: string | undefined;
851
851
  /**
852
852
  * <p>The name of an association between a Resolver rule and a VPC.</p>
853
853
  * @public
854
854
  */
855
- Name?: string;
855
+ Name?: string | undefined;
856
856
  /**
857
857
  * <p>The ID of the VPC that you associated the Resolver rule with.</p>
858
858
  * @public
859
859
  */
860
- VPCId?: string;
860
+ VPCId?: string | undefined;
861
861
  /**
862
862
  * <p>A code that specifies the current status of the association between a Resolver rule and a VPC.</p>
863
863
  * @public
864
864
  */
865
- Status?: ResolverRuleAssociationStatus;
865
+ Status?: ResolverRuleAssociationStatus | undefined;
866
866
  /**
867
867
  * <p>A detailed description of the status of the association between a Resolver rule and a VPC.</p>
868
868
  * @public
869
869
  */
870
- StatusMessage?: string;
870
+ StatusMessage?: string | undefined;
871
871
  }
872
872
  /**
873
873
  * @public
@@ -877,7 +877,7 @@ export interface AssociateResolverRuleResponse {
877
877
  * <p>Information about the <code>AssociateResolverRule</code> request, including the status of the request.</p>
878
878
  * @public
879
879
  */
880
- ResolverRuleAssociation?: ResolverRuleAssociation;
880
+ ResolverRuleAssociation?: ResolverRuleAssociation | undefined;
881
881
  }
882
882
  /**
883
883
  * <p>The specified resource isn't available.</p>
@@ -886,12 +886,12 @@ export interface AssociateResolverRuleResponse {
886
886
  export declare class ResourceUnavailableException extends __BaseException {
887
887
  readonly name: "ResourceUnavailableException";
888
888
  readonly $fault: "client";
889
- Message?: string;
889
+ Message?: string | undefined;
890
890
  /**
891
891
  * <p>For a <code>ResourceUnavailableException</code> error, the type of resource that isn't available.</p>
892
892
  * @public
893
893
  */
894
- ResourceType?: string;
894
+ ResourceType?: string | undefined;
895
895
  /**
896
896
  * @internal
897
897
  */
@@ -944,7 +944,7 @@ export interface CreateFirewallDomainListRequest {
944
944
  * any unique string, for example, a date/time stamp. </p>
945
945
  * @public
946
946
  */
947
- CreatorRequestId?: string;
947
+ CreatorRequestId?: string | undefined;
948
948
  /**
949
949
  * <p>A name that lets you identify the domain list to manage and use it.</p>
950
950
  * @public
@@ -954,7 +954,7 @@ export interface CreateFirewallDomainListRequest {
954
954
  * <p>A list of the tag keys and values that you want to associate with the domain list. </p>
955
955
  * @public
956
956
  */
957
- Tags?: Tag[];
957
+ Tags?: Tag[] | undefined;
958
958
  }
959
959
  /**
960
960
  * @public
@@ -981,54 +981,54 @@ export interface FirewallDomainList {
981
981
  * <p>The ID of the domain list. </p>
982
982
  * @public
983
983
  */
984
- Id?: string;
984
+ Id?: string | undefined;
985
985
  /**
986
986
  * <p>The Amazon Resource Name (ARN) of the firewall domain list.</p>
987
987
  * @public
988
988
  */
989
- Arn?: string;
989
+ Arn?: string | undefined;
990
990
  /**
991
991
  * <p>The name of the domain list. </p>
992
992
  * @public
993
993
  */
994
- Name?: string;
994
+ Name?: string | undefined;
995
995
  /**
996
996
  * <p>The number of domain names that are specified in the domain list.</p>
997
997
  * @public
998
998
  */
999
- DomainCount?: number;
999
+ DomainCount?: number | undefined;
1000
1000
  /**
1001
1001
  * <p>The status of the domain list. </p>
1002
1002
  * @public
1003
1003
  */
1004
- Status?: FirewallDomainListStatus;
1004
+ Status?: FirewallDomainListStatus | undefined;
1005
1005
  /**
1006
1006
  * <p>Additional information about the status of the list, if available.</p>
1007
1007
  * @public
1008
1008
  */
1009
- StatusMessage?: string;
1009
+ StatusMessage?: string | undefined;
1010
1010
  /**
1011
1011
  * <p>The owner of the list, used only for lists that are not managed by you. For example, the managed domain list <code>AWSManagedDomainsMalwareDomainList</code> has the managed owner name <code>Route 53 Resolver DNS Firewall</code>.</p>
1012
1012
  * @public
1013
1013
  */
1014
- ManagedOwnerName?: string;
1014
+ ManagedOwnerName?: string | undefined;
1015
1015
  /**
1016
1016
  * <p>A unique string defined by you to identify the request. This allows you to retry failed
1017
1017
  * requests without the risk of running the operation twice. This can be any unique string,
1018
1018
  * for example, a timestamp. </p>
1019
1019
  * @public
1020
1020
  */
1021
- CreatorRequestId?: string;
1021
+ CreatorRequestId?: string | undefined;
1022
1022
  /**
1023
1023
  * <p>The date and time that the domain list was created, in Unix time format and Coordinated Universal Time (UTC). </p>
1024
1024
  * @public
1025
1025
  */
1026
- CreationTime?: string;
1026
+ CreationTime?: string | undefined;
1027
1027
  /**
1028
1028
  * <p>The date and time that the domain list was last modified, in Unix time format and Coordinated Universal Time (UTC). </p>
1029
1029
  * @public
1030
1030
  */
1031
- ModificationTime?: string;
1031
+ ModificationTime?: string | undefined;
1032
1032
  }
1033
1033
  /**
1034
1034
  * @public
@@ -1038,7 +1038,7 @@ export interface CreateFirewallDomainListResponse {
1038
1038
  * <p>The domain list that you just created.</p>
1039
1039
  * @public
1040
1040
  */
1041
- FirewallDomainList?: FirewallDomainList;
1041
+ FirewallDomainList?: FirewallDomainList | undefined;
1042
1042
  }
1043
1043
  /**
1044
1044
  * @public
@@ -1062,7 +1062,7 @@ export interface CreateFirewallRuleRequest {
1062
1062
  * any unique string, for example, a date/time stamp. </p>
1063
1063
  * @public
1064
1064
  */
1065
- CreatorRequestId?: string;
1065
+ CreatorRequestId?: string | undefined;
1066
1066
  /**
1067
1067
  * <p>The unique identifier of the firewall rule group where you want to create the rule. </p>
1068
1068
  * @public
@@ -1121,25 +1121,25 @@ export interface CreateFirewallRuleRequest {
1121
1121
  * <p>This setting is required if the rule action setting is <code>BLOCK</code>.</p>
1122
1122
  * @public
1123
1123
  */
1124
- BlockResponse?: BlockResponse;
1124
+ BlockResponse?: BlockResponse | undefined;
1125
1125
  /**
1126
1126
  * <p>The custom DNS record to send back in response to the query. Used for the rule action <code>BLOCK</code> with a <code>BlockResponse</code> setting of <code>OVERRIDE</code>.</p>
1127
1127
  * <p>This setting is required if the <code>BlockResponse</code> setting is <code>OVERRIDE</code>.</p>
1128
1128
  * @public
1129
1129
  */
1130
- BlockOverrideDomain?: string;
1130
+ BlockOverrideDomain?: string | undefined;
1131
1131
  /**
1132
1132
  * <p>The DNS record's type. This determines the format of the record value that you provided in <code>BlockOverrideDomain</code>. Used for the rule action <code>BLOCK</code> with a <code>BlockResponse</code> setting of <code>OVERRIDE</code>.</p>
1133
1133
  * <p>This setting is required if the <code>BlockResponse</code> setting is <code>OVERRIDE</code>.</p>
1134
1134
  * @public
1135
1135
  */
1136
- BlockOverrideDnsType?: BlockOverrideDnsType;
1136
+ BlockOverrideDnsType?: BlockOverrideDnsType | undefined;
1137
1137
  /**
1138
1138
  * <p>The recommended amount of time, in seconds, for the DNS resolver or web browser to cache the provided override record. Used for the rule action <code>BLOCK</code> with a <code>BlockResponse</code> setting of <code>OVERRIDE</code>.</p>
1139
1139
  * <p>This setting is required if the <code>BlockResponse</code> setting is <code>OVERRIDE</code>.</p>
1140
1140
  * @public
1141
1141
  */
1142
- BlockOverrideTtl?: number;
1142
+ BlockOverrideTtl?: number | undefined;
1143
1143
  /**
1144
1144
  * <p>A name that lets you identify the rule in the rule group.</p>
1145
1145
  * @public
@@ -1157,7 +1157,7 @@ export interface CreateFirewallRuleRequest {
1157
1157
  * the domain list.</p>
1158
1158
  * @public
1159
1159
  */
1160
- FirewallDomainRedirectionAction?: FirewallDomainRedirectionAction;
1160
+ FirewallDomainRedirectionAction?: FirewallDomainRedirectionAction | undefined;
1161
1161
  /**
1162
1162
  * <p>
1163
1163
  * The DNS query type you want the rule to evaluate. Allowed values are;
@@ -1213,7 +1213,7 @@ export interface CreateFirewallRuleRequest {
1213
1213
  * </ul>
1214
1214
  * @public
1215
1215
  */
1216
- Qtype?: string;
1216
+ Qtype?: string | undefined;
1217
1217
  }
1218
1218
  /**
1219
1219
  * <p>A single firewall rule in a rule group.</p>
@@ -1224,22 +1224,22 @@ export interface FirewallRule {
1224
1224
  * <p>The unique identifier of the firewall rule group of the rule. </p>
1225
1225
  * @public
1226
1226
  */
1227
- FirewallRuleGroupId?: string;
1227
+ FirewallRuleGroupId?: string | undefined;
1228
1228
  /**
1229
1229
  * <p>The ID of the domain list that's used in the rule. </p>
1230
1230
  * @public
1231
1231
  */
1232
- FirewallDomainListId?: string;
1232
+ FirewallDomainListId?: string | undefined;
1233
1233
  /**
1234
1234
  * <p>The name of the rule. </p>
1235
1235
  * @public
1236
1236
  */
1237
- Name?: string;
1237
+ Name?: string | undefined;
1238
1238
  /**
1239
1239
  * <p>The priority of the rule in the rule group. This value must be unique within the rule group. DNS Firewall processes the rules in a rule group by order of priority, starting from the lowest setting.</p>
1240
1240
  * @public
1241
1241
  */
1242
- Priority?: number;
1242
+ Priority?: number | undefined;
1243
1243
  /**
1244
1244
  * <p>The action that DNS Firewall should take on a DNS query when it matches one of the domains in the rule's domain list:</p>
1245
1245
  * <ul>
@@ -1258,7 +1258,7 @@ export interface FirewallRule {
1258
1258
  * </ul>
1259
1259
  * @public
1260
1260
  */
1261
- Action?: Action;
1261
+ Action?: Action | undefined;
1262
1262
  /**
1263
1263
  * <p>The way that you want DNS Firewall to block the request. Used for the rule action setting <code>BLOCK</code>.</p>
1264
1264
  * <ul>
@@ -1277,38 +1277,38 @@ export interface FirewallRule {
1277
1277
  * </ul>
1278
1278
  * @public
1279
1279
  */
1280
- BlockResponse?: BlockResponse;
1280
+ BlockResponse?: BlockResponse | undefined;
1281
1281
  /**
1282
1282
  * <p>The custom DNS record to send back in response to the query. Used for the rule action <code>BLOCK</code> with a <code>BlockResponse</code> setting of <code>OVERRIDE</code>.</p>
1283
1283
  * @public
1284
1284
  */
1285
- BlockOverrideDomain?: string;
1285
+ BlockOverrideDomain?: string | undefined;
1286
1286
  /**
1287
1287
  * <p>The DNS record's type. This determines the format of the record value that you provided in <code>BlockOverrideDomain</code>. Used for the rule action <code>BLOCK</code> with a <code>BlockResponse</code> setting of <code>OVERRIDE</code>.</p>
1288
1288
  * @public
1289
1289
  */
1290
- BlockOverrideDnsType?: BlockOverrideDnsType;
1290
+ BlockOverrideDnsType?: BlockOverrideDnsType | undefined;
1291
1291
  /**
1292
1292
  * <p>The recommended amount of time, in seconds, for the DNS resolver or web browser to cache the provided override record. Used for the rule action <code>BLOCK</code> with a <code>BlockResponse</code> setting of <code>OVERRIDE</code>.</p>
1293
1293
  * @public
1294
1294
  */
1295
- BlockOverrideTtl?: number;
1295
+ BlockOverrideTtl?: number | undefined;
1296
1296
  /**
1297
1297
  * <p>A unique string defined by you to identify the request. This allows you to retry failed requests
1298
1298
  * without the risk of executing the operation twice. This can be any unique string, for example, a timestamp. </p>
1299
1299
  * @public
1300
1300
  */
1301
- CreatorRequestId?: string;
1301
+ CreatorRequestId?: string | undefined;
1302
1302
  /**
1303
1303
  * <p>The date and time that the rule was created, in Unix time format and Coordinated Universal Time (UTC). </p>
1304
1304
  * @public
1305
1305
  */
1306
- CreationTime?: string;
1306
+ CreationTime?: string | undefined;
1307
1307
  /**
1308
1308
  * <p>The date and time that the rule was last modified, in Unix time format and Coordinated Universal Time (UTC).</p>
1309
1309
  * @public
1310
1310
  */
1311
- ModificationTime?: string;
1311
+ ModificationTime?: string | undefined;
1312
1312
  /**
1313
1313
  * <p>
1314
1314
  * How you want the the rule to evaluate DNS redirection in the DNS redirection chain, such as CNAME or DNAME.
@@ -1321,7 +1321,7 @@ export interface FirewallRule {
1321
1321
  * the domain list.</p>
1322
1322
  * @public
1323
1323
  */
1324
- FirewallDomainRedirectionAction?: FirewallDomainRedirectionAction;
1324
+ FirewallDomainRedirectionAction?: FirewallDomainRedirectionAction | undefined;
1325
1325
  /**
1326
1326
  * <p>
1327
1327
  * The DNS query type you want the rule to evaluate. Allowed values are;
@@ -1377,7 +1377,7 @@ export interface FirewallRule {
1377
1377
  * </ul>
1378
1378
  * @public
1379
1379
  */
1380
- Qtype?: string;
1380
+ Qtype?: string | undefined;
1381
1381
  }
1382
1382
  /**
1383
1383
  * @public
@@ -1388,7 +1388,7 @@ export interface CreateFirewallRuleResponse {
1388
1388
  * firewall rule that you just created. </p>
1389
1389
  * @public
1390
1390
  */
1391
- FirewallRule?: FirewallRule;
1391
+ FirewallRule?: FirewallRule | undefined;
1392
1392
  }
1393
1393
  /**
1394
1394
  * @public
@@ -1400,7 +1400,7 @@ export interface CreateFirewallRuleGroupRequest {
1400
1400
  * for example, a timestamp. </p>
1401
1401
  * @public
1402
1402
  */
1403
- CreatorRequestId?: string;
1403
+ CreatorRequestId?: string | undefined;
1404
1404
  /**
1405
1405
  * <p>A name that lets you identify the rule group, to manage and use it.</p>
1406
1406
  * @public
@@ -1410,7 +1410,7 @@ export interface CreateFirewallRuleGroupRequest {
1410
1410
  * <p>A list of the tag keys and values that you want to associate with the rule group. </p>
1411
1411
  * @public
1412
1412
  */
1413
- Tags?: Tag[];
1413
+ Tags?: Tag[] | undefined;
1414
1414
  }
1415
1415
  /**
1416
1416
  * @public
@@ -1447,61 +1447,61 @@ export interface FirewallRuleGroup {
1447
1447
  * <p>The ID of the rule group. </p>
1448
1448
  * @public
1449
1449
  */
1450
- Id?: string;
1450
+ Id?: string | undefined;
1451
1451
  /**
1452
1452
  * <p>The ARN (Amazon Resource Name) of the rule group.</p>
1453
1453
  * @public
1454
1454
  */
1455
- Arn?: string;
1455
+ Arn?: string | undefined;
1456
1456
  /**
1457
1457
  * <p>The name of the rule group.</p>
1458
1458
  * @public
1459
1459
  */
1460
- Name?: string;
1460
+ Name?: string | undefined;
1461
1461
  /**
1462
1462
  * <p>The number of rules in the rule group.</p>
1463
1463
  * @public
1464
1464
  */
1465
- RuleCount?: number;
1465
+ RuleCount?: number | undefined;
1466
1466
  /**
1467
1467
  * <p>The status of the domain list. </p>
1468
1468
  * @public
1469
1469
  */
1470
- Status?: FirewallRuleGroupStatus;
1470
+ Status?: FirewallRuleGroupStatus | undefined;
1471
1471
  /**
1472
1472
  * <p>Additional information about the status of the rule group, if available.</p>
1473
1473
  * @public
1474
1474
  */
1475
- StatusMessage?: string;
1475
+ StatusMessage?: string | undefined;
1476
1476
  /**
1477
1477
  * <p>The Amazon Web Services account ID for the account that created the rule group. When a rule group is shared with your account,
1478
1478
  * this is the account that has shared the rule group with you. </p>
1479
1479
  * @public
1480
1480
  */
1481
- OwnerId?: string;
1481
+ OwnerId?: string | undefined;
1482
1482
  /**
1483
1483
  * <p>A unique string defined by you to identify the request. This allows you to retry failed
1484
1484
  * requests without the risk of running the operation twice. This can be any unique string,
1485
1485
  * for example, a timestamp. </p>
1486
1486
  * @public
1487
1487
  */
1488
- CreatorRequestId?: string;
1488
+ CreatorRequestId?: string | undefined;
1489
1489
  /**
1490
1490
  * <p>Whether the rule group is shared with other Amazon Web Services accounts, or was shared with the current account by another
1491
1491
  * Amazon Web Services account. Sharing is configured through Resource Access Manager (RAM).</p>
1492
1492
  * @public
1493
1493
  */
1494
- ShareStatus?: ShareStatus;
1494
+ ShareStatus?: ShareStatus | undefined;
1495
1495
  /**
1496
1496
  * <p>The date and time that the rule group was created, in Unix time format and Coordinated Universal Time (UTC). </p>
1497
1497
  * @public
1498
1498
  */
1499
- CreationTime?: string;
1499
+ CreationTime?: string | undefined;
1500
1500
  /**
1501
1501
  * <p>The date and time that the rule group was last modified, in Unix time format and Coordinated Universal Time (UTC).</p>
1502
1502
  * @public
1503
1503
  */
1504
- ModificationTime?: string;
1504
+ ModificationTime?: string | undefined;
1505
1505
  }
1506
1506
  /**
1507
1507
  * @public
@@ -1511,7 +1511,7 @@ export interface CreateFirewallRuleGroupResponse {
1511
1511
  * <p>A collection of rules used to filter DNS network traffic. </p>
1512
1512
  * @public
1513
1513
  */
1514
- FirewallRuleGroup?: FirewallRuleGroup;
1514
+ FirewallRuleGroup?: FirewallRuleGroup | undefined;
1515
1515
  }
1516
1516
  /**
1517
1517
  * @public
@@ -1537,7 +1537,7 @@ export interface CreateOutpostResolverRequest {
1537
1537
  * The default and minimal value is 4.</p>
1538
1538
  * @public
1539
1539
  */
1540
- InstanceCount?: number;
1540
+ InstanceCount?: number | undefined;
1541
1541
  /**
1542
1542
  * <p>
1543
1543
  * The Amazon EC2 instance type. If you specify this, you must also specify a value for the <code>OutpostArn</code>.
@@ -1556,7 +1556,7 @@ export interface CreateOutpostResolverRequest {
1556
1556
  * </p>
1557
1557
  * @public
1558
1558
  */
1559
- Tags?: Tag[];
1559
+ Tags?: Tag[] | undefined;
1560
1560
  }
1561
1561
  /**
1562
1562
  * @public
@@ -1584,60 +1584,60 @@ export interface OutpostResolver {
1584
1584
  * <p>The ARN (Amazon Resource Name) for the Resolver on an Outpost.</p>
1585
1585
  * @public
1586
1586
  */
1587
- Arn?: string;
1587
+ Arn?: string | undefined;
1588
1588
  /**
1589
1589
  * <p>The date and time that the Outpost Resolver was created, in Unix time format and Coordinated Universal Time (UTC).</p>
1590
1590
  * @public
1591
1591
  */
1592
- CreationTime?: string;
1592
+ CreationTime?: string | undefined;
1593
1593
  /**
1594
1594
  * <p>The date and time that the Outpost Resolver was modified, in Unix time format and Coordinated Universal Time (UTC).</p>
1595
1595
  * @public
1596
1596
  */
1597
- ModificationTime?: string;
1597
+ ModificationTime?: string | undefined;
1598
1598
  /**
1599
1599
  * <p>A unique string that identifies the request that created the Resolver endpoint.
1600
1600
  * The <code>CreatorRequestId</code> allows failed requests to be retried without the risk of running the operation twice.</p>
1601
1601
  * @public
1602
1602
  */
1603
- CreatorRequestId?: string;
1603
+ CreatorRequestId?: string | undefined;
1604
1604
  /**
1605
1605
  * <p>The ID of the Resolver on Outpost.</p>
1606
1606
  * @public
1607
1607
  */
1608
- Id?: string;
1608
+ Id?: string | undefined;
1609
1609
  /**
1610
1610
  * <p>Amazon EC2 instance count for the Resolver on the Outpost.</p>
1611
1611
  * @public
1612
1612
  */
1613
- InstanceCount?: number;
1613
+ InstanceCount?: number | undefined;
1614
1614
  /**
1615
1615
  * <p>
1616
1616
  * The Amazon EC2 instance type.
1617
1617
  * </p>
1618
1618
  * @public
1619
1619
  */
1620
- PreferredInstanceType?: string;
1620
+ PreferredInstanceType?: string | undefined;
1621
1621
  /**
1622
1622
  * <p>Name of the Resolver.</p>
1623
1623
  * @public
1624
1624
  */
1625
- Name?: string;
1625
+ Name?: string | undefined;
1626
1626
  /**
1627
1627
  * <p>Status of the Resolver.</p>
1628
1628
  * @public
1629
1629
  */
1630
- Status?: OutpostResolverStatus;
1630
+ Status?: OutpostResolverStatus | undefined;
1631
1631
  /**
1632
1632
  * <p>A detailed description of the Resolver.</p>
1633
1633
  * @public
1634
1634
  */
1635
- StatusMessage?: string;
1635
+ StatusMessage?: string | undefined;
1636
1636
  /**
1637
1637
  * <p>The ARN (Amazon Resource Name) for the Outpost.</p>
1638
1638
  * @public
1639
1639
  */
1640
- OutpostArn?: string;
1640
+ OutpostArn?: string | undefined;
1641
1641
  }
1642
1642
  /**
1643
1643
  * @public
@@ -1648,7 +1648,7 @@ export interface CreateOutpostResolverResponse {
1648
1648
  * request, including the status of the request.</p>
1649
1649
  * @public
1650
1650
  */
1651
- OutpostResolver?: OutpostResolver;
1651
+ OutpostResolver?: OutpostResolver | undefined;
1652
1652
  }
1653
1653
  /**
1654
1654
  * <p>Fulfilling the request would cause one or more quotas to be exceeded.</p>
@@ -1657,7 +1657,7 @@ export interface CreateOutpostResolverResponse {
1657
1657
  export declare class ServiceQuotaExceededException extends __BaseException {
1658
1658
  readonly name: "ServiceQuotaExceededException";
1659
1659
  readonly $fault: "client";
1660
- Message?: string;
1660
+ Message?: string | undefined;
1661
1661
  /**
1662
1662
  * @internal
1663
1663
  */
@@ -1680,14 +1680,14 @@ export interface IpAddressRequest {
1680
1680
  * <p>The IPv4 address that you want to use for DNS queries.</p>
1681
1681
  * @public
1682
1682
  */
1683
- Ip?: string;
1683
+ Ip?: string | undefined;
1684
1684
  /**
1685
1685
  * <p>
1686
1686
  * The IPv6 address that you want to use for DNS queries.
1687
1687
  * </p>
1688
1688
  * @public
1689
1689
  */
1690
- Ipv6?: string;
1690
+ Ipv6?: string | undefined;
1691
1691
  }
1692
1692
  /**
1693
1693
  * @public
@@ -1704,7 +1704,7 @@ export interface CreateResolverEndpointRequest {
1704
1704
  * <p>A friendly name that lets you easily find a configuration in the Resolver dashboard in the Route 53 console.</p>
1705
1705
  * @public
1706
1706
  */
1707
- Name?: string;
1707
+ Name?: string | undefined;
1708
1708
  /**
1709
1709
  * <p>The ID of one or more security groups that you want to use to control access to this VPC. The security group that you specify
1710
1710
  * must include one or more inbound rules (for inbound Resolver endpoints) or outbound rules (for outbound Resolver endpoints).
@@ -1746,17 +1746,17 @@ export interface CreateResolverEndpointRequest {
1746
1746
  * value for the <code>PreferredInstanceType</code>. </p>
1747
1747
  * @public
1748
1748
  */
1749
- OutpostArn?: string;
1749
+ OutpostArn?: string | undefined;
1750
1750
  /**
1751
1751
  * <p>The instance type. If you specify this, you must also specify a value for the <code>OutpostArn</code>.</p>
1752
1752
  * @public
1753
1753
  */
1754
- PreferredInstanceType?: string;
1754
+ PreferredInstanceType?: string | undefined;
1755
1755
  /**
1756
1756
  * <p>A list of the tag keys and values that you want to associate with the endpoint.</p>
1757
1757
  * @public
1758
1758
  */
1759
- Tags?: Tag[];
1759
+ Tags?: Tag[] | undefined;
1760
1760
  /**
1761
1761
  * <p>
1762
1762
  * For the endpoint type you can choose either IPv4, IPv6, or dual-stack.
@@ -1765,7 +1765,7 @@ export interface CreateResolverEndpointRequest {
1765
1765
  * </p>
1766
1766
  * @public
1767
1767
  */
1768
- ResolverEndpointType?: ResolverEndpointType;
1768
+ ResolverEndpointType?: ResolverEndpointType | undefined;
1769
1769
  /**
1770
1770
  * <p>
1771
1771
  * The protocols you want to use for the endpoint. DoH-FIPS is applicable for inbound endpoints only.
@@ -1808,7 +1808,7 @@ export interface CreateResolverEndpointRequest {
1808
1808
  * </ul>
1809
1809
  * @public
1810
1810
  */
1811
- Protocols?: Protocol[];
1811
+ Protocols?: Protocol[] | undefined;
1812
1812
  }
1813
1813
  /**
1814
1814
  * @public
@@ -1818,7 +1818,7 @@ export interface CreateResolverEndpointResponse {
1818
1818
  * <p>Information about the <code>CreateResolverEndpoint</code> request, including the status of the request.</p>
1819
1819
  * @public
1820
1820
  */
1821
- ResolverEndpoint?: ResolverEndpoint;
1821
+ ResolverEndpoint?: ResolverEndpoint | undefined;
1822
1822
  }
1823
1823
  /**
1824
1824
  * @public
@@ -1868,12 +1868,12 @@ export interface CreateResolverQueryLogConfigRequest {
1868
1868
  * any unique string, for example, a date/time stamp. </p>
1869
1869
  * @public
1870
1870
  */
1871
- CreatorRequestId?: string;
1871
+ CreatorRequestId?: string | undefined;
1872
1872
  /**
1873
1873
  * <p>A list of the tag keys and values that you want to associate with the query logging configuration.</p>
1874
1874
  * @public
1875
1875
  */
1876
- Tags?: Tag[];
1876
+ Tags?: Tag[] | undefined;
1877
1877
  }
1878
1878
  /**
1879
1879
  * @public
@@ -1904,12 +1904,12 @@ export interface ResolverQueryLogConfig {
1904
1904
  * <p>The ID for the query logging configuration.</p>
1905
1905
  * @public
1906
1906
  */
1907
- Id?: string;
1907
+ Id?: string | undefined;
1908
1908
  /**
1909
1909
  * <p>The Amazon Web Services account ID for the account that created the query logging configuration. </p>
1910
1910
  * @public
1911
1911
  */
1912
- OwnerId?: string;
1912
+ OwnerId?: string | undefined;
1913
1913
  /**
1914
1914
  * <p>The status of the specified query logging configuration. Valid values include the following:</p>
1915
1915
  * <ul>
@@ -1942,46 +1942,46 @@ export interface ResolverQueryLogConfig {
1942
1942
  * </ul>
1943
1943
  * @public
1944
1944
  */
1945
- Status?: ResolverQueryLogConfigStatus;
1945
+ Status?: ResolverQueryLogConfigStatus | undefined;
1946
1946
  /**
1947
1947
  * <p>An indication of whether the query logging configuration is shared with other Amazon Web Services accounts, or was shared with the current account by another
1948
1948
  * Amazon Web Services account. Sharing is configured through Resource Access Manager (RAM).</p>
1949
1949
  * @public
1950
1950
  */
1951
- ShareStatus?: ShareStatus;
1951
+ ShareStatus?: ShareStatus | undefined;
1952
1952
  /**
1953
1953
  * <p>The number of VPCs that are associated with the query logging configuration.</p>
1954
1954
  * @public
1955
1955
  */
1956
- AssociationCount?: number;
1956
+ AssociationCount?: number | undefined;
1957
1957
  /**
1958
1958
  * <p>The ARN for the query logging configuration.</p>
1959
1959
  * @public
1960
1960
  */
1961
- Arn?: string;
1961
+ Arn?: string | undefined;
1962
1962
  /**
1963
1963
  * <p>The name of the query logging configuration. </p>
1964
1964
  * @public
1965
1965
  */
1966
- Name?: string;
1966
+ Name?: string | undefined;
1967
1967
  /**
1968
1968
  * <p>The ARN of the resource that you want Resolver to send query logs: an Amazon S3 bucket, a CloudWatch Logs log group, or
1969
1969
  * a Kinesis Data Firehose delivery stream.</p>
1970
1970
  * @public
1971
1971
  */
1972
- DestinationArn?: string;
1972
+ DestinationArn?: string | undefined;
1973
1973
  /**
1974
1974
  * <p>A unique string that identifies the request that created the query logging configuration.
1975
1975
  * The <code>CreatorRequestId</code> allows failed requests to be retried without the risk
1976
1976
  * of running the operation twice.</p>
1977
1977
  * @public
1978
1978
  */
1979
- CreatorRequestId?: string;
1979
+ CreatorRequestId?: string | undefined;
1980
1980
  /**
1981
1981
  * <p>The date and time that the query logging configuration was created, in Unix time format and Coordinated Universal Time (UTC).</p>
1982
1982
  * @public
1983
1983
  */
1984
- CreationTime?: string;
1984
+ CreationTime?: string | undefined;
1985
1985
  }
1986
1986
  /**
1987
1987
  * @public
@@ -1991,7 +1991,7 @@ export interface CreateResolverQueryLogConfigResponse {
1991
1991
  * <p>Information about the <code>CreateResolverQueryLogConfig</code> request, including the status of the request.</p>
1992
1992
  * @public
1993
1993
  */
1994
- ResolverQueryLogConfig?: ResolverQueryLogConfig;
1994
+ ResolverQueryLogConfig?: ResolverQueryLogConfig | undefined;
1995
1995
  }
1996
1996
  /**
1997
1997
  * @public
@@ -2017,19 +2017,19 @@ export interface TargetAddress {
2017
2017
  * <p>One IPv4 address that you want to forward DNS queries to.</p>
2018
2018
  * @public
2019
2019
  */
2020
- Ip?: string;
2020
+ Ip?: string | undefined;
2021
2021
  /**
2022
2022
  * <p>The port at <code>Ip</code> that you want to forward DNS queries to.</p>
2023
2023
  * @public
2024
2024
  */
2025
- Port?: number;
2025
+ Port?: number | undefined;
2026
2026
  /**
2027
2027
  * <p>
2028
2028
  * One IPv6 address that you want to forward DNS queries to.
2029
2029
  * </p>
2030
2030
  * @public
2031
2031
  */
2032
- Ipv6?: string;
2032
+ Ipv6?: string | undefined;
2033
2033
  /**
2034
2034
  * <p>
2035
2035
  * The protocols for the Resolver endpoints. DoH-FIPS is applicable for inbound endpoints only.
@@ -2073,7 +2073,7 @@ export interface TargetAddress {
2073
2073
  * </ul>
2074
2074
  * @public
2075
2075
  */
2076
- Protocol?: Protocol;
2076
+ Protocol?: Protocol | undefined;
2077
2077
  /**
2078
2078
  * <p>
2079
2079
  * The Server Name Indication of the DoH server that you want to forward queries to.
@@ -2081,7 +2081,7 @@ export interface TargetAddress {
2081
2081
  * </p>
2082
2082
  * @public
2083
2083
  */
2084
- ServerNameIndication?: string;
2084
+ ServerNameIndication?: string | undefined;
2085
2085
  }
2086
2086
  /**
2087
2087
  * @public
@@ -2098,7 +2098,7 @@ export interface CreateResolverRuleRequest {
2098
2098
  * <p>A friendly name that lets you easily find a rule in the Resolver dashboard in the Route 53 console.</p>
2099
2099
  * @public
2100
2100
  */
2101
- Name?: string;
2101
+ Name?: string | undefined;
2102
2102
  /**
2103
2103
  * <p>When you want to forward DNS queries for specified domain name to resolvers on your network, specify <code>FORWARD</code>.</p>
2104
2104
  * <p>When you have a forwarding rule to forward DNS queries for a domain to your network and you want Resolver to process queries for
@@ -2116,25 +2116,25 @@ export interface CreateResolverRuleRequest {
2116
2116
  * the most specific domain name (www.example.com).</p>
2117
2117
  * @public
2118
2118
  */
2119
- DomainName?: string;
2119
+ DomainName?: string | undefined;
2120
2120
  /**
2121
2121
  * <p>The IPs that you want Resolver to forward DNS queries to. You can specify either Ipv4 or Ipv6 addresses but not both in the same rule. Separate IP addresses with a space.</p>
2122
2122
  * <p>
2123
2123
  * <code>TargetIps</code> is available only when the value of <code>Rule type</code> is <code>FORWARD</code>.</p>
2124
2124
  * @public
2125
2125
  */
2126
- TargetIps?: TargetAddress[];
2126
+ TargetIps?: TargetAddress[] | undefined;
2127
2127
  /**
2128
2128
  * <p>The ID of the outbound Resolver endpoint that you want to use to route DNS queries to the IP addresses that you specify
2129
2129
  * in <code>TargetIps</code>.</p>
2130
2130
  * @public
2131
2131
  */
2132
- ResolverEndpointId?: string;
2132
+ ResolverEndpointId?: string | undefined;
2133
2133
  /**
2134
2134
  * <p>A list of the tag keys and values that you want to associate with the endpoint.</p>
2135
2135
  * @public
2136
2136
  */
2137
- Tags?: Tag[];
2137
+ Tags?: Tag[] | undefined;
2138
2138
  }
2139
2139
  /**
2140
2140
  * @public
@@ -2166,36 +2166,36 @@ export interface ResolverRule {
2166
2166
  * <p>The ID that Resolver assigned to the Resolver rule when you created it.</p>
2167
2167
  * @public
2168
2168
  */
2169
- Id?: string;
2169
+ Id?: string | undefined;
2170
2170
  /**
2171
2171
  * <p>A unique string that you specified when you created the Resolver rule.
2172
2172
  * <code>CreatorRequestId</code> identifies the request and allows failed requests to
2173
2173
  * be retried without the risk of running the operation twice. </p>
2174
2174
  * @public
2175
2175
  */
2176
- CreatorRequestId?: string;
2176
+ CreatorRequestId?: string | undefined;
2177
2177
  /**
2178
2178
  * <p>The ARN (Amazon Resource Name) for the Resolver rule specified by <code>Id</code>.</p>
2179
2179
  * @public
2180
2180
  */
2181
- Arn?: string;
2181
+ Arn?: string | undefined;
2182
2182
  /**
2183
2183
  * <p>DNS queries for this domain name are forwarded to the IP addresses that are specified in <code>TargetIps</code>. If a query matches
2184
2184
  * multiple Resolver rules (example.com and www.example.com), the query is routed using the Resolver rule that contains the most specific domain name
2185
2185
  * (www.example.com).</p>
2186
2186
  * @public
2187
2187
  */
2188
- DomainName?: string;
2188
+ DomainName?: string | undefined;
2189
2189
  /**
2190
2190
  * <p>A code that specifies the current status of the Resolver rule.</p>
2191
2191
  * @public
2192
2192
  */
2193
- Status?: ResolverRuleStatus;
2193
+ Status?: ResolverRuleStatus | undefined;
2194
2194
  /**
2195
2195
  * <p>A detailed description of the status of a Resolver rule.</p>
2196
2196
  * @public
2197
2197
  */
2198
- StatusMessage?: string;
2198
+ StatusMessage?: string | undefined;
2199
2199
  /**
2200
2200
  * <p>When you want to forward DNS queries for specified domain name to resolvers on your network, specify <code>FORWARD</code>.</p>
2201
2201
  * <p>When you have a forwarding rule to forward DNS queries for a domain to your network and you want Resolver to process queries for
@@ -2206,44 +2206,44 @@ export interface ResolverRule {
2206
2206
  * <p>Currently, only Resolver can create rules that have a value of <code>RECURSIVE</code> for <code>RuleType</code>.</p>
2207
2207
  * @public
2208
2208
  */
2209
- RuleType?: RuleTypeOption;
2209
+ RuleType?: RuleTypeOption | undefined;
2210
2210
  /**
2211
2211
  * <p>The name for the Resolver rule, which you specified when you created the Resolver rule.</p>
2212
2212
  * @public
2213
2213
  */
2214
- Name?: string;
2214
+ Name?: string | undefined;
2215
2215
  /**
2216
2216
  * <p>An array that contains the IP addresses and ports that an outbound endpoint forwards DNS queries to. Typically,
2217
2217
  * these are the IP addresses of DNS resolvers on your network. </p>
2218
2218
  * @public
2219
2219
  */
2220
- TargetIps?: TargetAddress[];
2220
+ TargetIps?: TargetAddress[] | undefined;
2221
2221
  /**
2222
2222
  * <p>The ID of the endpoint that the rule is associated with.</p>
2223
2223
  * @public
2224
2224
  */
2225
- ResolverEndpointId?: string;
2225
+ ResolverEndpointId?: string | undefined;
2226
2226
  /**
2227
2227
  * <p>When a rule is shared with another Amazon Web Services account, the account ID of the account that the rule is shared with.</p>
2228
2228
  * @public
2229
2229
  */
2230
- OwnerId?: string;
2230
+ OwnerId?: string | undefined;
2231
2231
  /**
2232
2232
  * <p>Whether the rule is shared and, if so, whether the current account is sharing the rule with
2233
2233
  * another account, or another account is sharing the rule with the current account.</p>
2234
2234
  * @public
2235
2235
  */
2236
- ShareStatus?: ShareStatus;
2236
+ ShareStatus?: ShareStatus | undefined;
2237
2237
  /**
2238
2238
  * <p>The date and time that the Resolver rule was created, in Unix time format and Coordinated Universal Time (UTC).</p>
2239
2239
  * @public
2240
2240
  */
2241
- CreationTime?: string;
2241
+ CreationTime?: string | undefined;
2242
2242
  /**
2243
2243
  * <p>The date and time that the Resolver rule was last updated, in Unix time format and Coordinated Universal Time (UTC).</p>
2244
2244
  * @public
2245
2245
  */
2246
- ModificationTime?: string;
2246
+ ModificationTime?: string | undefined;
2247
2247
  }
2248
2248
  /**
2249
2249
  * @public
@@ -2253,7 +2253,7 @@ export interface CreateResolverRuleResponse {
2253
2253
  * <p>Information about the <code>CreateResolverRule</code> request, including the status of the request.</p>
2254
2254
  * @public
2255
2255
  */
2256
- ResolverRule?: ResolverRule;
2256
+ ResolverRule?: ResolverRule | undefined;
2257
2257
  }
2258
2258
  /**
2259
2259
  * @public
@@ -2273,7 +2273,7 @@ export interface DeleteFirewallDomainListResponse {
2273
2273
  * <p>The domain list that you just deleted. </p>
2274
2274
  * @public
2275
2275
  */
2276
- FirewallDomainList?: FirewallDomainList;
2276
+ FirewallDomainList?: FirewallDomainList | undefined;
2277
2277
  }
2278
2278
  /**
2279
2279
  * @public
@@ -2344,7 +2344,7 @@ export interface DeleteFirewallRuleRequest {
2344
2344
  * </ul>
2345
2345
  * @public
2346
2346
  */
2347
- Qtype?: string;
2347
+ Qtype?: string | undefined;
2348
2348
  }
2349
2349
  /**
2350
2350
  * @public
@@ -2354,7 +2354,7 @@ export interface DeleteFirewallRuleResponse {
2354
2354
  * <p>The specification for the firewall rule that you just deleted.</p>
2355
2355
  * @public
2356
2356
  */
2357
- FirewallRule?: FirewallRule;
2357
+ FirewallRule?: FirewallRule | undefined;
2358
2358
  }
2359
2359
  /**
2360
2360
  * @public
@@ -2374,7 +2374,7 @@ export interface DeleteFirewallRuleGroupResponse {
2374
2374
  * <p>A collection of rules used to filter DNS network traffic. </p>
2375
2375
  * @public
2376
2376
  */
2377
- FirewallRuleGroup?: FirewallRuleGroup;
2377
+ FirewallRuleGroup?: FirewallRuleGroup | undefined;
2378
2378
  }
2379
2379
  /**
2380
2380
  * @public
@@ -2395,7 +2395,7 @@ export interface DeleteOutpostResolverResponse {
2395
2395
  * request, including the status of the request.</p>
2396
2396
  * @public
2397
2397
  */
2398
- OutpostResolver?: OutpostResolver;
2398
+ OutpostResolver?: OutpostResolver | undefined;
2399
2399
  }
2400
2400
  /**
2401
2401
  * @public
@@ -2415,7 +2415,7 @@ export interface DeleteResolverEndpointResponse {
2415
2415
  * <p>Information about the <code>DeleteResolverEndpoint</code> request, including the status of the request.</p>
2416
2416
  * @public
2417
2417
  */
2418
- ResolverEndpoint?: ResolverEndpoint;
2418
+ ResolverEndpoint?: ResolverEndpoint | undefined;
2419
2419
  }
2420
2420
  /**
2421
2421
  * @public
@@ -2435,7 +2435,7 @@ export interface DeleteResolverQueryLogConfigResponse {
2435
2435
  * <p>Information about the query logging configuration that you deleted, including the status of the request.</p>
2436
2436
  * @public
2437
2437
  */
2438
- ResolverQueryLogConfig?: ResolverQueryLogConfig;
2438
+ ResolverQueryLogConfig?: ResolverQueryLogConfig | undefined;
2439
2439
  }
2440
2440
  /**
2441
2441
  * @public
@@ -2455,7 +2455,7 @@ export interface DeleteResolverRuleResponse {
2455
2455
  * <p>Information about the <code>DeleteResolverRule</code> request, including the status of the request.</p>
2456
2456
  * @public
2457
2457
  */
2458
- ResolverRule?: ResolverRule;
2458
+ ResolverRule?: ResolverRule | undefined;
2459
2459
  }
2460
2460
  /**
2461
2461
  * <p>The resource that you tried to update or delete is currently in use.</p>
@@ -2464,12 +2464,12 @@ export interface DeleteResolverRuleResponse {
2464
2464
  export declare class ResourceInUseException extends __BaseException {
2465
2465
  readonly name: "ResourceInUseException";
2466
2466
  readonly $fault: "client";
2467
- Message?: string;
2467
+ Message?: string | undefined;
2468
2468
  /**
2469
2469
  * <p>For a <code>ResourceInUseException</code> error, the type of resource that is currently in use.</p>
2470
2470
  * @public
2471
2471
  */
2472
- ResourceType?: string;
2472
+ ResourceType?: string | undefined;
2473
2473
  /**
2474
2474
  * @internal
2475
2475
  */
@@ -2493,7 +2493,7 @@ export interface DisassociateFirewallRuleGroupResponse {
2493
2493
  * <p>The firewall rule group association that you just removed. </p>
2494
2494
  * @public
2495
2495
  */
2496
- FirewallRuleGroupAssociation?: FirewallRuleGroupAssociation;
2496
+ FirewallRuleGroupAssociation?: FirewallRuleGroupAssociation | undefined;
2497
2497
  }
2498
2498
  /**
2499
2499
  * @public
@@ -2518,7 +2518,7 @@ export interface DisassociateResolverEndpointIpAddressResponse {
2518
2518
  * <p>The response to an <code>DisassociateResolverEndpointIpAddress</code> request.</p>
2519
2519
  * @public
2520
2520
  */
2521
- ResolverEndpoint?: ResolverEndpoint;
2521
+ ResolverEndpoint?: ResolverEndpoint | undefined;
2522
2522
  }
2523
2523
  /**
2524
2524
  * @public
@@ -2543,7 +2543,7 @@ export interface DisassociateResolverQueryLogConfigResponse {
2543
2543
  * <p>A complex type that contains settings for the association that you deleted between an Amazon VPC and a query logging configuration.</p>
2544
2544
  * @public
2545
2545
  */
2546
- ResolverQueryLogConfigAssociation?: ResolverQueryLogConfigAssociation;
2546
+ ResolverQueryLogConfigAssociation?: ResolverQueryLogConfigAssociation | undefined;
2547
2547
  }
2548
2548
  /**
2549
2549
  * @public
@@ -2568,7 +2568,7 @@ export interface DisassociateResolverRuleResponse {
2568
2568
  * <p>Information about the <code>DisassociateResolverRule</code> request, including the status of the request.</p>
2569
2569
  * @public
2570
2570
  */
2571
- ResolverRuleAssociation?: ResolverRuleAssociation;
2571
+ ResolverRuleAssociation?: ResolverRuleAssociation | undefined;
2572
2572
  }
2573
2573
  /**
2574
2574
  * <p>For Resolver list operations
@@ -2822,14 +2822,14 @@ export interface Filter {
2822
2822
  * </ul>
2823
2823
  * @public
2824
2824
  */
2825
- Name?: string;
2825
+ Name?: string | undefined;
2826
2826
  /**
2827
2827
  * <p>When you're using a <code>List</code> operation and you want the operation to return a subset of objects, such as Resolver endpoints or Resolver rules,
2828
2828
  * the value of the parameter that you want to use to filter objects. For example, to list only inbound Resolver endpoints, specify <code>Direction</code> for
2829
2829
  * <code>Name</code> and specify <code>INBOUND</code> for <code>Values</code>.</p>
2830
2830
  * @public
2831
2831
  */
2832
- Values?: string[];
2832
+ Values?: string[] | undefined;
2833
2833
  }
2834
2834
  /**
2835
2835
  * @public
@@ -2854,17 +2854,17 @@ export interface FirewallConfig {
2854
2854
  * <p>The ID of the firewall configuration.</p>
2855
2855
  * @public
2856
2856
  */
2857
- Id?: string;
2857
+ Id?: string | undefined;
2858
2858
  /**
2859
2859
  * <p>The ID of the VPC that this firewall configuration applies to.</p>
2860
2860
  * @public
2861
2861
  */
2862
- ResourceId?: string;
2862
+ ResourceId?: string | undefined;
2863
2863
  /**
2864
2864
  * <p>The Amazon Web Services account ID of the owner of the VPC that this firewall configuration applies to.</p>
2865
2865
  * @public
2866
2866
  */
2867
- OwnerId?: string;
2867
+ OwnerId?: string | undefined;
2868
2868
  /**
2869
2869
  * <p>Determines how DNS Firewall operates during failures, for example when all traffic that is sent to DNS Firewall fails to receive a reply. </p>
2870
2870
  * <ul>
@@ -2880,7 +2880,7 @@ export interface FirewallConfig {
2880
2880
  * <p>This behavior is only enforced for VPCs that have at least one DNS Firewall rule group association. </p>
2881
2881
  * @public
2882
2882
  */
2883
- FirewallFailOpen?: FirewallFailOpenStatus;
2883
+ FirewallFailOpen?: FirewallFailOpenStatus | undefined;
2884
2884
  }
2885
2885
  /**
2886
2886
  * @public
@@ -2903,29 +2903,29 @@ export interface FirewallDomainListMetadata {
2903
2903
  * <p>The ID of the domain list. </p>
2904
2904
  * @public
2905
2905
  */
2906
- Id?: string;
2906
+ Id?: string | undefined;
2907
2907
  /**
2908
2908
  * <p>The Amazon Resource Name (ARN) of the firewall domain list metadata.</p>
2909
2909
  * @public
2910
2910
  */
2911
- Arn?: string;
2911
+ Arn?: string | undefined;
2912
2912
  /**
2913
2913
  * <p>The name of the domain list. </p>
2914
2914
  * @public
2915
2915
  */
2916
- Name?: string;
2916
+ Name?: string | undefined;
2917
2917
  /**
2918
2918
  * <p>A unique string defined by you to identify the request. This allows you to retry failed
2919
2919
  * requests without the risk of running the operation twice. This can be any unique string,
2920
2920
  * for example, a timestamp. </p>
2921
2921
  * @public
2922
2922
  */
2923
- CreatorRequestId?: string;
2923
+ CreatorRequestId?: string | undefined;
2924
2924
  /**
2925
2925
  * <p>The owner of the list, used only for lists that are not managed by you. For example, the managed domain list <code>AWSManagedDomainsMalwareDomainList</code> has the managed owner name <code>Route 53 Resolver DNS Firewall</code>.</p>
2926
2926
  * @public
2927
2927
  */
2928
- ManagedOwnerName?: string;
2928
+ ManagedOwnerName?: string | undefined;
2929
2929
  }
2930
2930
  /**
2931
2931
  * @public
@@ -2950,36 +2950,36 @@ export interface FirewallRuleGroupMetadata {
2950
2950
  * <p>The ID of the rule group. </p>
2951
2951
  * @public
2952
2952
  */
2953
- Id?: string;
2953
+ Id?: string | undefined;
2954
2954
  /**
2955
2955
  * <p>The ARN (Amazon Resource Name) of the rule group.</p>
2956
2956
  * @public
2957
2957
  */
2958
- Arn?: string;
2958
+ Arn?: string | undefined;
2959
2959
  /**
2960
2960
  * <p>The name of the rule group.</p>
2961
2961
  * @public
2962
2962
  */
2963
- Name?: string;
2963
+ Name?: string | undefined;
2964
2964
  /**
2965
2965
  * <p>The Amazon Web Services account ID for the account that created the rule group. When a rule group is shared with your account,
2966
2966
  * this is the account that has shared the rule group with you. </p>
2967
2967
  * @public
2968
2968
  */
2969
- OwnerId?: string;
2969
+ OwnerId?: string | undefined;
2970
2970
  /**
2971
2971
  * <p>A unique string defined by you to identify the request. This allows you to retry failed
2972
2972
  * requests without the risk of running the operation twice. This can be any unique string,
2973
2973
  * for example, a timestamp. </p>
2974
2974
  * @public
2975
2975
  */
2976
- CreatorRequestId?: string;
2976
+ CreatorRequestId?: string | undefined;
2977
2977
  /**
2978
2978
  * <p>Whether the rule group is shared with other Amazon Web Services accounts, or was shared with the current account by another
2979
2979
  * Amazon Web Services account. Sharing is configured through Resource Access Manager (RAM).</p>
2980
2980
  * @public
2981
2981
  */
2982
- ShareStatus?: ShareStatus;
2982
+ ShareStatus?: ShareStatus | undefined;
2983
2983
  }
2984
2984
  /**
2985
2985
  * @public
@@ -3000,7 +3000,7 @@ export interface GetFirewallConfigResponse {
3000
3000
  * AmazonVPC. </p>
3001
3001
  * @public
3002
3002
  */
3003
- FirewallConfig?: FirewallConfig;
3003
+ FirewallConfig?: FirewallConfig | undefined;
3004
3004
  }
3005
3005
  /**
3006
3006
  * @public
@@ -3020,7 +3020,7 @@ export interface GetFirewallDomainListResponse {
3020
3020
  * <p>The domain list that you requested. </p>
3021
3021
  * @public
3022
3022
  */
3023
- FirewallDomainList?: FirewallDomainList;
3023
+ FirewallDomainList?: FirewallDomainList | undefined;
3024
3024
  }
3025
3025
  /**
3026
3026
  * @public
@@ -3040,7 +3040,7 @@ export interface GetFirewallRuleGroupResponse {
3040
3040
  * <p>A collection of rules used to filter DNS network traffic. </p>
3041
3041
  * @public
3042
3042
  */
3043
- FirewallRuleGroup?: FirewallRuleGroup;
3043
+ FirewallRuleGroup?: FirewallRuleGroup | undefined;
3044
3044
  }
3045
3045
  /**
3046
3046
  * @public
@@ -3060,7 +3060,7 @@ export interface GetFirewallRuleGroupAssociationResponse {
3060
3060
  * <p>The association that you requested. </p>
3061
3061
  * @public
3062
3062
  */
3063
- FirewallRuleGroupAssociation?: FirewallRuleGroupAssociation;
3063
+ FirewallRuleGroupAssociation?: FirewallRuleGroupAssociation | undefined;
3064
3064
  }
3065
3065
  /**
3066
3066
  * @public
@@ -3082,7 +3082,7 @@ export interface GetFirewallRuleGroupPolicyResponse {
3082
3082
  * (RAM). </p>
3083
3083
  * @public
3084
3084
  */
3085
- FirewallRuleGroupPolicy?: string;
3085
+ FirewallRuleGroupPolicy?: string | undefined;
3086
3086
  }
3087
3087
  /**
3088
3088
  * @public
@@ -3103,7 +3103,7 @@ export interface GetOutpostResolverResponse {
3103
3103
  * request, including the status of the request.</p>
3104
3104
  * @public
3105
3105
  */
3106
- OutpostResolver?: OutpostResolver;
3106
+ OutpostResolver?: OutpostResolver | undefined;
3107
3107
  }
3108
3108
  /**
3109
3109
  * @public
@@ -3140,17 +3140,17 @@ export interface ResolverConfig {
3140
3140
  * <p>ID for the Resolver configuration.</p>
3141
3141
  * @public
3142
3142
  */
3143
- Id?: string;
3143
+ Id?: string | undefined;
3144
3144
  /**
3145
3145
  * <p>The ID of the Amazon Virtual Private Cloud VPC that you're configuring Resolver for.</p>
3146
3146
  * @public
3147
3147
  */
3148
- ResourceId?: string;
3148
+ ResourceId?: string | undefined;
3149
3149
  /**
3150
3150
  * <p>The owner account ID of the Amazon Virtual Private Cloud VPC.</p>
3151
3151
  * @public
3152
3152
  */
3153
- OwnerId?: string;
3153
+ OwnerId?: string | undefined;
3154
3154
  /**
3155
3155
  * <p> The status of whether or not the Resolver will create autodefined rules for reverse DNS
3156
3156
  * lookups. This is enabled by default. The status can be one of following:</p>
@@ -3178,7 +3178,7 @@ export interface ResolverConfig {
3178
3178
  * </ul>
3179
3179
  * @public
3180
3180
  */
3181
- AutodefinedReverse?: ResolverAutodefinedReverseStatus;
3181
+ AutodefinedReverse?: ResolverAutodefinedReverseStatus | undefined;
3182
3182
  }
3183
3183
  /**
3184
3184
  * @public
@@ -3189,7 +3189,7 @@ export interface GetResolverConfigResponse {
3189
3189
  * specified in the <code>GetResolverConfig</code> request.</p>
3190
3190
  * @public
3191
3191
  */
3192
- ResolverConfig?: ResolverConfig;
3192
+ ResolverConfig?: ResolverConfig | undefined;
3193
3193
  }
3194
3194
  /**
3195
3195
  * @public
@@ -3226,17 +3226,17 @@ export interface ResolverDnssecConfig {
3226
3226
  * <p>The ID for a configuration for DNSSEC validation.</p>
3227
3227
  * @public
3228
3228
  */
3229
- Id?: string;
3229
+ Id?: string | undefined;
3230
3230
  /**
3231
3231
  * <p>The owner account ID of the virtual private cloud (VPC) for a configuration for DNSSEC validation.</p>
3232
3232
  * @public
3233
3233
  */
3234
- OwnerId?: string;
3234
+ OwnerId?: string | undefined;
3235
3235
  /**
3236
3236
  * <p>The ID of the virtual private cloud (VPC) that you're configuring the DNSSEC validation status for.</p>
3237
3237
  * @public
3238
3238
  */
3239
- ResourceId?: string;
3239
+ ResourceId?: string | undefined;
3240
3240
  /**
3241
3241
  * <p>The validation status for a DNSSEC configuration. The status can be one of the following:</p>
3242
3242
  * <ul>
@@ -3259,7 +3259,7 @@ export interface ResolverDnssecConfig {
3259
3259
  * </ul>
3260
3260
  * @public
3261
3261
  */
3262
- ValidationStatus?: ResolverDNSSECValidationStatus;
3262
+ ValidationStatus?: ResolverDNSSECValidationStatus | undefined;
3263
3263
  }
3264
3264
  /**
3265
3265
  * @public
@@ -3269,7 +3269,7 @@ export interface GetResolverDnssecConfigResponse {
3269
3269
  * <p>The information about a configuration for DNSSEC validation.</p>
3270
3270
  * @public
3271
3271
  */
3272
- ResolverDNSSECConfig?: ResolverDnssecConfig;
3272
+ ResolverDNSSECConfig?: ResolverDnssecConfig | undefined;
3273
3273
  }
3274
3274
  /**
3275
3275
  * @public
@@ -3289,7 +3289,7 @@ export interface GetResolverEndpointResponse {
3289
3289
  * <p>Information about the Resolver endpoint that you specified in a <code>GetResolverEndpoint</code> request.</p>
3290
3290
  * @public
3291
3291
  */
3292
- ResolverEndpoint?: ResolverEndpoint;
3292
+ ResolverEndpoint?: ResolverEndpoint | undefined;
3293
3293
  }
3294
3294
  /**
3295
3295
  * @public
@@ -3309,7 +3309,7 @@ export interface GetResolverQueryLogConfigResponse {
3309
3309
  * <p>Information about the Resolver query logging configuration that you specified in a <code>GetQueryLogConfig</code> request.</p>
3310
3310
  * @public
3311
3311
  */
3312
- ResolverQueryLogConfig?: ResolverQueryLogConfig;
3312
+ ResolverQueryLogConfig?: ResolverQueryLogConfig | undefined;
3313
3313
  }
3314
3314
  /**
3315
3315
  * @public
@@ -3329,7 +3329,7 @@ export interface GetResolverQueryLogConfigAssociationResponse {
3329
3329
  * <p>Information about the Resolver query logging configuration association that you specified in a <code>GetQueryLogConfigAssociation</code> request.</p>
3330
3330
  * @public
3331
3331
  */
3332
- ResolverQueryLogConfigAssociation?: ResolverQueryLogConfigAssociation;
3332
+ ResolverQueryLogConfigAssociation?: ResolverQueryLogConfigAssociation | undefined;
3333
3333
  }
3334
3334
  /**
3335
3335
  * @public
@@ -3350,7 +3350,7 @@ export interface GetResolverQueryLogConfigPolicyResponse {
3350
3350
  * <code>GetResolverQueryLogConfigPolicy</code> request.</p>
3351
3351
  * @public
3352
3352
  */
3353
- ResolverQueryLogConfigPolicy?: string;
3353
+ ResolverQueryLogConfigPolicy?: string | undefined;
3354
3354
  }
3355
3355
  /**
3356
3356
  * <p>The specified resource doesn't exist.</p>
@@ -3359,7 +3359,7 @@ export interface GetResolverQueryLogConfigPolicyResponse {
3359
3359
  export declare class UnknownResourceException extends __BaseException {
3360
3360
  readonly name: "UnknownResourceException";
3361
3361
  readonly $fault: "client";
3362
- Message?: string;
3362
+ Message?: string | undefined;
3363
3363
  /**
3364
3364
  * @internal
3365
3365
  */
@@ -3383,7 +3383,7 @@ export interface GetResolverRuleResponse {
3383
3383
  * <p>Information about the Resolver rule that you specified in a <code>GetResolverRule</code> request.</p>
3384
3384
  * @public
3385
3385
  */
3386
- ResolverRule?: ResolverRule;
3386
+ ResolverRule?: ResolverRule | undefined;
3387
3387
  }
3388
3388
  /**
3389
3389
  * @public
@@ -3403,7 +3403,7 @@ export interface GetResolverRuleAssociationResponse {
3403
3403
  * <p>Information about the Resolver rule association that you specified in a <code>GetResolverRuleAssociation</code> request.</p>
3404
3404
  * @public
3405
3405
  */
3406
- ResolverRuleAssociation?: ResolverRuleAssociation;
3406
+ ResolverRuleAssociation?: ResolverRuleAssociation | undefined;
3407
3407
  }
3408
3408
  /**
3409
3409
  * @public
@@ -3423,7 +3423,7 @@ export interface GetResolverRulePolicyResponse {
3423
3423
  * <p>The Resolver rule policy for the rule that you specified in a <code>GetResolverRulePolicy</code> request.</p>
3424
3424
  * @public
3425
3425
  */
3426
- ResolverRulePolicy?: string;
3426
+ ResolverRulePolicy?: string | undefined;
3427
3427
  }
3428
3428
  /**
3429
3429
  * @public
@@ -3456,22 +3456,22 @@ export interface ImportFirewallDomainsResponse {
3456
3456
  * <p>The Id of the firewall domain list that DNS Firewall just updated.</p>
3457
3457
  * @public
3458
3458
  */
3459
- Id?: string;
3459
+ Id?: string | undefined;
3460
3460
  /**
3461
3461
  * <p>The name of the domain list. </p>
3462
3462
  * @public
3463
3463
  */
3464
- Name?: string;
3464
+ Name?: string | undefined;
3465
3465
  /**
3466
3466
  * <p>Status of the import request.</p>
3467
3467
  * @public
3468
3468
  */
3469
- Status?: FirewallDomainListStatus;
3469
+ Status?: FirewallDomainListStatus | undefined;
3470
3470
  /**
3471
3471
  * <p>Additional information about the status of the list, if available.</p>
3472
3472
  * @public
3473
3473
  */
3474
- StatusMessage?: string;
3474
+ StatusMessage?: string | undefined;
3475
3475
  }
3476
3476
  /**
3477
3477
  * <p>The value that you specified for <code>NextToken</code> in a <code>List</code> request isn't valid.</p>
@@ -3480,7 +3480,7 @@ export interface ImportFirewallDomainsResponse {
3480
3480
  export declare class InvalidNextTokenException extends __BaseException {
3481
3481
  readonly name: "InvalidNextTokenException";
3482
3482
  readonly $fault: "client";
3483
- Message?: string;
3483
+ Message?: string | undefined;
3484
3484
  /**
3485
3485
  * @internal
3486
3486
  */
@@ -3493,7 +3493,7 @@ export declare class InvalidNextTokenException extends __BaseException {
3493
3493
  export declare class InvalidPolicyDocument extends __BaseException {
3494
3494
  readonly name: "InvalidPolicyDocument";
3495
3495
  readonly $fault: "client";
3496
- Message?: string;
3496
+ Message?: string | undefined;
3497
3497
  /**
3498
3498
  * @internal
3499
3499
  */
@@ -3506,7 +3506,7 @@ export declare class InvalidPolicyDocument extends __BaseException {
3506
3506
  export declare class InvalidTagException extends __BaseException {
3507
3507
  readonly name: "InvalidTagException";
3508
3508
  readonly $fault: "client";
3509
- Message?: string;
3509
+ Message?: string | undefined;
3510
3510
  /**
3511
3511
  * @internal
3512
3512
  */
@@ -3545,44 +3545,44 @@ export interface IpAddressResponse {
3545
3545
  * <p>The ID of one IP address.</p>
3546
3546
  * @public
3547
3547
  */
3548
- IpId?: string;
3548
+ IpId?: string | undefined;
3549
3549
  /**
3550
3550
  * <p>The ID of one subnet.</p>
3551
3551
  * @public
3552
3552
  */
3553
- SubnetId?: string;
3553
+ SubnetId?: string | undefined;
3554
3554
  /**
3555
3555
  * <p>One IPv4 address that the Resolver endpoint uses for DNS queries.</p>
3556
3556
  * @public
3557
3557
  */
3558
- Ip?: string;
3558
+ Ip?: string | undefined;
3559
3559
  /**
3560
3560
  * <p>
3561
3561
  * One IPv6 address that the Resolver endpoint uses for DNS queries.
3562
3562
  * </p>
3563
3563
  * @public
3564
3564
  */
3565
- Ipv6?: string;
3565
+ Ipv6?: string | undefined;
3566
3566
  /**
3567
3567
  * <p>A status code that gives the current status of the request.</p>
3568
3568
  * @public
3569
3569
  */
3570
- Status?: IpAddressStatus;
3570
+ Status?: IpAddressStatus | undefined;
3571
3571
  /**
3572
3572
  * <p>A message that provides additional information about the status of the request.</p>
3573
3573
  * @public
3574
3574
  */
3575
- StatusMessage?: string;
3575
+ StatusMessage?: string | undefined;
3576
3576
  /**
3577
3577
  * <p>The date and time that the IP address was created, in Unix time format and Coordinated Universal Time (UTC).</p>
3578
3578
  * @public
3579
3579
  */
3580
- CreationTime?: string;
3580
+ CreationTime?: string | undefined;
3581
3581
  /**
3582
3582
  * <p>The date and time that the IP address was last modified, in Unix time format and Coordinated Universal Time (UTC).</p>
3583
3583
  * @public
3584
3584
  */
3585
- ModificationTime?: string;
3585
+ ModificationTime?: string | undefined;
3586
3586
  }
3587
3587
  /**
3588
3588
  * @public
@@ -3595,7 +3595,7 @@ export interface ListFirewallConfigsRequest {
3595
3595
  * <p>If you don't specify a value for <code>MaxResults</code>, Resolver returns up to 100 objects. </p>
3596
3596
  * @public
3597
3597
  */
3598
- MaxResults?: number;
3598
+ MaxResults?: number | undefined;
3599
3599
  /**
3600
3600
  * <p>For the first call to this list request, omit this value.</p>
3601
3601
  * <p>When you request a list of objects, Resolver returns at most the number of objects
@@ -3604,7 +3604,7 @@ export interface ListFirewallConfigsRequest {
3604
3604
  * batch of objects, use the token that was returned for the prior request in your next request.</p>
3605
3605
  * @public
3606
3606
  */
3607
- NextToken?: string;
3607
+ NextToken?: string | undefined;
3608
3608
  }
3609
3609
  /**
3610
3610
  * @public
@@ -3615,13 +3615,13 @@ export interface ListFirewallConfigsResponse {
3615
3615
  * To retrieve the next batch of objects, provide this token in your next request.</p>
3616
3616
  * @public
3617
3617
  */
3618
- NextToken?: string;
3618
+ NextToken?: string | undefined;
3619
3619
  /**
3620
3620
  * <p>The configurations for the firewall behavior provided by DNS Firewall for VPCs from
3621
3621
  * Amazon Virtual Private Cloud (Amazon VPC). </p>
3622
3622
  * @public
3623
3623
  */
3624
- FirewallConfigs?: FirewallConfig[];
3624
+ FirewallConfigs?: FirewallConfig[] | undefined;
3625
3625
  }
3626
3626
  /**
3627
3627
  * @public
@@ -3634,7 +3634,7 @@ export interface ListFirewallDomainListsRequest {
3634
3634
  * <p>If you don't specify a value for <code>MaxResults</code>, Resolver returns up to 100 objects. </p>
3635
3635
  * @public
3636
3636
  */
3637
- MaxResults?: number;
3637
+ MaxResults?: number | undefined;
3638
3638
  /**
3639
3639
  * <p>For the first call to this list request, omit this value.</p>
3640
3640
  * <p>When you request a list of objects, Resolver returns at most the number of objects
@@ -3643,7 +3643,7 @@ export interface ListFirewallDomainListsRequest {
3643
3643
  * batch of objects, use the token that was returned for the prior request in your next request.</p>
3644
3644
  * @public
3645
3645
  */
3646
- NextToken?: string;
3646
+ NextToken?: string | undefined;
3647
3647
  }
3648
3648
  /**
3649
3649
  * @public
@@ -3654,14 +3654,14 @@ export interface ListFirewallDomainListsResponse {
3654
3654
  * To retrieve the next batch of objects, provide this token in your next request.</p>
3655
3655
  * @public
3656
3656
  */
3657
- NextToken?: string;
3657
+ NextToken?: string | undefined;
3658
3658
  /**
3659
3659
  * <p>A list of the domain lists that you have defined. </p>
3660
3660
  * <p>This might be a partial list of the domain lists that you've defined. For information,
3661
3661
  * see <code>MaxResults</code>. </p>
3662
3662
  * @public
3663
3663
  */
3664
- FirewallDomainLists?: FirewallDomainListMetadata[];
3664
+ FirewallDomainLists?: FirewallDomainListMetadata[] | undefined;
3665
3665
  }
3666
3666
  /**
3667
3667
  * @public
@@ -3679,7 +3679,7 @@ export interface ListFirewallDomainsRequest {
3679
3679
  * <p>If you don't specify a value for <code>MaxResults</code>, Resolver returns up to 100 objects. </p>
3680
3680
  * @public
3681
3681
  */
3682
- MaxResults?: number;
3682
+ MaxResults?: number | undefined;
3683
3683
  /**
3684
3684
  * <p>For the first call to this list request, omit this value.</p>
3685
3685
  * <p>When you request a list of objects, Resolver returns at most the number of objects
@@ -3688,7 +3688,7 @@ export interface ListFirewallDomainsRequest {
3688
3688
  * batch of objects, use the token that was returned for the prior request in your next request.</p>
3689
3689
  * @public
3690
3690
  */
3691
- NextToken?: string;
3691
+ NextToken?: string | undefined;
3692
3692
  }
3693
3693
  /**
3694
3694
  * @public
@@ -3699,14 +3699,14 @@ export interface ListFirewallDomainsResponse {
3699
3699
  * To retrieve the next batch of objects, provide this token in your next request.</p>
3700
3700
  * @public
3701
3701
  */
3702
- NextToken?: string;
3702
+ NextToken?: string | undefined;
3703
3703
  /**
3704
3704
  * <p>A list of the domains in the firewall domain list. </p>
3705
3705
  * <p>This might be a partial list of the domains that you've defined in the domain list. For
3706
3706
  * information, see <code>MaxResults</code>. </p>
3707
3707
  * @public
3708
3708
  */
3709
- Domains?: string[];
3709
+ Domains?: string[] | undefined;
3710
3710
  }
3711
3711
  /**
3712
3712
  * @public
@@ -3717,25 +3717,25 @@ export interface ListFirewallRuleGroupAssociationsRequest {
3717
3717
  * for. Leave this blank to retrieve associations for any rule group. </p>
3718
3718
  * @public
3719
3719
  */
3720
- FirewallRuleGroupId?: string;
3720
+ FirewallRuleGroupId?: string | undefined;
3721
3721
  /**
3722
3722
  * <p>The unique identifier of the VPC that you want to retrieve the associations
3723
3723
  * for. Leave this blank to retrieve associations for any VPC. </p>
3724
3724
  * @public
3725
3725
  */
3726
- VpcId?: string;
3726
+ VpcId?: string | undefined;
3727
3727
  /**
3728
3728
  * <p>The setting that determines the processing order of the rule group among the rule
3729
3729
  * groups that are associated with a single VPC. DNS Firewall filters VPC traffic starting
3730
3730
  * from the rule group with the lowest numeric priority setting. </p>
3731
3731
  * @public
3732
3732
  */
3733
- Priority?: number;
3733
+ Priority?: number | undefined;
3734
3734
  /**
3735
3735
  * <p>The association <code>Status</code> setting that you want DNS Firewall to filter on for the list. If you don't specify this, then DNS Firewall returns all associations, regardless of status.</p>
3736
3736
  * @public
3737
3737
  */
3738
- Status?: FirewallRuleGroupAssociationStatus;
3738
+ Status?: FirewallRuleGroupAssociationStatus | undefined;
3739
3739
  /**
3740
3740
  * <p>The maximum number of objects that you want Resolver to return for this request. If more
3741
3741
  * objects are available, in the response, Resolver provides a
@@ -3743,7 +3743,7 @@ export interface ListFirewallRuleGroupAssociationsRequest {
3743
3743
  * <p>If you don't specify a value for <code>MaxResults</code>, Resolver returns up to 100 objects. </p>
3744
3744
  * @public
3745
3745
  */
3746
- MaxResults?: number;
3746
+ MaxResults?: number | undefined;
3747
3747
  /**
3748
3748
  * <p>For the first call to this list request, omit this value.</p>
3749
3749
  * <p>When you request a list of objects, Resolver returns at most the number of objects
@@ -3752,7 +3752,7 @@ export interface ListFirewallRuleGroupAssociationsRequest {
3752
3752
  * batch of objects, use the token that was returned for the prior request in your next request.</p>
3753
3753
  * @public
3754
3754
  */
3755
- NextToken?: string;
3755
+ NextToken?: string | undefined;
3756
3756
  }
3757
3757
  /**
3758
3758
  * @public
@@ -3763,13 +3763,13 @@ export interface ListFirewallRuleGroupAssociationsResponse {
3763
3763
  * To retrieve the next batch of objects, provide this token in your next request.</p>
3764
3764
  * @public
3765
3765
  */
3766
- NextToken?: string;
3766
+ NextToken?: string | undefined;
3767
3767
  /**
3768
3768
  * <p>A list of your firewall rule group associations.</p>
3769
3769
  * <p>This might be a partial list of the associations that you have defined. For information, see <code>MaxResults</code>. </p>
3770
3770
  * @public
3771
3771
  */
3772
- FirewallRuleGroupAssociations?: FirewallRuleGroupAssociation[];
3772
+ FirewallRuleGroupAssociations?: FirewallRuleGroupAssociation[] | undefined;
3773
3773
  }
3774
3774
  /**
3775
3775
  * @public
@@ -3782,7 +3782,7 @@ export interface ListFirewallRuleGroupsRequest {
3782
3782
  * <p>If you don't specify a value for <code>MaxResults</code>, Resolver returns up to 100 objects. </p>
3783
3783
  * @public
3784
3784
  */
3785
- MaxResults?: number;
3785
+ MaxResults?: number | undefined;
3786
3786
  /**
3787
3787
  * <p>For the first call to this list request, omit this value.</p>
3788
3788
  * <p>When you request a list of objects, Resolver returns at most the number of objects
@@ -3791,7 +3791,7 @@ export interface ListFirewallRuleGroupsRequest {
3791
3791
  * batch of objects, use the token that was returned for the prior request in your next request.</p>
3792
3792
  * @public
3793
3793
  */
3794
- NextToken?: string;
3794
+ NextToken?: string | undefined;
3795
3795
  }
3796
3796
  /**
3797
3797
  * @public
@@ -3802,13 +3802,13 @@ export interface ListFirewallRuleGroupsResponse {
3802
3802
  * To retrieve the next batch of objects, provide this token in your next request.</p>
3803
3803
  * @public
3804
3804
  */
3805
- NextToken?: string;
3805
+ NextToken?: string | undefined;
3806
3806
  /**
3807
3807
  * <p>A list of your firewall rule groups.</p>
3808
3808
  * <p>This might be a partial list of the rule groups that you have defined. For information, see <code>MaxResults</code>. </p>
3809
3809
  * @public
3810
3810
  */
3811
- FirewallRuleGroups?: FirewallRuleGroupMetadata[];
3811
+ FirewallRuleGroups?: FirewallRuleGroupMetadata[] | undefined;
3812
3812
  }
3813
3813
  /**
3814
3814
  * @public
@@ -3825,7 +3825,7 @@ export interface ListFirewallRulesRequest {
3825
3825
  * processes the rules in a rule group by order of priority, starting from the lowest setting.</p>
3826
3826
  * @public
3827
3827
  */
3828
- Priority?: number;
3828
+ Priority?: number | undefined;
3829
3829
  /**
3830
3830
  * <p>Optional additional filter for the rules to retrieve.</p>
3831
3831
  * <p>The action that DNS Firewall should take on a DNS query when it matches one of the domains in the rule's domain list:</p>
@@ -3845,7 +3845,7 @@ export interface ListFirewallRulesRequest {
3845
3845
  * </ul>
3846
3846
  * @public
3847
3847
  */
3848
- Action?: Action;
3848
+ Action?: Action | undefined;
3849
3849
  /**
3850
3850
  * <p>The maximum number of objects that you want Resolver to return for this request. If more
3851
3851
  * objects are available, in the response, Resolver provides a
@@ -3853,7 +3853,7 @@ export interface ListFirewallRulesRequest {
3853
3853
  * <p>If you don't specify a value for <code>MaxResults</code>, Resolver returns up to 100 objects. </p>
3854
3854
  * @public
3855
3855
  */
3856
- MaxResults?: number;
3856
+ MaxResults?: number | undefined;
3857
3857
  /**
3858
3858
  * <p>For the first call to this list request, omit this value.</p>
3859
3859
  * <p>When you request a list of objects, Resolver returns at most the number of objects
@@ -3862,7 +3862,7 @@ export interface ListFirewallRulesRequest {
3862
3862
  * batch of objects, use the token that was returned for the prior request in your next request.</p>
3863
3863
  * @public
3864
3864
  */
3865
- NextToken?: string;
3865
+ NextToken?: string | undefined;
3866
3866
  }
3867
3867
  /**
3868
3868
  * @public
@@ -3873,14 +3873,14 @@ export interface ListFirewallRulesResponse {
3873
3873
  * To retrieve the next batch of objects, provide this token in your next request.</p>
3874
3874
  * @public
3875
3875
  */
3876
- NextToken?: string;
3876
+ NextToken?: string | undefined;
3877
3877
  /**
3878
3878
  * <p>A list of the rules that you have defined. </p>
3879
3879
  * <p>This might be a partial list of the firewall rules that you've defined. For information,
3880
3880
  * see <code>MaxResults</code>. </p>
3881
3881
  * @public
3882
3882
  */
3883
- FirewallRules?: FirewallRule[];
3883
+ FirewallRules?: FirewallRule[] | undefined;
3884
3884
  }
3885
3885
  /**
3886
3886
  * @public
@@ -3890,20 +3890,20 @@ export interface ListOutpostResolversRequest {
3890
3890
  * <p>The Amazon Resource Name (ARN) of the Outpost.</p>
3891
3891
  * @public
3892
3892
  */
3893
- OutpostArn?: string;
3893
+ OutpostArn?: string | undefined;
3894
3894
  /**
3895
3895
  * <p>The maximum number of Resolvers on the Outpost that you want to return in the response to a
3896
3896
  * <code>ListOutpostResolver</code> request. If you don't specify a value for
3897
3897
  * <code>MaxResults</code>, the request returns up to 100 Resolvers.</p>
3898
3898
  * @public
3899
3899
  */
3900
- MaxResults?: number;
3900
+ MaxResults?: number | undefined;
3901
3901
  /**
3902
3902
  * <p>For the first <code>ListOutpostResolver</code> request, omit this value.</p>
3903
3903
  * <p></p>
3904
3904
  * @public
3905
3905
  */
3906
- NextToken?: string;
3906
+ NextToken?: string | undefined;
3907
3907
  }
3908
3908
  /**
3909
3909
  * @public
@@ -3914,13 +3914,13 @@ export interface ListOutpostResolversResponse {
3914
3914
  * and that match the specified filters, if any.</p>
3915
3915
  * @public
3916
3916
  */
3917
- OutpostResolvers?: OutpostResolver[];
3917
+ OutpostResolvers?: OutpostResolver[] | undefined;
3918
3918
  /**
3919
3919
  * <p>If more than <code>MaxResults</code> Resolvers match the specified criteria, you can submit another
3920
3920
  * <code>ListOutpostResolver</code> request to get the next group of results. In the next request, specify the value of <code>NextToken</code> from the previous response.</p>
3921
3921
  * @public
3922
3922
  */
3923
- NextToken?: string;
3923
+ NextToken?: string | undefined;
3924
3924
  }
3925
3925
  /**
3926
3926
  * @public
@@ -3932,7 +3932,7 @@ export interface ListResolverConfigsRequest {
3932
3932
  * up to 100 Resolver configurations are returned.</p>
3933
3933
  * @public
3934
3934
  */
3935
- MaxResults?: number;
3935
+ MaxResults?: number | undefined;
3936
3936
  /**
3937
3937
  * <p>(Optional) If the current Amazon Web Services account has more than <code>MaxResults</code> Resolver configurations, use
3938
3938
  * <code>NextToken</code> to get the second and subsequent pages of results.</p>
@@ -3941,7 +3941,7 @@ export interface ListResolverConfigsRequest {
3941
3941
  * specify that value for <code>NextToken</code> in the request.</p>
3942
3942
  * @public
3943
3943
  */
3944
- NextToken?: string;
3944
+ NextToken?: string | undefined;
3945
3945
  }
3946
3946
  /**
3947
3947
  * @public
@@ -3956,13 +3956,13 @@ export interface ListResolverConfigsResponse {
3956
3956
  * <code>NextToken</code> in the next request.</p>
3957
3957
  * @public
3958
3958
  */
3959
- NextToken?: string;
3959
+ NextToken?: string | undefined;
3960
3960
  /**
3961
3961
  * <p>An array that contains one <code>ResolverConfigs</code> element for each Resolver configuration that is associated
3962
3962
  * with the current Amazon Web Services account.</p>
3963
3963
  * @public
3964
3964
  */
3965
- ResolverConfigs?: ResolverConfig[];
3965
+ ResolverConfigs?: ResolverConfig[] | undefined;
3966
3966
  }
3967
3967
  /**
3968
3968
  * @public
@@ -3974,7 +3974,7 @@ export interface ListResolverDnssecConfigsRequest {
3974
3974
  * If you don't specify a value for <code>MaxResults</code>, Route 53 returns up to 100 configuration per page.</p>
3975
3975
  * @public
3976
3976
  */
3977
- MaxResults?: number;
3977
+ MaxResults?: number | undefined;
3978
3978
  /**
3979
3979
  * <p>(Optional) If the current Amazon Web Services account has more than <code>MaxResults</code> DNSSEC configurations, use <code>NextToken</code>
3980
3980
  * to get the second and subsequent pages of results.</p>
@@ -3983,12 +3983,12 @@ export interface ListResolverDnssecConfigsRequest {
3983
3983
  * for <code>NextToken</code> in the request.</p>
3984
3984
  * @public
3985
3985
  */
3986
- NextToken?: string;
3986
+ NextToken?: string | undefined;
3987
3987
  /**
3988
3988
  * <p>An optional specification to return a subset of objects.</p>
3989
3989
  * @public
3990
3990
  */
3991
- Filters?: Filter[];
3991
+ Filters?: Filter[] | undefined;
3992
3992
  }
3993
3993
  /**
3994
3994
  * @public
@@ -4003,7 +4003,7 @@ export interface ListResolverDnssecConfigsResponse {
4003
4003
  * <code>NextToken</code> in the next request.</p>
4004
4004
  * @public
4005
4005
  */
4006
- NextToken?: string;
4006
+ NextToken?: string | undefined;
4007
4007
  /**
4008
4008
  * <p>An array that contains one
4009
4009
  * <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_ResolverDnssecConfig.html">ResolverDnssecConfig</a> element
@@ -4011,7 +4011,7 @@ export interface ListResolverDnssecConfigsResponse {
4011
4011
  * It doesn't contain disabled DNSSEC configurations for the resource.</p>
4012
4012
  * @public
4013
4013
  */
4014
- ResolverDnssecConfigs?: ResolverDnssecConfig[];
4014
+ ResolverDnssecConfigs?: ResolverDnssecConfig[] | undefined;
4015
4015
  }
4016
4016
  /**
4017
4017
  * @public
@@ -4027,7 +4027,7 @@ export interface ListResolverEndpointIpAddressesRequest {
4027
4027
  * If you don't specify a value for <code>MaxResults</code>, Resolver returns up to 100 IP addresses. </p>
4028
4028
  * @public
4029
4029
  */
4030
- MaxResults?: number;
4030
+ MaxResults?: number | undefined;
4031
4031
  /**
4032
4032
  * <p>For the first <code>ListResolverEndpointIpAddresses</code> request, omit this value.</p>
4033
4033
  * <p>If the specified Resolver endpoint has more than <code>MaxResults</code> IP addresses, you can submit another
@@ -4035,7 +4035,7 @@ export interface ListResolverEndpointIpAddressesRequest {
4035
4035
  * <code>NextToken</code> from the previous response. </p>
4036
4036
  * @public
4037
4037
  */
4038
- NextToken?: string;
4038
+ NextToken?: string | undefined;
4039
4039
  }
4040
4040
  /**
4041
4041
  * @public
@@ -4047,18 +4047,18 @@ export interface ListResolverEndpointIpAddressesResponse {
4047
4047
  * specify the value of <code>NextToken</code> from the previous response. </p>
4048
4048
  * @public
4049
4049
  */
4050
- NextToken?: string;
4050
+ NextToken?: string | undefined;
4051
4051
  /**
4052
4052
  * <p>The value that you specified for <code>MaxResults</code> in the request.</p>
4053
4053
  * @public
4054
4054
  */
4055
- MaxResults?: number;
4055
+ MaxResults?: number | undefined;
4056
4056
  /**
4057
4057
  * <p>Information about the IP addresses in your VPC that DNS queries originate from (for outbound endpoints) or that you forward
4058
4058
  * DNS queries to (for inbound endpoints).</p>
4059
4059
  * @public
4060
4060
  */
4061
- IpAddresses?: IpAddressResponse[];
4061
+ IpAddresses?: IpAddressResponse[] | undefined;
4062
4062
  }
4063
4063
  /**
4064
4064
  * @public
@@ -4069,14 +4069,14 @@ export interface ListResolverEndpointsRequest {
4069
4069
  * If you don't specify a value for <code>MaxResults</code>, Resolver returns up to 100 Resolver endpoints. </p>
4070
4070
  * @public
4071
4071
  */
4072
- MaxResults?: number;
4072
+ MaxResults?: number | undefined;
4073
4073
  /**
4074
4074
  * <p>For the first <code>ListResolverEndpoints</code> request, omit this value.</p>
4075
4075
  * <p>If you have more than <code>MaxResults</code> Resolver endpoints, you can submit another <code>ListResolverEndpoints</code> request
4076
4076
  * to get the next group of Resolver endpoints. In the next request, specify the value of <code>NextToken</code> from the previous response. </p>
4077
4077
  * @public
4078
4078
  */
4079
- NextToken?: string;
4079
+ NextToken?: string | undefined;
4080
4080
  /**
4081
4081
  * <p>An optional specification to return a subset of Resolver endpoints, such as all inbound Resolver endpoints.</p>
4082
4082
  * <note>
@@ -4085,7 +4085,7 @@ export interface ListResolverEndpointsRequest {
4085
4085
  * </note>
4086
4086
  * @public
4087
4087
  */
4088
- Filters?: Filter[];
4088
+ Filters?: Filter[] | undefined;
4089
4089
  }
4090
4090
  /**
4091
4091
  * @public
@@ -4096,17 +4096,17 @@ export interface ListResolverEndpointsResponse {
4096
4096
  * to get the next group of results. In the next request, specify the value of <code>NextToken</code> from the previous response. </p>
4097
4097
  * @public
4098
4098
  */
4099
- NextToken?: string;
4099
+ NextToken?: string | undefined;
4100
4100
  /**
4101
4101
  * <p>The value that you specified for <code>MaxResults</code> in the request.</p>
4102
4102
  * @public
4103
4103
  */
4104
- MaxResults?: number;
4104
+ MaxResults?: number | undefined;
4105
4105
  /**
4106
4106
  * <p>The Resolver endpoints that were created by using the current Amazon Web Services account, and that match the specified filters, if any.</p>
4107
4107
  * @public
4108
4108
  */
4109
- ResolverEndpoints?: ResolverEndpoint[];
4109
+ ResolverEndpoints?: ResolverEndpoint[] | undefined;
4110
4110
  }
4111
4111
  /**
4112
4112
  * @public
@@ -4129,7 +4129,7 @@ export interface ListResolverQueryLogConfigAssociationsRequest {
4129
4129
  * If you don't specify a value for <code>MaxResults</code>, Resolver returns up to 100 query logging associations. </p>
4130
4130
  * @public
4131
4131
  */
4132
- MaxResults?: number;
4132
+ MaxResults?: number | undefined;
4133
4133
  /**
4134
4134
  * <p>For the first <code>ListResolverQueryLogConfigAssociations</code> request, omit this value.</p>
4135
4135
  * <p>If there are more than <code>MaxResults</code> query logging associations that match the values that you specify for <code>Filters</code>,
@@ -4137,7 +4137,7 @@ export interface ListResolverQueryLogConfigAssociationsRequest {
4137
4137
  * <code>NextToken</code> from the previous response. </p>
4138
4138
  * @public
4139
4139
  */
4140
- NextToken?: string;
4140
+ NextToken?: string | undefined;
4141
4141
  /**
4142
4142
  * <p>An optional specification to return a subset of query logging associations.</p>
4143
4143
  * <note>
@@ -4146,7 +4146,7 @@ export interface ListResolverQueryLogConfigAssociationsRequest {
4146
4146
  * </note>
4147
4147
  * @public
4148
4148
  */
4149
- Filters?: Filter[];
4149
+ Filters?: Filter[] | undefined;
4150
4150
  /**
4151
4151
  * <p>The element that you want Resolver to sort query logging associations by. </p>
4152
4152
  * <note>
@@ -4222,7 +4222,7 @@ export interface ListResolverQueryLogConfigAssociationsRequest {
4222
4222
  * </ul>
4223
4223
  * @public
4224
4224
  */
4225
- SortBy?: string;
4225
+ SortBy?: string | undefined;
4226
4226
  /**
4227
4227
  * <p>If you specified a value for <code>SortBy</code>, the order that you want query logging associations to be listed in,
4228
4228
  * <code>ASCENDING</code> or <code>DESCENDING</code>.</p>
@@ -4232,7 +4232,7 @@ export interface ListResolverQueryLogConfigAssociationsRequest {
4232
4232
  * </note>
4233
4233
  * @public
4234
4234
  */
4235
- SortOrder?: SortOrder;
4235
+ SortOrder?: SortOrder | undefined;
4236
4236
  }
4237
4237
  /**
4238
4238
  * @public
@@ -4243,27 +4243,27 @@ export interface ListResolverQueryLogConfigAssociationsResponse {
4243
4243
  * to get the next group of associations. In the next request, specify the value of <code>NextToken</code> from the previous response. </p>
4244
4244
  * @public
4245
4245
  */
4246
- NextToken?: string;
4246
+ NextToken?: string | undefined;
4247
4247
  /**
4248
4248
  * <p>The total number of query logging associations that were created by the current account in the specified Region. This count can differ from the
4249
4249
  * number of associations that are returned in a <code>ListResolverQueryLogConfigAssociations</code> response, depending on the values that you specify
4250
4250
  * in the request.</p>
4251
4251
  * @public
4252
4252
  */
4253
- TotalCount?: number;
4253
+ TotalCount?: number | undefined;
4254
4254
  /**
4255
4255
  * <p>The total number of query logging associations that were created by the current account in the specified Region and that match the filters
4256
4256
  * that were specified in the <code>ListResolverQueryLogConfigAssociations</code> request. For the total number of associations that were created by the
4257
4257
  * current account in the specified Region, see <code>TotalCount</code>.</p>
4258
4258
  * @public
4259
4259
  */
4260
- TotalFilteredCount?: number;
4260
+ TotalFilteredCount?: number | undefined;
4261
4261
  /**
4262
4262
  * <p>A list that contains one <code>ResolverQueryLogConfigAssociations</code> element for each query logging association that matches the
4263
4263
  * values that you specified for <code>Filter</code>.</p>
4264
4264
  * @public
4265
4265
  */
4266
- ResolverQueryLogConfigAssociations?: ResolverQueryLogConfigAssociation[];
4266
+ ResolverQueryLogConfigAssociations?: ResolverQueryLogConfigAssociation[] | undefined;
4267
4267
  }
4268
4268
  /**
4269
4269
  * @public
@@ -4274,7 +4274,7 @@ export interface ListResolverQueryLogConfigsRequest {
4274
4274
  * If you don't specify a value for <code>MaxResults</code>, Resolver returns up to 100 query logging configurations. </p>
4275
4275
  * @public
4276
4276
  */
4277
- MaxResults?: number;
4277
+ MaxResults?: number | undefined;
4278
4278
  /**
4279
4279
  * <p>For the first <code>ListResolverQueryLogConfigs</code> request, omit this value.</p>
4280
4280
  * <p>If there are more than <code>MaxResults</code> query logging configurations that match the values that you specify for <code>Filters</code>,
@@ -4282,7 +4282,7 @@ export interface ListResolverQueryLogConfigsRequest {
4282
4282
  * <code>NextToken</code> from the previous response. </p>
4283
4283
  * @public
4284
4284
  */
4285
- NextToken?: string;
4285
+ NextToken?: string | undefined;
4286
4286
  /**
4287
4287
  * <p>An optional specification to return a subset of query logging configurations.</p>
4288
4288
  * <note>
@@ -4291,7 +4291,7 @@ export interface ListResolverQueryLogConfigsRequest {
4291
4291
  * </note>
4292
4292
  * @public
4293
4293
  */
4294
- Filters?: Filter[];
4294
+ Filters?: Filter[] | undefined;
4295
4295
  /**
4296
4296
  * <p>The element that you want Resolver to sort query logging configurations by. </p>
4297
4297
  * <note>
@@ -4372,7 +4372,7 @@ export interface ListResolverQueryLogConfigsRequest {
4372
4372
  * </ul>
4373
4373
  * @public
4374
4374
  */
4375
- SortBy?: string;
4375
+ SortBy?: string | undefined;
4376
4376
  /**
4377
4377
  * <p>If you specified a value for <code>SortBy</code>, the order that you want query logging configurations to be listed in,
4378
4378
  * <code>ASCENDING</code> or <code>DESCENDING</code>.</p>
@@ -4382,7 +4382,7 @@ export interface ListResolverQueryLogConfigsRequest {
4382
4382
  * </note>
4383
4383
  * @public
4384
4384
  */
4385
- SortOrder?: SortOrder;
4385
+ SortOrder?: SortOrder | undefined;
4386
4386
  }
4387
4387
  /**
4388
4388
  * @public
@@ -4393,27 +4393,27 @@ export interface ListResolverQueryLogConfigsResponse {
4393
4393
  * to get the next group of configurations. In the next request, specify the value of <code>NextToken</code> from the previous response. </p>
4394
4394
  * @public
4395
4395
  */
4396
- NextToken?: string;
4396
+ NextToken?: string | undefined;
4397
4397
  /**
4398
4398
  * <p>The total number of query logging configurations that were created by the current account in the specified Region. This count can differ from the
4399
4399
  * number of query logging configurations that are returned in a <code>ListResolverQueryLogConfigs</code> response, depending on the values that you specify
4400
4400
  * in the request.</p>
4401
4401
  * @public
4402
4402
  */
4403
- TotalCount?: number;
4403
+ TotalCount?: number | undefined;
4404
4404
  /**
4405
4405
  * <p>The total number of query logging configurations that were created by the current account in the specified Region and that match the filters
4406
4406
  * that were specified in the <code>ListResolverQueryLogConfigs</code> request. For the total number of query logging configurations that were created by the
4407
4407
  * current account in the specified Region, see <code>TotalCount</code>.</p>
4408
4408
  * @public
4409
4409
  */
4410
- TotalFilteredCount?: number;
4410
+ TotalFilteredCount?: number | undefined;
4411
4411
  /**
4412
4412
  * <p>A list that contains one <code>ResolverQueryLogConfig</code> element for each query logging configuration that matches the
4413
4413
  * values that you specified for <code>Filter</code>.</p>
4414
4414
  * @public
4415
4415
  */
4416
- ResolverQueryLogConfigs?: ResolverQueryLogConfig[];
4416
+ ResolverQueryLogConfigs?: ResolverQueryLogConfig[] | undefined;
4417
4417
  }
4418
4418
  /**
4419
4419
  * @public
@@ -4424,14 +4424,14 @@ export interface ListResolverRuleAssociationsRequest {
4424
4424
  * If you don't specify a value for <code>MaxResults</code>, Resolver returns up to 100 rule associations. </p>
4425
4425
  * @public
4426
4426
  */
4427
- MaxResults?: number;
4427
+ MaxResults?: number | undefined;
4428
4428
  /**
4429
4429
  * <p>For the first <code>ListResolverRuleAssociation</code> request, omit this value.</p>
4430
4430
  * <p>If you have more than <code>MaxResults</code> rule associations, you can submit another <code>ListResolverRuleAssociation</code> request
4431
4431
  * to get the next group of rule associations. In the next request, specify the value of <code>NextToken</code> from the previous response. </p>
4432
4432
  * @public
4433
4433
  */
4434
- NextToken?: string;
4434
+ NextToken?: string | undefined;
4435
4435
  /**
4436
4436
  * <p>An optional specification to return a subset of Resolver rules, such as Resolver rules that are associated with the same VPC ID.</p>
4437
4437
  * <note>
@@ -4440,7 +4440,7 @@ export interface ListResolverRuleAssociationsRequest {
4440
4440
  * </note>
4441
4441
  * @public
4442
4442
  */
4443
- Filters?: Filter[];
4443
+ Filters?: Filter[] | undefined;
4444
4444
  }
4445
4445
  /**
4446
4446
  * @public
@@ -4452,18 +4452,18 @@ export interface ListResolverRuleAssociationsResponse {
4452
4452
  * <code>NextToken</code> from the previous response. </p>
4453
4453
  * @public
4454
4454
  */
4455
- NextToken?: string;
4455
+ NextToken?: string | undefined;
4456
4456
  /**
4457
4457
  * <p>The value that you specified for <code>MaxResults</code> in the request.</p>
4458
4458
  * @public
4459
4459
  */
4460
- MaxResults?: number;
4460
+ MaxResults?: number | undefined;
4461
4461
  /**
4462
4462
  * <p>The associations that were created between Resolver rules and VPCs using the current Amazon Web Services account, and that match the
4463
4463
  * specified filters, if any.</p>
4464
4464
  * @public
4465
4465
  */
4466
- ResolverRuleAssociations?: ResolverRuleAssociation[];
4466
+ ResolverRuleAssociations?: ResolverRuleAssociation[] | undefined;
4467
4467
  }
4468
4468
  /**
4469
4469
  * @public
@@ -4474,14 +4474,14 @@ export interface ListResolverRulesRequest {
4474
4474
  * If you don't specify a value for <code>MaxResults</code>, Resolver returns up to 100 Resolver rules.</p>
4475
4475
  * @public
4476
4476
  */
4477
- MaxResults?: number;
4477
+ MaxResults?: number | undefined;
4478
4478
  /**
4479
4479
  * <p>For the first <code>ListResolverRules</code> request, omit this value.</p>
4480
4480
  * <p>If you have more than <code>MaxResults</code> Resolver rules, you can submit another <code>ListResolverRules</code> request
4481
4481
  * to get the next group of Resolver rules. In the next request, specify the value of <code>NextToken</code> from the previous response. </p>
4482
4482
  * @public
4483
4483
  */
4484
- NextToken?: string;
4484
+ NextToken?: string | undefined;
4485
4485
  /**
4486
4486
  * <p>An optional specification to return a subset of Resolver rules, such as all Resolver rules that are associated with the same Resolver endpoint.</p>
4487
4487
  * <note>
@@ -4490,7 +4490,7 @@ export interface ListResolverRulesRequest {
4490
4490
  * </note>
4491
4491
  * @public
4492
4492
  */
4493
- Filters?: Filter[];
4493
+ Filters?: Filter[] | undefined;
4494
4494
  }
4495
4495
  /**
4496
4496
  * @public
@@ -4502,17 +4502,17 @@ export interface ListResolverRulesResponse {
4502
4502
  * <code>NextToken</code> from the previous response. </p>
4503
4503
  * @public
4504
4504
  */
4505
- NextToken?: string;
4505
+ NextToken?: string | undefined;
4506
4506
  /**
4507
4507
  * <p>The value that you specified for <code>MaxResults</code> in the request.</p>
4508
4508
  * @public
4509
4509
  */
4510
- MaxResults?: number;
4510
+ MaxResults?: number | undefined;
4511
4511
  /**
4512
4512
  * <p>The Resolver rules that were created using the current Amazon Web Services account and that match the specified filters, if any.</p>
4513
4513
  * @public
4514
4514
  */
4515
- ResolverRules?: ResolverRule[];
4515
+ ResolverRules?: ResolverRule[] | undefined;
4516
4516
  }
4517
4517
  /**
4518
4518
  * @public
@@ -4528,14 +4528,14 @@ export interface ListTagsForResourceRequest {
4528
4528
  * If you don't specify a value for <code>MaxResults</code>, Resolver returns up to 100 tags.</p>
4529
4529
  * @public
4530
4530
  */
4531
- MaxResults?: number;
4531
+ MaxResults?: number | undefined;
4532
4532
  /**
4533
4533
  * <p>For the first <code>ListTagsForResource</code> request, omit this value.</p>
4534
4534
  * <p>If you have more than <code>MaxResults</code> tags, you can submit another <code>ListTagsForResource</code> request
4535
4535
  * to get the next group of tags for the resource. In the next request, specify the value of <code>NextToken</code> from the previous response. </p>
4536
4536
  * @public
4537
4537
  */
4538
- NextToken?: string;
4538
+ NextToken?: string | undefined;
4539
4539
  }
4540
4540
  /**
4541
4541
  * @public
@@ -4545,14 +4545,14 @@ export interface ListTagsForResourceResponse {
4545
4545
  * <p>The tags that are associated with the resource that you specified in the <code>ListTagsForResource</code> request.</p>
4546
4546
  * @public
4547
4547
  */
4548
- Tags?: Tag[];
4548
+ Tags?: Tag[] | undefined;
4549
4549
  /**
4550
4550
  * <p>If more than <code>MaxResults</code> tags match the specified criteria, you can submit another
4551
4551
  * <code>ListTagsForResource</code> request to get the next group of results. In the next request, specify the value of
4552
4552
  * <code>NextToken</code> from the previous response. </p>
4553
4553
  * @public
4554
4554
  */
4555
- NextToken?: string;
4555
+ NextToken?: string | undefined;
4556
4556
  }
4557
4557
  /**
4558
4558
  * @public
@@ -4577,7 +4577,7 @@ export interface PutFirewallRuleGroupPolicyResponse {
4577
4577
  * <p></p>
4578
4578
  * @public
4579
4579
  */
4580
- ReturnValue?: boolean;
4580
+ ReturnValue?: boolean | undefined;
4581
4581
  }
4582
4582
  /**
4583
4583
  * @public
@@ -4624,7 +4624,7 @@ export interface PutResolverQueryLogConfigPolicyResponse {
4624
4624
  * <p>Whether the <code>PutResolverQueryLogConfigPolicy</code> request was successful.</p>
4625
4625
  * @public
4626
4626
  */
4627
- ReturnValue?: boolean;
4627
+ ReturnValue?: boolean | undefined;
4628
4628
  }
4629
4629
  /**
4630
4630
  * @public
@@ -4680,7 +4680,7 @@ export interface PutResolverRulePolicyResponse {
4680
4680
  * <p>Whether the <code>PutResolverRulePolicy</code> request was successful.</p>
4681
4681
  * @public
4682
4682
  */
4683
- ReturnValue?: boolean;
4683
+ ReturnValue?: boolean | undefined;
4684
4684
  }
4685
4685
  /**
4686
4686
  * <p>In an
@@ -4693,18 +4693,18 @@ export interface ResolverRuleConfig {
4693
4693
  * <p>The new name for the Resolver rule. The name that you specify appears in the Resolver dashboard in the Route 53 console. </p>
4694
4694
  * @public
4695
4695
  */
4696
- Name?: string;
4696
+ Name?: string | undefined;
4697
4697
  /**
4698
4698
  * <p>For DNS queries that originate in your VPC, the new IP addresses that you want to route outbound DNS queries to.</p>
4699
4699
  * @public
4700
4700
  */
4701
- TargetIps?: TargetAddress[];
4701
+ TargetIps?: TargetAddress[] | undefined;
4702
4702
  /**
4703
4703
  * <p>The ID of the new outbound Resolver endpoint that you want to use to route DNS queries to the IP addresses that you specify in
4704
4704
  * <code>TargetIps</code>.</p>
4705
4705
  * @public
4706
4706
  */
4707
- ResolverEndpointId?: string;
4707
+ ResolverEndpointId?: string | undefined;
4708
4708
  }
4709
4709
  /**
4710
4710
  * @public
@@ -4846,7 +4846,7 @@ export interface UpdateFirewallConfigResponse {
4846
4846
  * <p>Configuration of the firewall behavior provided by DNS Firewall for a single VPC. </p>
4847
4847
  * @public
4848
4848
  */
4849
- FirewallConfig?: FirewallConfig;
4849
+ FirewallConfig?: FirewallConfig | undefined;
4850
4850
  }
4851
4851
  /**
4852
4852
  * @public
@@ -4908,22 +4908,22 @@ export interface UpdateFirewallDomainsResponse {
4908
4908
  * <p>The ID of the firewall domain list that DNS Firewall just updated.</p>
4909
4909
  * @public
4910
4910
  */
4911
- Id?: string;
4911
+ Id?: string | undefined;
4912
4912
  /**
4913
4913
  * <p>The name of the domain list. </p>
4914
4914
  * @public
4915
4915
  */
4916
- Name?: string;
4916
+ Name?: string | undefined;
4917
4917
  /**
4918
4918
  * <p>Status of the <code>UpdateFirewallDomains</code> request.</p>
4919
4919
  * @public
4920
4920
  */
4921
- Status?: FirewallDomainListStatus;
4921
+ Status?: FirewallDomainListStatus | undefined;
4922
4922
  /**
4923
4923
  * <p>Additional information about the status of the list, if available.</p>
4924
4924
  * @public
4925
4925
  */
4926
- StatusMessage?: string;
4926
+ StatusMessage?: string | undefined;
4927
4927
  }
4928
4928
  /**
4929
4929
  * @public
@@ -4947,7 +4947,7 @@ export interface UpdateFirewallRuleRequest {
4947
4947
  * can change the priority setting for the rules in a rule group at any time.</p>
4948
4948
  * @public
4949
4949
  */
4950
- Priority?: number;
4950
+ Priority?: number | undefined;
4951
4951
  /**
4952
4952
  * <p>The action that DNS Firewall should take on a DNS query when it matches one of the domains in the rule's domain list:</p>
4953
4953
  * <ul>
@@ -4966,7 +4966,7 @@ export interface UpdateFirewallRuleRequest {
4966
4966
  * </ul>
4967
4967
  * @public
4968
4968
  */
4969
- Action?: Action;
4969
+ Action?: Action | undefined;
4970
4970
  /**
4971
4971
  * <p>The way that you want DNS Firewall to block the request. Used for the rule action setting <code>BLOCK</code>.</p>
4972
4972
  * <ul>
@@ -4985,27 +4985,27 @@ export interface UpdateFirewallRuleRequest {
4985
4985
  * </ul>
4986
4986
  * @public
4987
4987
  */
4988
- BlockResponse?: BlockResponse;
4988
+ BlockResponse?: BlockResponse | undefined;
4989
4989
  /**
4990
4990
  * <p>The custom DNS record to send back in response to the query. Used for the rule action <code>BLOCK</code> with a <code>BlockResponse</code> setting of <code>OVERRIDE</code>.</p>
4991
4991
  * @public
4992
4992
  */
4993
- BlockOverrideDomain?: string;
4993
+ BlockOverrideDomain?: string | undefined;
4994
4994
  /**
4995
4995
  * <p>The DNS record's type. This determines the format of the record value that you provided in <code>BlockOverrideDomain</code>. Used for the rule action <code>BLOCK</code> with a <code>BlockResponse</code> setting of <code>OVERRIDE</code>.</p>
4996
4996
  * @public
4997
4997
  */
4998
- BlockOverrideDnsType?: BlockOverrideDnsType;
4998
+ BlockOverrideDnsType?: BlockOverrideDnsType | undefined;
4999
4999
  /**
5000
5000
  * <p>The recommended amount of time, in seconds, for the DNS resolver or web browser to cache the provided override record. Used for the rule action <code>BLOCK</code> with a <code>BlockResponse</code> setting of <code>OVERRIDE</code>.</p>
5001
5001
  * @public
5002
5002
  */
5003
- BlockOverrideTtl?: number;
5003
+ BlockOverrideTtl?: number | undefined;
5004
5004
  /**
5005
5005
  * <p>The name of the rule.</p>
5006
5006
  * @public
5007
5007
  */
5008
- Name?: string;
5008
+ Name?: string | undefined;
5009
5009
  /**
5010
5010
  * <p>
5011
5011
  * How you want the the rule to evaluate DNS redirection in the DNS redirection chain, such as CNAME or DNAME.
@@ -5018,7 +5018,7 @@ export interface UpdateFirewallRuleRequest {
5018
5018
  * the domain list.</p>
5019
5019
  * @public
5020
5020
  */
5021
- FirewallDomainRedirectionAction?: FirewallDomainRedirectionAction;
5021
+ FirewallDomainRedirectionAction?: FirewallDomainRedirectionAction | undefined;
5022
5022
  /**
5023
5023
  * <p>
5024
5024
  * The DNS query type you want the rule to evaluate. Allowed values are;
@@ -5078,7 +5078,7 @@ export interface UpdateFirewallRuleRequest {
5078
5078
  * </ul>
5079
5079
  * @public
5080
5080
  */
5081
- Qtype?: string;
5081
+ Qtype?: string | undefined;
5082
5082
  }
5083
5083
  /**
5084
5084
  * @public
@@ -5088,7 +5088,7 @@ export interface UpdateFirewallRuleResponse {
5088
5088
  * <p>The firewall rule that you just updated. </p>
5089
5089
  * @public
5090
5090
  */
5091
- FirewallRule?: FirewallRule;
5091
+ FirewallRule?: FirewallRule | undefined;
5092
5092
  }
5093
5093
  /**
5094
5094
  * @public
@@ -5108,17 +5108,17 @@ export interface UpdateFirewallRuleGroupAssociationRequest {
5108
5108
  * can change the priority setting for a rule group association after you create it.</p>
5109
5109
  * @public
5110
5110
  */
5111
- Priority?: number;
5111
+ Priority?: number | undefined;
5112
5112
  /**
5113
5113
  * <p>If enabled, this setting disallows modification or removal of the association, to help prevent against accidentally altering DNS firewall protections. </p>
5114
5114
  * @public
5115
5115
  */
5116
- MutationProtection?: MutationProtectionStatus;
5116
+ MutationProtection?: MutationProtectionStatus | undefined;
5117
5117
  /**
5118
5118
  * <p>The name of the rule group association.</p>
5119
5119
  * @public
5120
5120
  */
5121
- Name?: string;
5121
+ Name?: string | undefined;
5122
5122
  }
5123
5123
  /**
5124
5124
  * @public
@@ -5128,7 +5128,7 @@ export interface UpdateFirewallRuleGroupAssociationResponse {
5128
5128
  * <p>The association that you just updated. </p>
5129
5129
  * @public
5130
5130
  */
5131
- FirewallRuleGroupAssociation?: FirewallRuleGroupAssociation;
5131
+ FirewallRuleGroupAssociation?: FirewallRuleGroupAssociation | undefined;
5132
5132
  }
5133
5133
  /**
5134
5134
  * @public
@@ -5143,19 +5143,19 @@ export interface UpdateOutpostResolverRequest {
5143
5143
  * <p>Name of the Resolver on the Outpost.</p>
5144
5144
  * @public
5145
5145
  */
5146
- Name?: string;
5146
+ Name?: string | undefined;
5147
5147
  /**
5148
5148
  * <p>The Amazon EC2 instance count for a Resolver on the Outpost.</p>
5149
5149
  * @public
5150
5150
  */
5151
- InstanceCount?: number;
5151
+ InstanceCount?: number | undefined;
5152
5152
  /**
5153
5153
  * <p>
5154
5154
  * Amazon EC2 instance type.
5155
5155
  * </p>
5156
5156
  * @public
5157
5157
  */
5158
- PreferredInstanceType?: string;
5158
+ PreferredInstanceType?: string | undefined;
5159
5159
  }
5160
5160
  /**
5161
5161
  * @public
@@ -5165,7 +5165,7 @@ export interface UpdateOutpostResolverResponse {
5165
5165
  * <p>The response to an <code>UpdateOutpostResolver</code> request.</p>
5166
5166
  * @public
5167
5167
  */
5168
- OutpostResolver?: OutpostResolver;
5168
+ OutpostResolver?: OutpostResolver | undefined;
5169
5169
  }
5170
5170
  /**
5171
5171
  * @public
@@ -5201,7 +5201,7 @@ export interface UpdateResolverConfigResponse {
5201
5201
  * <p>An array that contains settings for the specified Resolver configuration.</p>
5202
5202
  * @public
5203
5203
  */
5204
- ResolverConfig?: ResolverConfig;
5204
+ ResolverConfig?: ResolverConfig | undefined;
5205
5205
  }
5206
5206
  /**
5207
5207
  * @public
@@ -5240,7 +5240,7 @@ export interface UpdateResolverDnssecConfigResponse {
5240
5240
  * <p>A complex type that contains settings for the specified DNSSEC configuration.</p>
5241
5241
  * @public
5242
5242
  */
5243
- ResolverDNSSECConfig?: ResolverDnssecConfig;
5243
+ ResolverDNSSECConfig?: ResolverDnssecConfig | undefined;
5244
5244
  }
5245
5245
  /**
5246
5246
  * <p>
@@ -5275,7 +5275,7 @@ export interface UpdateResolverEndpointRequest {
5275
5275
  * <p>The name of the Resolver endpoint that you want to update.</p>
5276
5276
  * @public
5277
5277
  */
5278
- Name?: string;
5278
+ Name?: string | undefined;
5279
5279
  /**
5280
5280
  * <p>
5281
5281
  * Specifies the endpoint type for what type of IP address the endpoint uses to forward DNS queries.
@@ -5283,7 +5283,7 @@ export interface UpdateResolverEndpointRequest {
5283
5283
  * <p>Updating to <code>IPV6</code> type isn't currently supported.</p>
5284
5284
  * @public
5285
5285
  */
5286
- ResolverEndpointType?: ResolverEndpointType;
5286
+ ResolverEndpointType?: ResolverEndpointType | undefined;
5287
5287
  /**
5288
5288
  * <p>
5289
5289
  * Specifies the IPv6 address when you update the Resolver endpoint from IPv4 to dual-stack.
@@ -5291,7 +5291,7 @@ export interface UpdateResolverEndpointRequest {
5291
5291
  * </p>
5292
5292
  * @public
5293
5293
  */
5294
- UpdateIpAddresses?: UpdateIpAddress[];
5294
+ UpdateIpAddresses?: UpdateIpAddress[] | undefined;
5295
5295
  /**
5296
5296
  * <p>
5297
5297
  * The protocols you want to use for the endpoint. DoH-FIPS is applicable for inbound endpoints only.
@@ -5342,7 +5342,7 @@ export interface UpdateResolverEndpointRequest {
5342
5342
  * </important>
5343
5343
  * @public
5344
5344
  */
5345
- Protocols?: Protocol[];
5345
+ Protocols?: Protocol[] | undefined;
5346
5346
  }
5347
5347
  /**
5348
5348
  * @public
@@ -5352,7 +5352,7 @@ export interface UpdateResolverEndpointResponse {
5352
5352
  * <p>The response to an <code>UpdateResolverEndpoint</code> request.</p>
5353
5353
  * @public
5354
5354
  */
5355
- ResolverEndpoint?: ResolverEndpoint;
5355
+ ResolverEndpoint?: ResolverEndpoint | undefined;
5356
5356
  }
5357
5357
  /**
5358
5358
  * @public
@@ -5377,5 +5377,5 @@ export interface UpdateResolverRuleResponse {
5377
5377
  * <p>The response to an <code>UpdateResolverRule</code> request.</p>
5378
5378
  * @public
5379
5379
  */
5380
- ResolverRule?: ResolverRule;
5380
+ ResolverRule?: ResolverRule | undefined;
5381
5381
  }