@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.
- package/dist-types/models/models_0.d.ts +376 -376
- package/dist-types/ts3.4/models/models_0.d.ts +384 -376
- package/package.json +7 -7
|
@@ -3,7 +3,7 @@ import { Route53ResolverServiceException as __BaseException } from "./Route53Res
|
|
|
3
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
|
-
Message?: string;
|
|
6
|
+
Message?: string | undefined;
|
|
7
7
|
constructor(
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
@@ -25,13 +25,13 @@ export interface Tag {
|
|
|
25
25
|
Value: string | undefined;
|
|
26
26
|
}
|
|
27
27
|
export interface AssociateFirewallRuleGroupRequest {
|
|
28
|
-
CreatorRequestId?: string;
|
|
28
|
+
CreatorRequestId?: string | undefined;
|
|
29
29
|
FirewallRuleGroupId: string | undefined;
|
|
30
30
|
VpcId: string | undefined;
|
|
31
31
|
Priority: number | undefined;
|
|
32
32
|
Name: string | undefined;
|
|
33
|
-
MutationProtection?: MutationProtectionStatus;
|
|
34
|
-
Tags?: Tag[];
|
|
33
|
+
MutationProtection?: MutationProtectionStatus | undefined;
|
|
34
|
+
Tags?: Tag[] | undefined;
|
|
35
35
|
}
|
|
36
36
|
export declare const FirewallRuleGroupAssociationStatus: {
|
|
37
37
|
readonly COMPLETE: "COMPLETE";
|
|
@@ -41,33 +41,33 @@ export declare const FirewallRuleGroupAssociationStatus: {
|
|
|
41
41
|
export type FirewallRuleGroupAssociationStatus =
|
|
42
42
|
(typeof FirewallRuleGroupAssociationStatus)[keyof typeof FirewallRuleGroupAssociationStatus];
|
|
43
43
|
export interface FirewallRuleGroupAssociation {
|
|
44
|
-
Id?: string;
|
|
45
|
-
Arn?: string;
|
|
46
|
-
FirewallRuleGroupId?: string;
|
|
47
|
-
VpcId?: string;
|
|
48
|
-
Name?: string;
|
|
49
|
-
Priority?: number;
|
|
50
|
-
MutationProtection?: MutationProtectionStatus;
|
|
51
|
-
ManagedOwnerName?: string;
|
|
52
|
-
Status?: FirewallRuleGroupAssociationStatus;
|
|
53
|
-
StatusMessage?: string;
|
|
54
|
-
CreatorRequestId?: string;
|
|
55
|
-
CreationTime?: string;
|
|
56
|
-
ModificationTime?: string;
|
|
44
|
+
Id?: string | undefined;
|
|
45
|
+
Arn?: string | undefined;
|
|
46
|
+
FirewallRuleGroupId?: string | undefined;
|
|
47
|
+
VpcId?: string | undefined;
|
|
48
|
+
Name?: string | undefined;
|
|
49
|
+
Priority?: number | undefined;
|
|
50
|
+
MutationProtection?: MutationProtectionStatus | undefined;
|
|
51
|
+
ManagedOwnerName?: string | undefined;
|
|
52
|
+
Status?: FirewallRuleGroupAssociationStatus | undefined;
|
|
53
|
+
StatusMessage?: string | undefined;
|
|
54
|
+
CreatorRequestId?: string | undefined;
|
|
55
|
+
CreationTime?: string | undefined;
|
|
56
|
+
ModificationTime?: string | undefined;
|
|
57
57
|
}
|
|
58
58
|
export interface AssociateFirewallRuleGroupResponse {
|
|
59
|
-
FirewallRuleGroupAssociation?: FirewallRuleGroupAssociation;
|
|
59
|
+
FirewallRuleGroupAssociation?: FirewallRuleGroupAssociation | undefined;
|
|
60
60
|
}
|
|
61
61
|
export declare class ConflictException extends __BaseException {
|
|
62
62
|
readonly name: "ConflictException";
|
|
63
63
|
readonly $fault: "client";
|
|
64
|
-
Message?: string;
|
|
64
|
+
Message?: string | undefined;
|
|
65
65
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
66
66
|
}
|
|
67
67
|
export declare class InternalServiceErrorException extends __BaseException {
|
|
68
68
|
readonly name: "InternalServiceErrorException";
|
|
69
69
|
readonly $fault: "client";
|
|
70
|
-
Message?: string;
|
|
70
|
+
Message?: string | undefined;
|
|
71
71
|
constructor(
|
|
72
72
|
opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>
|
|
73
73
|
);
|
|
@@ -75,8 +75,8 @@ export declare class InternalServiceErrorException extends __BaseException {
|
|
|
75
75
|
export declare class LimitExceededException extends __BaseException {
|
|
76
76
|
readonly name: "LimitExceededException";
|
|
77
77
|
readonly $fault: "client";
|
|
78
|
-
Message?: string;
|
|
79
|
-
ResourceType?: string;
|
|
78
|
+
Message?: string | undefined;
|
|
79
|
+
ResourceType?: string | undefined;
|
|
80
80
|
constructor(
|
|
81
81
|
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
82
82
|
);
|
|
@@ -84,8 +84,8 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
84
84
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
85
85
|
readonly name: "ResourceNotFoundException";
|
|
86
86
|
readonly $fault: "client";
|
|
87
|
-
Message?: string;
|
|
88
|
-
ResourceType?: string;
|
|
87
|
+
Message?: string | undefined;
|
|
88
|
+
ResourceType?: string | undefined;
|
|
89
89
|
constructor(
|
|
90
90
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
91
91
|
);
|
|
@@ -93,7 +93,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
93
93
|
export declare class ThrottlingException extends __BaseException {
|
|
94
94
|
readonly name: "ThrottlingException";
|
|
95
95
|
readonly $fault: "client";
|
|
96
|
-
Message?: string;
|
|
96
|
+
Message?: string | undefined;
|
|
97
97
|
constructor(
|
|
98
98
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
99
99
|
);
|
|
@@ -101,16 +101,16 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
101
101
|
export declare class ValidationException extends __BaseException {
|
|
102
102
|
readonly name: "ValidationException";
|
|
103
103
|
readonly $fault: "client";
|
|
104
|
-
Message?: string;
|
|
104
|
+
Message?: string | undefined;
|
|
105
105
|
constructor(
|
|
106
106
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
107
107
|
);
|
|
108
108
|
}
|
|
109
109
|
export interface IpAddressUpdate {
|
|
110
|
-
IpId?: string;
|
|
111
|
-
SubnetId?: string;
|
|
112
|
-
Ip?: string;
|
|
113
|
-
Ipv6?: string;
|
|
110
|
+
IpId?: string | undefined;
|
|
111
|
+
SubnetId?: string | undefined;
|
|
112
|
+
Ip?: string | undefined;
|
|
113
|
+
Ipv6?: string | undefined;
|
|
114
114
|
}
|
|
115
115
|
export interface AssociateResolverEndpointIpAddressRequest {
|
|
116
116
|
ResolverEndpointId: string | undefined;
|
|
@@ -146,31 +146,31 @@ export declare const ResolverEndpointStatus: {
|
|
|
146
146
|
export type ResolverEndpointStatus =
|
|
147
147
|
(typeof ResolverEndpointStatus)[keyof typeof ResolverEndpointStatus];
|
|
148
148
|
export interface ResolverEndpoint {
|
|
149
|
-
Id?: string;
|
|
150
|
-
CreatorRequestId?: string;
|
|
151
|
-
Arn?: string;
|
|
152
|
-
Name?: string;
|
|
153
|
-
SecurityGroupIds?: string[];
|
|
154
|
-
Direction?: ResolverEndpointDirection;
|
|
155
|
-
IpAddressCount?: number;
|
|
156
|
-
HostVPCId?: string;
|
|
157
|
-
Status?: ResolverEndpointStatus;
|
|
158
|
-
StatusMessage?: string;
|
|
159
|
-
CreationTime?: string;
|
|
160
|
-
ModificationTime?: string;
|
|
161
|
-
OutpostArn?: string;
|
|
162
|
-
PreferredInstanceType?: string;
|
|
163
|
-
ResolverEndpointType?: ResolverEndpointType;
|
|
164
|
-
Protocols?: Protocol[];
|
|
149
|
+
Id?: string | undefined;
|
|
150
|
+
CreatorRequestId?: string | undefined;
|
|
151
|
+
Arn?: string | undefined;
|
|
152
|
+
Name?: string | undefined;
|
|
153
|
+
SecurityGroupIds?: string[] | undefined;
|
|
154
|
+
Direction?: ResolverEndpointDirection | undefined;
|
|
155
|
+
IpAddressCount?: number | undefined;
|
|
156
|
+
HostVPCId?: string | undefined;
|
|
157
|
+
Status?: ResolverEndpointStatus | undefined;
|
|
158
|
+
StatusMessage?: string | undefined;
|
|
159
|
+
CreationTime?: string | undefined;
|
|
160
|
+
ModificationTime?: string | undefined;
|
|
161
|
+
OutpostArn?: string | undefined;
|
|
162
|
+
PreferredInstanceType?: string | undefined;
|
|
163
|
+
ResolverEndpointType?: ResolverEndpointType | undefined;
|
|
164
|
+
Protocols?: Protocol[] | undefined;
|
|
165
165
|
}
|
|
166
166
|
export interface AssociateResolverEndpointIpAddressResponse {
|
|
167
|
-
ResolverEndpoint?: ResolverEndpoint;
|
|
167
|
+
ResolverEndpoint?: ResolverEndpoint | undefined;
|
|
168
168
|
}
|
|
169
169
|
export declare class InvalidParameterException extends __BaseException {
|
|
170
170
|
readonly name: "InvalidParameterException";
|
|
171
171
|
readonly $fault: "client";
|
|
172
172
|
Message: string | undefined;
|
|
173
|
-
FieldName?: string;
|
|
173
|
+
FieldName?: string | undefined;
|
|
174
174
|
constructor(
|
|
175
175
|
opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
|
|
176
176
|
);
|
|
@@ -178,7 +178,7 @@ export declare class InvalidParameterException extends __BaseException {
|
|
|
178
178
|
export declare class InvalidRequestException extends __BaseException {
|
|
179
179
|
readonly name: "InvalidRequestException";
|
|
180
180
|
readonly $fault: "client";
|
|
181
|
-
Message?: string;
|
|
181
|
+
Message?: string | undefined;
|
|
182
182
|
constructor(
|
|
183
183
|
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
184
184
|
);
|
|
@@ -186,8 +186,8 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
186
186
|
export declare class ResourceExistsException extends __BaseException {
|
|
187
187
|
readonly name: "ResourceExistsException";
|
|
188
188
|
readonly $fault: "client";
|
|
189
|
-
Message?: string;
|
|
190
|
-
ResourceType?: string;
|
|
189
|
+
Message?: string | undefined;
|
|
190
|
+
ResourceType?: string | undefined;
|
|
191
191
|
constructor(
|
|
192
192
|
opts: __ExceptionOptionType<ResourceExistsException, __BaseException>
|
|
193
193
|
);
|
|
@@ -214,20 +214,22 @@ export declare const ResolverQueryLogConfigAssociationStatus: {
|
|
|
214
214
|
export type ResolverQueryLogConfigAssociationStatus =
|
|
215
215
|
(typeof ResolverQueryLogConfigAssociationStatus)[keyof typeof ResolverQueryLogConfigAssociationStatus];
|
|
216
216
|
export interface ResolverQueryLogConfigAssociation {
|
|
217
|
-
Id?: string;
|
|
218
|
-
ResolverQueryLogConfigId?: string;
|
|
219
|
-
ResourceId?: string;
|
|
220
|
-
Status?: ResolverQueryLogConfigAssociationStatus;
|
|
221
|
-
Error?: ResolverQueryLogConfigAssociationError;
|
|
222
|
-
ErrorMessage?: string;
|
|
223
|
-
CreationTime?: string;
|
|
217
|
+
Id?: string | undefined;
|
|
218
|
+
ResolverQueryLogConfigId?: string | undefined;
|
|
219
|
+
ResourceId?: string | undefined;
|
|
220
|
+
Status?: ResolverQueryLogConfigAssociationStatus | undefined;
|
|
221
|
+
Error?: ResolverQueryLogConfigAssociationError | undefined;
|
|
222
|
+
ErrorMessage?: string | undefined;
|
|
223
|
+
CreationTime?: string | undefined;
|
|
224
224
|
}
|
|
225
225
|
export interface AssociateResolverQueryLogConfigResponse {
|
|
226
|
-
ResolverQueryLogConfigAssociation?:
|
|
226
|
+
ResolverQueryLogConfigAssociation?:
|
|
227
|
+
| ResolverQueryLogConfigAssociation
|
|
228
|
+
| undefined;
|
|
227
229
|
}
|
|
228
230
|
export interface AssociateResolverRuleRequest {
|
|
229
231
|
ResolverRuleId: string | undefined;
|
|
230
|
-
Name?: string;
|
|
232
|
+
Name?: string | undefined;
|
|
231
233
|
VPCId: string | undefined;
|
|
232
234
|
}
|
|
233
235
|
export declare const ResolverRuleAssociationStatus: {
|
|
@@ -240,21 +242,21 @@ export declare const ResolverRuleAssociationStatus: {
|
|
|
240
242
|
export type ResolverRuleAssociationStatus =
|
|
241
243
|
(typeof ResolverRuleAssociationStatus)[keyof typeof ResolverRuleAssociationStatus];
|
|
242
244
|
export interface ResolverRuleAssociation {
|
|
243
|
-
Id?: string;
|
|
244
|
-
ResolverRuleId?: string;
|
|
245
|
-
Name?: string;
|
|
246
|
-
VPCId?: string;
|
|
247
|
-
Status?: ResolverRuleAssociationStatus;
|
|
248
|
-
StatusMessage?: string;
|
|
245
|
+
Id?: string | undefined;
|
|
246
|
+
ResolverRuleId?: string | undefined;
|
|
247
|
+
Name?: string | undefined;
|
|
248
|
+
VPCId?: string | undefined;
|
|
249
|
+
Status?: ResolverRuleAssociationStatus | undefined;
|
|
250
|
+
StatusMessage?: string | undefined;
|
|
249
251
|
}
|
|
250
252
|
export interface AssociateResolverRuleResponse {
|
|
251
|
-
ResolverRuleAssociation?: ResolverRuleAssociation;
|
|
253
|
+
ResolverRuleAssociation?: ResolverRuleAssociation | undefined;
|
|
252
254
|
}
|
|
253
255
|
export declare class ResourceUnavailableException extends __BaseException {
|
|
254
256
|
readonly name: "ResourceUnavailableException";
|
|
255
257
|
readonly $fault: "client";
|
|
256
|
-
Message?: string;
|
|
257
|
-
ResourceType?: string;
|
|
258
|
+
Message?: string | undefined;
|
|
259
|
+
ResourceType?: string | undefined;
|
|
258
260
|
constructor(
|
|
259
261
|
opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>
|
|
260
262
|
);
|
|
@@ -278,9 +280,9 @@ export declare const BlockResponse: {
|
|
|
278
280
|
};
|
|
279
281
|
export type BlockResponse = (typeof BlockResponse)[keyof typeof BlockResponse];
|
|
280
282
|
export interface CreateFirewallDomainListRequest {
|
|
281
|
-
CreatorRequestId?: string;
|
|
283
|
+
CreatorRequestId?: string | undefined;
|
|
282
284
|
Name: string | undefined;
|
|
283
|
-
Tags?: Tag[];
|
|
285
|
+
Tags?: Tag[] | undefined;
|
|
284
286
|
}
|
|
285
287
|
export declare const FirewallDomainListStatus: {
|
|
286
288
|
readonly COMPLETE: "COMPLETE";
|
|
@@ -292,19 +294,19 @@ export declare const FirewallDomainListStatus: {
|
|
|
292
294
|
export type FirewallDomainListStatus =
|
|
293
295
|
(typeof FirewallDomainListStatus)[keyof typeof FirewallDomainListStatus];
|
|
294
296
|
export interface FirewallDomainList {
|
|
295
|
-
Id?: string;
|
|
296
|
-
Arn?: string;
|
|
297
|
-
Name?: string;
|
|
298
|
-
DomainCount?: number;
|
|
299
|
-
Status?: FirewallDomainListStatus;
|
|
300
|
-
StatusMessage?: string;
|
|
301
|
-
ManagedOwnerName?: string;
|
|
302
|
-
CreatorRequestId?: string;
|
|
303
|
-
CreationTime?: string;
|
|
304
|
-
ModificationTime?: string;
|
|
297
|
+
Id?: string | undefined;
|
|
298
|
+
Arn?: string | undefined;
|
|
299
|
+
Name?: string | undefined;
|
|
300
|
+
DomainCount?: number | undefined;
|
|
301
|
+
Status?: FirewallDomainListStatus | undefined;
|
|
302
|
+
StatusMessage?: string | undefined;
|
|
303
|
+
ManagedOwnerName?: string | undefined;
|
|
304
|
+
CreatorRequestId?: string | undefined;
|
|
305
|
+
CreationTime?: string | undefined;
|
|
306
|
+
ModificationTime?: string | undefined;
|
|
305
307
|
}
|
|
306
308
|
export interface CreateFirewallDomainListResponse {
|
|
307
|
-
FirewallDomainList?: FirewallDomainList;
|
|
309
|
+
FirewallDomainList?: FirewallDomainList | undefined;
|
|
308
310
|
}
|
|
309
311
|
export declare const FirewallDomainRedirectionAction: {
|
|
310
312
|
readonly INSPECT_REDIRECTION_DOMAIN: "INSPECT_REDIRECTION_DOMAIN";
|
|
@@ -313,42 +315,42 @@ export declare const FirewallDomainRedirectionAction: {
|
|
|
313
315
|
export type FirewallDomainRedirectionAction =
|
|
314
316
|
(typeof FirewallDomainRedirectionAction)[keyof typeof FirewallDomainRedirectionAction];
|
|
315
317
|
export interface CreateFirewallRuleRequest {
|
|
316
|
-
CreatorRequestId?: string;
|
|
318
|
+
CreatorRequestId?: string | undefined;
|
|
317
319
|
FirewallRuleGroupId: string | undefined;
|
|
318
320
|
FirewallDomainListId: string | undefined;
|
|
319
321
|
Priority: number | undefined;
|
|
320
322
|
Action: Action | undefined;
|
|
321
|
-
BlockResponse?: BlockResponse;
|
|
322
|
-
BlockOverrideDomain?: string;
|
|
323
|
-
BlockOverrideDnsType?: BlockOverrideDnsType;
|
|
324
|
-
BlockOverrideTtl?: number;
|
|
323
|
+
BlockResponse?: BlockResponse | undefined;
|
|
324
|
+
BlockOverrideDomain?: string | undefined;
|
|
325
|
+
BlockOverrideDnsType?: BlockOverrideDnsType | undefined;
|
|
326
|
+
BlockOverrideTtl?: number | undefined;
|
|
325
327
|
Name: string | undefined;
|
|
326
|
-
FirewallDomainRedirectionAction?: FirewallDomainRedirectionAction;
|
|
327
|
-
Qtype?: string;
|
|
328
|
+
FirewallDomainRedirectionAction?: FirewallDomainRedirectionAction | undefined;
|
|
329
|
+
Qtype?: string | undefined;
|
|
328
330
|
}
|
|
329
331
|
export interface FirewallRule {
|
|
330
|
-
FirewallRuleGroupId?: string;
|
|
331
|
-
FirewallDomainListId?: string;
|
|
332
|
-
Name?: string;
|
|
333
|
-
Priority?: number;
|
|
334
|
-
Action?: Action;
|
|
335
|
-
BlockResponse?: BlockResponse;
|
|
336
|
-
BlockOverrideDomain?: string;
|
|
337
|
-
BlockOverrideDnsType?: BlockOverrideDnsType;
|
|
338
|
-
BlockOverrideTtl?: number;
|
|
339
|
-
CreatorRequestId?: string;
|
|
340
|
-
CreationTime?: string;
|
|
341
|
-
ModificationTime?: string;
|
|
342
|
-
FirewallDomainRedirectionAction?: FirewallDomainRedirectionAction;
|
|
343
|
-
Qtype?: string;
|
|
332
|
+
FirewallRuleGroupId?: string | undefined;
|
|
333
|
+
FirewallDomainListId?: string | undefined;
|
|
334
|
+
Name?: string | undefined;
|
|
335
|
+
Priority?: number | undefined;
|
|
336
|
+
Action?: Action | undefined;
|
|
337
|
+
BlockResponse?: BlockResponse | undefined;
|
|
338
|
+
BlockOverrideDomain?: string | undefined;
|
|
339
|
+
BlockOverrideDnsType?: BlockOverrideDnsType | undefined;
|
|
340
|
+
BlockOverrideTtl?: number | undefined;
|
|
341
|
+
CreatorRequestId?: string | undefined;
|
|
342
|
+
CreationTime?: string | undefined;
|
|
343
|
+
ModificationTime?: string | undefined;
|
|
344
|
+
FirewallDomainRedirectionAction?: FirewallDomainRedirectionAction | undefined;
|
|
345
|
+
Qtype?: string | undefined;
|
|
344
346
|
}
|
|
345
347
|
export interface CreateFirewallRuleResponse {
|
|
346
|
-
FirewallRule?: FirewallRule;
|
|
348
|
+
FirewallRule?: FirewallRule | undefined;
|
|
347
349
|
}
|
|
348
350
|
export interface CreateFirewallRuleGroupRequest {
|
|
349
|
-
CreatorRequestId?: string;
|
|
351
|
+
CreatorRequestId?: string | undefined;
|
|
350
352
|
Name: string | undefined;
|
|
351
|
-
Tags?: Tag[];
|
|
353
|
+
Tags?: Tag[] | undefined;
|
|
352
354
|
}
|
|
353
355
|
export declare const ShareStatus: {
|
|
354
356
|
readonly NotShared: "NOT_SHARED";
|
|
@@ -364,28 +366,28 @@ export declare const FirewallRuleGroupStatus: {
|
|
|
364
366
|
export type FirewallRuleGroupStatus =
|
|
365
367
|
(typeof FirewallRuleGroupStatus)[keyof typeof FirewallRuleGroupStatus];
|
|
366
368
|
export interface FirewallRuleGroup {
|
|
367
|
-
Id?: string;
|
|
368
|
-
Arn?: string;
|
|
369
|
-
Name?: string;
|
|
370
|
-
RuleCount?: number;
|
|
371
|
-
Status?: FirewallRuleGroupStatus;
|
|
372
|
-
StatusMessage?: string;
|
|
373
|
-
OwnerId?: string;
|
|
374
|
-
CreatorRequestId?: string;
|
|
375
|
-
ShareStatus?: ShareStatus;
|
|
376
|
-
CreationTime?: string;
|
|
377
|
-
ModificationTime?: string;
|
|
369
|
+
Id?: string | undefined;
|
|
370
|
+
Arn?: string | undefined;
|
|
371
|
+
Name?: string | undefined;
|
|
372
|
+
RuleCount?: number | undefined;
|
|
373
|
+
Status?: FirewallRuleGroupStatus | undefined;
|
|
374
|
+
StatusMessage?: string | undefined;
|
|
375
|
+
OwnerId?: string | undefined;
|
|
376
|
+
CreatorRequestId?: string | undefined;
|
|
377
|
+
ShareStatus?: ShareStatus | undefined;
|
|
378
|
+
CreationTime?: string | undefined;
|
|
379
|
+
ModificationTime?: string | undefined;
|
|
378
380
|
}
|
|
379
381
|
export interface CreateFirewallRuleGroupResponse {
|
|
380
|
-
FirewallRuleGroup?: FirewallRuleGroup;
|
|
382
|
+
FirewallRuleGroup?: FirewallRuleGroup | undefined;
|
|
381
383
|
}
|
|
382
384
|
export interface CreateOutpostResolverRequest {
|
|
383
385
|
CreatorRequestId: string | undefined;
|
|
384
386
|
Name: string | undefined;
|
|
385
|
-
InstanceCount?: number;
|
|
387
|
+
InstanceCount?: number | undefined;
|
|
386
388
|
PreferredInstanceType: string | undefined;
|
|
387
389
|
OutpostArn: string | undefined;
|
|
388
|
-
Tags?: Tag[];
|
|
390
|
+
Tags?: Tag[] | undefined;
|
|
389
391
|
}
|
|
390
392
|
export declare const OutpostResolverStatus: {
|
|
391
393
|
readonly ACTION_NEEDED: "ACTION_NEEDED";
|
|
@@ -399,54 +401,54 @@ export declare const OutpostResolverStatus: {
|
|
|
399
401
|
export type OutpostResolverStatus =
|
|
400
402
|
(typeof OutpostResolverStatus)[keyof typeof OutpostResolverStatus];
|
|
401
403
|
export interface OutpostResolver {
|
|
402
|
-
Arn?: string;
|
|
403
|
-
CreationTime?: string;
|
|
404
|
-
ModificationTime?: string;
|
|
405
|
-
CreatorRequestId?: string;
|
|
406
|
-
Id?: string;
|
|
407
|
-
InstanceCount?: number;
|
|
408
|
-
PreferredInstanceType?: string;
|
|
409
|
-
Name?: string;
|
|
410
|
-
Status?: OutpostResolverStatus;
|
|
411
|
-
StatusMessage?: string;
|
|
412
|
-
OutpostArn?: string;
|
|
404
|
+
Arn?: string | undefined;
|
|
405
|
+
CreationTime?: string | undefined;
|
|
406
|
+
ModificationTime?: string | undefined;
|
|
407
|
+
CreatorRequestId?: string | undefined;
|
|
408
|
+
Id?: string | undefined;
|
|
409
|
+
InstanceCount?: number | undefined;
|
|
410
|
+
PreferredInstanceType?: string | undefined;
|
|
411
|
+
Name?: string | undefined;
|
|
412
|
+
Status?: OutpostResolverStatus | undefined;
|
|
413
|
+
StatusMessage?: string | undefined;
|
|
414
|
+
OutpostArn?: string | undefined;
|
|
413
415
|
}
|
|
414
416
|
export interface CreateOutpostResolverResponse {
|
|
415
|
-
OutpostResolver?: OutpostResolver;
|
|
417
|
+
OutpostResolver?: OutpostResolver | undefined;
|
|
416
418
|
}
|
|
417
419
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
418
420
|
readonly name: "ServiceQuotaExceededException";
|
|
419
421
|
readonly $fault: "client";
|
|
420
|
-
Message?: string;
|
|
422
|
+
Message?: string | undefined;
|
|
421
423
|
constructor(
|
|
422
424
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
423
425
|
);
|
|
424
426
|
}
|
|
425
427
|
export interface IpAddressRequest {
|
|
426
428
|
SubnetId: string | undefined;
|
|
427
|
-
Ip?: string;
|
|
428
|
-
Ipv6?: string;
|
|
429
|
+
Ip?: string | undefined;
|
|
430
|
+
Ipv6?: string | undefined;
|
|
429
431
|
}
|
|
430
432
|
export interface CreateResolverEndpointRequest {
|
|
431
433
|
CreatorRequestId: string | undefined;
|
|
432
|
-
Name?: string;
|
|
434
|
+
Name?: string | undefined;
|
|
433
435
|
SecurityGroupIds: string[] | undefined;
|
|
434
436
|
Direction: ResolverEndpointDirection | undefined;
|
|
435
437
|
IpAddresses: IpAddressRequest[] | undefined;
|
|
436
|
-
OutpostArn?: string;
|
|
437
|
-
PreferredInstanceType?: string;
|
|
438
|
-
Tags?: Tag[];
|
|
439
|
-
ResolverEndpointType?: ResolverEndpointType;
|
|
440
|
-
Protocols?: Protocol[];
|
|
438
|
+
OutpostArn?: string | undefined;
|
|
439
|
+
PreferredInstanceType?: string | undefined;
|
|
440
|
+
Tags?: Tag[] | undefined;
|
|
441
|
+
ResolverEndpointType?: ResolverEndpointType | undefined;
|
|
442
|
+
Protocols?: Protocol[] | undefined;
|
|
441
443
|
}
|
|
442
444
|
export interface CreateResolverEndpointResponse {
|
|
443
|
-
ResolverEndpoint?: ResolverEndpoint;
|
|
445
|
+
ResolverEndpoint?: ResolverEndpoint | undefined;
|
|
444
446
|
}
|
|
445
447
|
export interface CreateResolverQueryLogConfigRequest {
|
|
446
448
|
Name: string | undefined;
|
|
447
449
|
DestinationArn: string | undefined;
|
|
448
|
-
CreatorRequestId?: string;
|
|
449
|
-
Tags?: Tag[];
|
|
450
|
+
CreatorRequestId?: string | undefined;
|
|
451
|
+
Tags?: Tag[] | undefined;
|
|
450
452
|
}
|
|
451
453
|
export declare const ResolverQueryLogConfigStatus: {
|
|
452
454
|
readonly Created: "CREATED";
|
|
@@ -457,19 +459,19 @@ export declare const ResolverQueryLogConfigStatus: {
|
|
|
457
459
|
export type ResolverQueryLogConfigStatus =
|
|
458
460
|
(typeof ResolverQueryLogConfigStatus)[keyof typeof ResolverQueryLogConfigStatus];
|
|
459
461
|
export interface ResolverQueryLogConfig {
|
|
460
|
-
Id?: string;
|
|
461
|
-
OwnerId?: string;
|
|
462
|
-
Status?: ResolverQueryLogConfigStatus;
|
|
463
|
-
ShareStatus?: ShareStatus;
|
|
464
|
-
AssociationCount?: number;
|
|
465
|
-
Arn?: string;
|
|
466
|
-
Name?: string;
|
|
467
|
-
DestinationArn?: string;
|
|
468
|
-
CreatorRequestId?: string;
|
|
469
|
-
CreationTime?: string;
|
|
462
|
+
Id?: string | undefined;
|
|
463
|
+
OwnerId?: string | undefined;
|
|
464
|
+
Status?: ResolverQueryLogConfigStatus | undefined;
|
|
465
|
+
ShareStatus?: ShareStatus | undefined;
|
|
466
|
+
AssociationCount?: number | undefined;
|
|
467
|
+
Arn?: string | undefined;
|
|
468
|
+
Name?: string | undefined;
|
|
469
|
+
DestinationArn?: string | undefined;
|
|
470
|
+
CreatorRequestId?: string | undefined;
|
|
471
|
+
CreationTime?: string | undefined;
|
|
470
472
|
}
|
|
471
473
|
export interface CreateResolverQueryLogConfigResponse {
|
|
472
|
-
ResolverQueryLogConfig?: ResolverQueryLogConfig;
|
|
474
|
+
ResolverQueryLogConfig?: ResolverQueryLogConfig | undefined;
|
|
473
475
|
}
|
|
474
476
|
export declare const RuleTypeOption: {
|
|
475
477
|
readonly Forward: "FORWARD";
|
|
@@ -479,20 +481,20 @@ export declare const RuleTypeOption: {
|
|
|
479
481
|
export type RuleTypeOption =
|
|
480
482
|
(typeof RuleTypeOption)[keyof typeof RuleTypeOption];
|
|
481
483
|
export interface TargetAddress {
|
|
482
|
-
Ip?: string;
|
|
483
|
-
Port?: number;
|
|
484
|
-
Ipv6?: string;
|
|
485
|
-
Protocol?: Protocol;
|
|
486
|
-
ServerNameIndication?: string;
|
|
484
|
+
Ip?: string | undefined;
|
|
485
|
+
Port?: number | undefined;
|
|
486
|
+
Ipv6?: string | undefined;
|
|
487
|
+
Protocol?: Protocol | undefined;
|
|
488
|
+
ServerNameIndication?: string | undefined;
|
|
487
489
|
}
|
|
488
490
|
export interface CreateResolverRuleRequest {
|
|
489
491
|
CreatorRequestId: string | undefined;
|
|
490
|
-
Name?: string;
|
|
492
|
+
Name?: string | undefined;
|
|
491
493
|
RuleType: RuleTypeOption | undefined;
|
|
492
|
-
DomainName?: string;
|
|
493
|
-
TargetIps?: TargetAddress[];
|
|
494
|
-
ResolverEndpointId?: string;
|
|
495
|
-
Tags?: Tag[];
|
|
494
|
+
DomainName?: string | undefined;
|
|
495
|
+
TargetIps?: TargetAddress[] | undefined;
|
|
496
|
+
ResolverEndpointId?: string | undefined;
|
|
497
|
+
Tags?: Tag[] | undefined;
|
|
496
498
|
}
|
|
497
499
|
export declare const ResolverRuleStatus: {
|
|
498
500
|
readonly Complete: "COMPLETE";
|
|
@@ -503,73 +505,73 @@ export declare const ResolverRuleStatus: {
|
|
|
503
505
|
export type ResolverRuleStatus =
|
|
504
506
|
(typeof ResolverRuleStatus)[keyof typeof ResolverRuleStatus];
|
|
505
507
|
export interface ResolverRule {
|
|
506
|
-
Id?: string;
|
|
507
|
-
CreatorRequestId?: string;
|
|
508
|
-
Arn?: string;
|
|
509
|
-
DomainName?: string;
|
|
510
|
-
Status?: ResolverRuleStatus;
|
|
511
|
-
StatusMessage?: string;
|
|
512
|
-
RuleType?: RuleTypeOption;
|
|
513
|
-
Name?: string;
|
|
514
|
-
TargetIps?: TargetAddress[];
|
|
515
|
-
ResolverEndpointId?: string;
|
|
516
|
-
OwnerId?: string;
|
|
517
|
-
ShareStatus?: ShareStatus;
|
|
518
|
-
CreationTime?: string;
|
|
519
|
-
ModificationTime?: string;
|
|
508
|
+
Id?: string | undefined;
|
|
509
|
+
CreatorRequestId?: string | undefined;
|
|
510
|
+
Arn?: string | undefined;
|
|
511
|
+
DomainName?: string | undefined;
|
|
512
|
+
Status?: ResolverRuleStatus | undefined;
|
|
513
|
+
StatusMessage?: string | undefined;
|
|
514
|
+
RuleType?: RuleTypeOption | undefined;
|
|
515
|
+
Name?: string | undefined;
|
|
516
|
+
TargetIps?: TargetAddress[] | undefined;
|
|
517
|
+
ResolverEndpointId?: string | undefined;
|
|
518
|
+
OwnerId?: string | undefined;
|
|
519
|
+
ShareStatus?: ShareStatus | undefined;
|
|
520
|
+
CreationTime?: string | undefined;
|
|
521
|
+
ModificationTime?: string | undefined;
|
|
520
522
|
}
|
|
521
523
|
export interface CreateResolverRuleResponse {
|
|
522
|
-
ResolverRule?: ResolverRule;
|
|
524
|
+
ResolverRule?: ResolverRule | undefined;
|
|
523
525
|
}
|
|
524
526
|
export interface DeleteFirewallDomainListRequest {
|
|
525
527
|
FirewallDomainListId: string | undefined;
|
|
526
528
|
}
|
|
527
529
|
export interface DeleteFirewallDomainListResponse {
|
|
528
|
-
FirewallDomainList?: FirewallDomainList;
|
|
530
|
+
FirewallDomainList?: FirewallDomainList | undefined;
|
|
529
531
|
}
|
|
530
532
|
export interface DeleteFirewallRuleRequest {
|
|
531
533
|
FirewallRuleGroupId: string | undefined;
|
|
532
534
|
FirewallDomainListId: string | undefined;
|
|
533
|
-
Qtype?: string;
|
|
535
|
+
Qtype?: string | undefined;
|
|
534
536
|
}
|
|
535
537
|
export interface DeleteFirewallRuleResponse {
|
|
536
|
-
FirewallRule?: FirewallRule;
|
|
538
|
+
FirewallRule?: FirewallRule | undefined;
|
|
537
539
|
}
|
|
538
540
|
export interface DeleteFirewallRuleGroupRequest {
|
|
539
541
|
FirewallRuleGroupId: string | undefined;
|
|
540
542
|
}
|
|
541
543
|
export interface DeleteFirewallRuleGroupResponse {
|
|
542
|
-
FirewallRuleGroup?: FirewallRuleGroup;
|
|
544
|
+
FirewallRuleGroup?: FirewallRuleGroup | undefined;
|
|
543
545
|
}
|
|
544
546
|
export interface DeleteOutpostResolverRequest {
|
|
545
547
|
Id: string | undefined;
|
|
546
548
|
}
|
|
547
549
|
export interface DeleteOutpostResolverResponse {
|
|
548
|
-
OutpostResolver?: OutpostResolver;
|
|
550
|
+
OutpostResolver?: OutpostResolver | undefined;
|
|
549
551
|
}
|
|
550
552
|
export interface DeleteResolverEndpointRequest {
|
|
551
553
|
ResolverEndpointId: string | undefined;
|
|
552
554
|
}
|
|
553
555
|
export interface DeleteResolverEndpointResponse {
|
|
554
|
-
ResolverEndpoint?: ResolverEndpoint;
|
|
556
|
+
ResolverEndpoint?: ResolverEndpoint | undefined;
|
|
555
557
|
}
|
|
556
558
|
export interface DeleteResolverQueryLogConfigRequest {
|
|
557
559
|
ResolverQueryLogConfigId: string | undefined;
|
|
558
560
|
}
|
|
559
561
|
export interface DeleteResolverQueryLogConfigResponse {
|
|
560
|
-
ResolverQueryLogConfig?: ResolverQueryLogConfig;
|
|
562
|
+
ResolverQueryLogConfig?: ResolverQueryLogConfig | undefined;
|
|
561
563
|
}
|
|
562
564
|
export interface DeleteResolverRuleRequest {
|
|
563
565
|
ResolverRuleId: string | undefined;
|
|
564
566
|
}
|
|
565
567
|
export interface DeleteResolverRuleResponse {
|
|
566
|
-
ResolverRule?: ResolverRule;
|
|
568
|
+
ResolverRule?: ResolverRule | undefined;
|
|
567
569
|
}
|
|
568
570
|
export declare class ResourceInUseException extends __BaseException {
|
|
569
571
|
readonly name: "ResourceInUseException";
|
|
570
572
|
readonly $fault: "client";
|
|
571
|
-
Message?: string;
|
|
572
|
-
ResourceType?: string;
|
|
573
|
+
Message?: string | undefined;
|
|
574
|
+
ResourceType?: string | undefined;
|
|
573
575
|
constructor(
|
|
574
576
|
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
575
577
|
);
|
|
@@ -578,32 +580,34 @@ export interface DisassociateFirewallRuleGroupRequest {
|
|
|
578
580
|
FirewallRuleGroupAssociationId: string | undefined;
|
|
579
581
|
}
|
|
580
582
|
export interface DisassociateFirewallRuleGroupResponse {
|
|
581
|
-
FirewallRuleGroupAssociation?: FirewallRuleGroupAssociation;
|
|
583
|
+
FirewallRuleGroupAssociation?: FirewallRuleGroupAssociation | undefined;
|
|
582
584
|
}
|
|
583
585
|
export interface DisassociateResolverEndpointIpAddressRequest {
|
|
584
586
|
ResolverEndpointId: string | undefined;
|
|
585
587
|
IpAddress: IpAddressUpdate | undefined;
|
|
586
588
|
}
|
|
587
589
|
export interface DisassociateResolverEndpointIpAddressResponse {
|
|
588
|
-
ResolverEndpoint?: ResolverEndpoint;
|
|
590
|
+
ResolverEndpoint?: ResolverEndpoint | undefined;
|
|
589
591
|
}
|
|
590
592
|
export interface DisassociateResolverQueryLogConfigRequest {
|
|
591
593
|
ResolverQueryLogConfigId: string | undefined;
|
|
592
594
|
ResourceId: string | undefined;
|
|
593
595
|
}
|
|
594
596
|
export interface DisassociateResolverQueryLogConfigResponse {
|
|
595
|
-
ResolverQueryLogConfigAssociation?:
|
|
597
|
+
ResolverQueryLogConfigAssociation?:
|
|
598
|
+
| ResolverQueryLogConfigAssociation
|
|
599
|
+
| undefined;
|
|
596
600
|
}
|
|
597
601
|
export interface DisassociateResolverRuleRequest {
|
|
598
602
|
VPCId: string | undefined;
|
|
599
603
|
ResolverRuleId: string | undefined;
|
|
600
604
|
}
|
|
601
605
|
export interface DisassociateResolverRuleResponse {
|
|
602
|
-
ResolverRuleAssociation?: ResolverRuleAssociation;
|
|
606
|
+
ResolverRuleAssociation?: ResolverRuleAssociation | undefined;
|
|
603
607
|
}
|
|
604
608
|
export interface Filter {
|
|
605
|
-
Name?: string;
|
|
606
|
-
Values?: string[];
|
|
609
|
+
Name?: string | undefined;
|
|
610
|
+
Values?: string[] | undefined;
|
|
607
611
|
}
|
|
608
612
|
export declare const FirewallFailOpenStatus: {
|
|
609
613
|
readonly DISABLED: "DISABLED";
|
|
@@ -613,10 +617,10 @@ export declare const FirewallFailOpenStatus: {
|
|
|
613
617
|
export type FirewallFailOpenStatus =
|
|
614
618
|
(typeof FirewallFailOpenStatus)[keyof typeof FirewallFailOpenStatus];
|
|
615
619
|
export interface FirewallConfig {
|
|
616
|
-
Id?: string;
|
|
617
|
-
ResourceId?: string;
|
|
618
|
-
OwnerId?: string;
|
|
619
|
-
FirewallFailOpen?: FirewallFailOpenStatus;
|
|
620
|
+
Id?: string | undefined;
|
|
621
|
+
ResourceId?: string | undefined;
|
|
622
|
+
OwnerId?: string | undefined;
|
|
623
|
+
FirewallFailOpen?: FirewallFailOpenStatus | undefined;
|
|
620
624
|
}
|
|
621
625
|
export declare const FirewallDomainImportOperation: {
|
|
622
626
|
readonly REPLACE: "REPLACE";
|
|
@@ -624,11 +628,11 @@ export declare const FirewallDomainImportOperation: {
|
|
|
624
628
|
export type FirewallDomainImportOperation =
|
|
625
629
|
(typeof FirewallDomainImportOperation)[keyof typeof FirewallDomainImportOperation];
|
|
626
630
|
export interface FirewallDomainListMetadata {
|
|
627
|
-
Id?: string;
|
|
628
|
-
Arn?: string;
|
|
629
|
-
Name?: string;
|
|
630
|
-
CreatorRequestId?: string;
|
|
631
|
-
ManagedOwnerName?: string;
|
|
631
|
+
Id?: string | undefined;
|
|
632
|
+
Arn?: string | undefined;
|
|
633
|
+
Name?: string | undefined;
|
|
634
|
+
CreatorRequestId?: string | undefined;
|
|
635
|
+
ManagedOwnerName?: string | undefined;
|
|
632
636
|
}
|
|
633
637
|
export declare const FirewallDomainUpdateOperation: {
|
|
634
638
|
readonly ADD: "ADD";
|
|
@@ -638,48 +642,48 @@ export declare const FirewallDomainUpdateOperation: {
|
|
|
638
642
|
export type FirewallDomainUpdateOperation =
|
|
639
643
|
(typeof FirewallDomainUpdateOperation)[keyof typeof FirewallDomainUpdateOperation];
|
|
640
644
|
export interface FirewallRuleGroupMetadata {
|
|
641
|
-
Id?: string;
|
|
642
|
-
Arn?: string;
|
|
643
|
-
Name?: string;
|
|
644
|
-
OwnerId?: string;
|
|
645
|
-
CreatorRequestId?: string;
|
|
646
|
-
ShareStatus?: ShareStatus;
|
|
645
|
+
Id?: string | undefined;
|
|
646
|
+
Arn?: string | undefined;
|
|
647
|
+
Name?: string | undefined;
|
|
648
|
+
OwnerId?: string | undefined;
|
|
649
|
+
CreatorRequestId?: string | undefined;
|
|
650
|
+
ShareStatus?: ShareStatus | undefined;
|
|
647
651
|
}
|
|
648
652
|
export interface GetFirewallConfigRequest {
|
|
649
653
|
ResourceId: string | undefined;
|
|
650
654
|
}
|
|
651
655
|
export interface GetFirewallConfigResponse {
|
|
652
|
-
FirewallConfig?: FirewallConfig;
|
|
656
|
+
FirewallConfig?: FirewallConfig | undefined;
|
|
653
657
|
}
|
|
654
658
|
export interface GetFirewallDomainListRequest {
|
|
655
659
|
FirewallDomainListId: string | undefined;
|
|
656
660
|
}
|
|
657
661
|
export interface GetFirewallDomainListResponse {
|
|
658
|
-
FirewallDomainList?: FirewallDomainList;
|
|
662
|
+
FirewallDomainList?: FirewallDomainList | undefined;
|
|
659
663
|
}
|
|
660
664
|
export interface GetFirewallRuleGroupRequest {
|
|
661
665
|
FirewallRuleGroupId: string | undefined;
|
|
662
666
|
}
|
|
663
667
|
export interface GetFirewallRuleGroupResponse {
|
|
664
|
-
FirewallRuleGroup?: FirewallRuleGroup;
|
|
668
|
+
FirewallRuleGroup?: FirewallRuleGroup | undefined;
|
|
665
669
|
}
|
|
666
670
|
export interface GetFirewallRuleGroupAssociationRequest {
|
|
667
671
|
FirewallRuleGroupAssociationId: string | undefined;
|
|
668
672
|
}
|
|
669
673
|
export interface GetFirewallRuleGroupAssociationResponse {
|
|
670
|
-
FirewallRuleGroupAssociation?: FirewallRuleGroupAssociation;
|
|
674
|
+
FirewallRuleGroupAssociation?: FirewallRuleGroupAssociation | undefined;
|
|
671
675
|
}
|
|
672
676
|
export interface GetFirewallRuleGroupPolicyRequest {
|
|
673
677
|
Arn: string | undefined;
|
|
674
678
|
}
|
|
675
679
|
export interface GetFirewallRuleGroupPolicyResponse {
|
|
676
|
-
FirewallRuleGroupPolicy?: string;
|
|
680
|
+
FirewallRuleGroupPolicy?: string | undefined;
|
|
677
681
|
}
|
|
678
682
|
export interface GetOutpostResolverRequest {
|
|
679
683
|
Id: string | undefined;
|
|
680
684
|
}
|
|
681
685
|
export interface GetOutpostResolverResponse {
|
|
682
|
-
OutpostResolver?: OutpostResolver;
|
|
686
|
+
OutpostResolver?: OutpostResolver | undefined;
|
|
683
687
|
}
|
|
684
688
|
export interface GetResolverConfigRequest {
|
|
685
689
|
ResourceId: string | undefined;
|
|
@@ -695,13 +699,13 @@ export declare const ResolverAutodefinedReverseStatus: {
|
|
|
695
699
|
export type ResolverAutodefinedReverseStatus =
|
|
696
700
|
(typeof ResolverAutodefinedReverseStatus)[keyof typeof ResolverAutodefinedReverseStatus];
|
|
697
701
|
export interface ResolverConfig {
|
|
698
|
-
Id?: string;
|
|
699
|
-
ResourceId?: string;
|
|
700
|
-
OwnerId?: string;
|
|
701
|
-
AutodefinedReverse?: ResolverAutodefinedReverseStatus;
|
|
702
|
+
Id?: string | undefined;
|
|
703
|
+
ResourceId?: string | undefined;
|
|
704
|
+
OwnerId?: string | undefined;
|
|
705
|
+
AutodefinedReverse?: ResolverAutodefinedReverseStatus | undefined;
|
|
702
706
|
}
|
|
703
707
|
export interface GetResolverConfigResponse {
|
|
704
|
-
ResolverConfig?: ResolverConfig;
|
|
708
|
+
ResolverConfig?: ResolverConfig | undefined;
|
|
705
709
|
}
|
|
706
710
|
export interface GetResolverDnssecConfigRequest {
|
|
707
711
|
ResourceId: string | undefined;
|
|
@@ -717,42 +721,44 @@ export declare const ResolverDNSSECValidationStatus: {
|
|
|
717
721
|
export type ResolverDNSSECValidationStatus =
|
|
718
722
|
(typeof ResolverDNSSECValidationStatus)[keyof typeof ResolverDNSSECValidationStatus];
|
|
719
723
|
export interface ResolverDnssecConfig {
|
|
720
|
-
Id?: string;
|
|
721
|
-
OwnerId?: string;
|
|
722
|
-
ResourceId?: string;
|
|
723
|
-
ValidationStatus?: ResolverDNSSECValidationStatus;
|
|
724
|
+
Id?: string | undefined;
|
|
725
|
+
OwnerId?: string | undefined;
|
|
726
|
+
ResourceId?: string | undefined;
|
|
727
|
+
ValidationStatus?: ResolverDNSSECValidationStatus | undefined;
|
|
724
728
|
}
|
|
725
729
|
export interface GetResolverDnssecConfigResponse {
|
|
726
|
-
ResolverDNSSECConfig?: ResolverDnssecConfig;
|
|
730
|
+
ResolverDNSSECConfig?: ResolverDnssecConfig | undefined;
|
|
727
731
|
}
|
|
728
732
|
export interface GetResolverEndpointRequest {
|
|
729
733
|
ResolverEndpointId: string | undefined;
|
|
730
734
|
}
|
|
731
735
|
export interface GetResolverEndpointResponse {
|
|
732
|
-
ResolverEndpoint?: ResolverEndpoint;
|
|
736
|
+
ResolverEndpoint?: ResolverEndpoint | undefined;
|
|
733
737
|
}
|
|
734
738
|
export interface GetResolverQueryLogConfigRequest {
|
|
735
739
|
ResolverQueryLogConfigId: string | undefined;
|
|
736
740
|
}
|
|
737
741
|
export interface GetResolverQueryLogConfigResponse {
|
|
738
|
-
ResolverQueryLogConfig?: ResolverQueryLogConfig;
|
|
742
|
+
ResolverQueryLogConfig?: ResolverQueryLogConfig | undefined;
|
|
739
743
|
}
|
|
740
744
|
export interface GetResolverQueryLogConfigAssociationRequest {
|
|
741
745
|
ResolverQueryLogConfigAssociationId: string | undefined;
|
|
742
746
|
}
|
|
743
747
|
export interface GetResolverQueryLogConfigAssociationResponse {
|
|
744
|
-
ResolverQueryLogConfigAssociation?:
|
|
748
|
+
ResolverQueryLogConfigAssociation?:
|
|
749
|
+
| ResolverQueryLogConfigAssociation
|
|
750
|
+
| undefined;
|
|
745
751
|
}
|
|
746
752
|
export interface GetResolverQueryLogConfigPolicyRequest {
|
|
747
753
|
Arn: string | undefined;
|
|
748
754
|
}
|
|
749
755
|
export interface GetResolverQueryLogConfigPolicyResponse {
|
|
750
|
-
ResolverQueryLogConfigPolicy?: string;
|
|
756
|
+
ResolverQueryLogConfigPolicy?: string | undefined;
|
|
751
757
|
}
|
|
752
758
|
export declare class UnknownResourceException extends __BaseException {
|
|
753
759
|
readonly name: "UnknownResourceException";
|
|
754
760
|
readonly $fault: "client";
|
|
755
|
-
Message?: string;
|
|
761
|
+
Message?: string | undefined;
|
|
756
762
|
constructor(
|
|
757
763
|
opts: __ExceptionOptionType<UnknownResourceException, __BaseException>
|
|
758
764
|
);
|
|
@@ -761,19 +767,19 @@ export interface GetResolverRuleRequest {
|
|
|
761
767
|
ResolverRuleId: string | undefined;
|
|
762
768
|
}
|
|
763
769
|
export interface GetResolverRuleResponse {
|
|
764
|
-
ResolverRule?: ResolverRule;
|
|
770
|
+
ResolverRule?: ResolverRule | undefined;
|
|
765
771
|
}
|
|
766
772
|
export interface GetResolverRuleAssociationRequest {
|
|
767
773
|
ResolverRuleAssociationId: string | undefined;
|
|
768
774
|
}
|
|
769
775
|
export interface GetResolverRuleAssociationResponse {
|
|
770
|
-
ResolverRuleAssociation?: ResolverRuleAssociation;
|
|
776
|
+
ResolverRuleAssociation?: ResolverRuleAssociation | undefined;
|
|
771
777
|
}
|
|
772
778
|
export interface GetResolverRulePolicyRequest {
|
|
773
779
|
Arn: string | undefined;
|
|
774
780
|
}
|
|
775
781
|
export interface GetResolverRulePolicyResponse {
|
|
776
|
-
ResolverRulePolicy?: string;
|
|
782
|
+
ResolverRulePolicy?: string | undefined;
|
|
777
783
|
}
|
|
778
784
|
export interface ImportFirewallDomainsRequest {
|
|
779
785
|
FirewallDomainListId: string | undefined;
|
|
@@ -781,15 +787,15 @@ export interface ImportFirewallDomainsRequest {
|
|
|
781
787
|
DomainFileUrl: string | undefined;
|
|
782
788
|
}
|
|
783
789
|
export interface ImportFirewallDomainsResponse {
|
|
784
|
-
Id?: string;
|
|
785
|
-
Name?: string;
|
|
786
|
-
Status?: FirewallDomainListStatus;
|
|
787
|
-
StatusMessage?: string;
|
|
790
|
+
Id?: string | undefined;
|
|
791
|
+
Name?: string | undefined;
|
|
792
|
+
Status?: FirewallDomainListStatus | undefined;
|
|
793
|
+
StatusMessage?: string | undefined;
|
|
788
794
|
}
|
|
789
795
|
export declare class InvalidNextTokenException extends __BaseException {
|
|
790
796
|
readonly name: "InvalidNextTokenException";
|
|
791
797
|
readonly $fault: "client";
|
|
792
|
-
Message?: string;
|
|
798
|
+
Message?: string | undefined;
|
|
793
799
|
constructor(
|
|
794
800
|
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
795
801
|
);
|
|
@@ -797,7 +803,7 @@ export declare class InvalidNextTokenException extends __BaseException {
|
|
|
797
803
|
export declare class InvalidPolicyDocument extends __BaseException {
|
|
798
804
|
readonly name: "InvalidPolicyDocument";
|
|
799
805
|
readonly $fault: "client";
|
|
800
|
-
Message?: string;
|
|
806
|
+
Message?: string | undefined;
|
|
801
807
|
constructor(
|
|
802
808
|
opts: __ExceptionOptionType<InvalidPolicyDocument, __BaseException>
|
|
803
809
|
);
|
|
@@ -805,7 +811,7 @@ export declare class InvalidPolicyDocument extends __BaseException {
|
|
|
805
811
|
export declare class InvalidTagException extends __BaseException {
|
|
806
812
|
readonly name: "InvalidTagException";
|
|
807
813
|
readonly $fault: "client";
|
|
808
|
-
Message?: string;
|
|
814
|
+
Message?: string | undefined;
|
|
809
815
|
constructor(
|
|
810
816
|
opts: __ExceptionOptionType<InvalidTagException, __BaseException>
|
|
811
817
|
);
|
|
@@ -827,116 +833,116 @@ export declare const IpAddressStatus: {
|
|
|
827
833
|
export type IpAddressStatus =
|
|
828
834
|
(typeof IpAddressStatus)[keyof typeof IpAddressStatus];
|
|
829
835
|
export interface IpAddressResponse {
|
|
830
|
-
IpId?: string;
|
|
831
|
-
SubnetId?: string;
|
|
832
|
-
Ip?: string;
|
|
833
|
-
Ipv6?: string;
|
|
834
|
-
Status?: IpAddressStatus;
|
|
835
|
-
StatusMessage?: string;
|
|
836
|
-
CreationTime?: string;
|
|
837
|
-
ModificationTime?: string;
|
|
836
|
+
IpId?: string | undefined;
|
|
837
|
+
SubnetId?: string | undefined;
|
|
838
|
+
Ip?: string | undefined;
|
|
839
|
+
Ipv6?: string | undefined;
|
|
840
|
+
Status?: IpAddressStatus | undefined;
|
|
841
|
+
StatusMessage?: string | undefined;
|
|
842
|
+
CreationTime?: string | undefined;
|
|
843
|
+
ModificationTime?: string | undefined;
|
|
838
844
|
}
|
|
839
845
|
export interface ListFirewallConfigsRequest {
|
|
840
|
-
MaxResults?: number;
|
|
841
|
-
NextToken?: string;
|
|
846
|
+
MaxResults?: number | undefined;
|
|
847
|
+
NextToken?: string | undefined;
|
|
842
848
|
}
|
|
843
849
|
export interface ListFirewallConfigsResponse {
|
|
844
|
-
NextToken?: string;
|
|
845
|
-
FirewallConfigs?: FirewallConfig[];
|
|
850
|
+
NextToken?: string | undefined;
|
|
851
|
+
FirewallConfigs?: FirewallConfig[] | undefined;
|
|
846
852
|
}
|
|
847
853
|
export interface ListFirewallDomainListsRequest {
|
|
848
|
-
MaxResults?: number;
|
|
849
|
-
NextToken?: string;
|
|
854
|
+
MaxResults?: number | undefined;
|
|
855
|
+
NextToken?: string | undefined;
|
|
850
856
|
}
|
|
851
857
|
export interface ListFirewallDomainListsResponse {
|
|
852
|
-
NextToken?: string;
|
|
853
|
-
FirewallDomainLists?: FirewallDomainListMetadata[];
|
|
858
|
+
NextToken?: string | undefined;
|
|
859
|
+
FirewallDomainLists?: FirewallDomainListMetadata[] | undefined;
|
|
854
860
|
}
|
|
855
861
|
export interface ListFirewallDomainsRequest {
|
|
856
862
|
FirewallDomainListId: string | undefined;
|
|
857
|
-
MaxResults?: number;
|
|
858
|
-
NextToken?: string;
|
|
863
|
+
MaxResults?: number | undefined;
|
|
864
|
+
NextToken?: string | undefined;
|
|
859
865
|
}
|
|
860
866
|
export interface ListFirewallDomainsResponse {
|
|
861
|
-
NextToken?: string;
|
|
862
|
-
Domains?: string[];
|
|
867
|
+
NextToken?: string | undefined;
|
|
868
|
+
Domains?: string[] | undefined;
|
|
863
869
|
}
|
|
864
870
|
export interface ListFirewallRuleGroupAssociationsRequest {
|
|
865
|
-
FirewallRuleGroupId?: string;
|
|
866
|
-
VpcId?: string;
|
|
867
|
-
Priority?: number;
|
|
868
|
-
Status?: FirewallRuleGroupAssociationStatus;
|
|
869
|
-
MaxResults?: number;
|
|
870
|
-
NextToken?: string;
|
|
871
|
+
FirewallRuleGroupId?: string | undefined;
|
|
872
|
+
VpcId?: string | undefined;
|
|
873
|
+
Priority?: number | undefined;
|
|
874
|
+
Status?: FirewallRuleGroupAssociationStatus | undefined;
|
|
875
|
+
MaxResults?: number | undefined;
|
|
876
|
+
NextToken?: string | undefined;
|
|
871
877
|
}
|
|
872
878
|
export interface ListFirewallRuleGroupAssociationsResponse {
|
|
873
|
-
NextToken?: string;
|
|
874
|
-
FirewallRuleGroupAssociations?: FirewallRuleGroupAssociation[];
|
|
879
|
+
NextToken?: string | undefined;
|
|
880
|
+
FirewallRuleGroupAssociations?: FirewallRuleGroupAssociation[] | undefined;
|
|
875
881
|
}
|
|
876
882
|
export interface ListFirewallRuleGroupsRequest {
|
|
877
|
-
MaxResults?: number;
|
|
878
|
-
NextToken?: string;
|
|
883
|
+
MaxResults?: number | undefined;
|
|
884
|
+
NextToken?: string | undefined;
|
|
879
885
|
}
|
|
880
886
|
export interface ListFirewallRuleGroupsResponse {
|
|
881
|
-
NextToken?: string;
|
|
882
|
-
FirewallRuleGroups?: FirewallRuleGroupMetadata[];
|
|
887
|
+
NextToken?: string | undefined;
|
|
888
|
+
FirewallRuleGroups?: FirewallRuleGroupMetadata[] | undefined;
|
|
883
889
|
}
|
|
884
890
|
export interface ListFirewallRulesRequest {
|
|
885
891
|
FirewallRuleGroupId: string | undefined;
|
|
886
|
-
Priority?: number;
|
|
887
|
-
Action?: Action;
|
|
888
|
-
MaxResults?: number;
|
|
889
|
-
NextToken?: string;
|
|
892
|
+
Priority?: number | undefined;
|
|
893
|
+
Action?: Action | undefined;
|
|
894
|
+
MaxResults?: number | undefined;
|
|
895
|
+
NextToken?: string | undefined;
|
|
890
896
|
}
|
|
891
897
|
export interface ListFirewallRulesResponse {
|
|
892
|
-
NextToken?: string;
|
|
893
|
-
FirewallRules?: FirewallRule[];
|
|
898
|
+
NextToken?: string | undefined;
|
|
899
|
+
FirewallRules?: FirewallRule[] | undefined;
|
|
894
900
|
}
|
|
895
901
|
export interface ListOutpostResolversRequest {
|
|
896
|
-
OutpostArn?: string;
|
|
897
|
-
MaxResults?: number;
|
|
898
|
-
NextToken?: string;
|
|
902
|
+
OutpostArn?: string | undefined;
|
|
903
|
+
MaxResults?: number | undefined;
|
|
904
|
+
NextToken?: string | undefined;
|
|
899
905
|
}
|
|
900
906
|
export interface ListOutpostResolversResponse {
|
|
901
|
-
OutpostResolvers?: OutpostResolver[];
|
|
902
|
-
NextToken?: string;
|
|
907
|
+
OutpostResolvers?: OutpostResolver[] | undefined;
|
|
908
|
+
NextToken?: string | undefined;
|
|
903
909
|
}
|
|
904
910
|
export interface ListResolverConfigsRequest {
|
|
905
|
-
MaxResults?: number;
|
|
906
|
-
NextToken?: string;
|
|
911
|
+
MaxResults?: number | undefined;
|
|
912
|
+
NextToken?: string | undefined;
|
|
907
913
|
}
|
|
908
914
|
export interface ListResolverConfigsResponse {
|
|
909
|
-
NextToken?: string;
|
|
910
|
-
ResolverConfigs?: ResolverConfig[];
|
|
915
|
+
NextToken?: string | undefined;
|
|
916
|
+
ResolverConfigs?: ResolverConfig[] | undefined;
|
|
911
917
|
}
|
|
912
918
|
export interface ListResolverDnssecConfigsRequest {
|
|
913
|
-
MaxResults?: number;
|
|
914
|
-
NextToken?: string;
|
|
915
|
-
Filters?: Filter[];
|
|
919
|
+
MaxResults?: number | undefined;
|
|
920
|
+
NextToken?: string | undefined;
|
|
921
|
+
Filters?: Filter[] | undefined;
|
|
916
922
|
}
|
|
917
923
|
export interface ListResolverDnssecConfigsResponse {
|
|
918
|
-
NextToken?: string;
|
|
919
|
-
ResolverDnssecConfigs?: ResolverDnssecConfig[];
|
|
924
|
+
NextToken?: string | undefined;
|
|
925
|
+
ResolverDnssecConfigs?: ResolverDnssecConfig[] | undefined;
|
|
920
926
|
}
|
|
921
927
|
export interface ListResolverEndpointIpAddressesRequest {
|
|
922
928
|
ResolverEndpointId: string | undefined;
|
|
923
|
-
MaxResults?: number;
|
|
924
|
-
NextToken?: string;
|
|
929
|
+
MaxResults?: number | undefined;
|
|
930
|
+
NextToken?: string | undefined;
|
|
925
931
|
}
|
|
926
932
|
export interface ListResolverEndpointIpAddressesResponse {
|
|
927
|
-
NextToken?: string;
|
|
928
|
-
MaxResults?: number;
|
|
929
|
-
IpAddresses?: IpAddressResponse[];
|
|
933
|
+
NextToken?: string | undefined;
|
|
934
|
+
MaxResults?: number | undefined;
|
|
935
|
+
IpAddresses?: IpAddressResponse[] | undefined;
|
|
930
936
|
}
|
|
931
937
|
export interface ListResolverEndpointsRequest {
|
|
932
|
-
MaxResults?: number;
|
|
933
|
-
NextToken?: string;
|
|
934
|
-
Filters?: Filter[];
|
|
938
|
+
MaxResults?: number | undefined;
|
|
939
|
+
NextToken?: string | undefined;
|
|
940
|
+
Filters?: Filter[] | undefined;
|
|
935
941
|
}
|
|
936
942
|
export interface ListResolverEndpointsResponse {
|
|
937
|
-
NextToken?: string;
|
|
938
|
-
MaxResults?: number;
|
|
939
|
-
ResolverEndpoints?: ResolverEndpoint[];
|
|
943
|
+
NextToken?: string | undefined;
|
|
944
|
+
MaxResults?: number | undefined;
|
|
945
|
+
ResolverEndpoints?: ResolverEndpoint[] | undefined;
|
|
940
946
|
}
|
|
941
947
|
export declare const SortOrder: {
|
|
942
948
|
readonly Ascending: "ASCENDING";
|
|
@@ -944,85 +950,87 @@ export declare const SortOrder: {
|
|
|
944
950
|
};
|
|
945
951
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
946
952
|
export interface ListResolverQueryLogConfigAssociationsRequest {
|
|
947
|
-
MaxResults?: number;
|
|
948
|
-
NextToken?: string;
|
|
949
|
-
Filters?: Filter[];
|
|
950
|
-
SortBy?: string;
|
|
951
|
-
SortOrder?: SortOrder;
|
|
953
|
+
MaxResults?: number | undefined;
|
|
954
|
+
NextToken?: string | undefined;
|
|
955
|
+
Filters?: Filter[] | undefined;
|
|
956
|
+
SortBy?: string | undefined;
|
|
957
|
+
SortOrder?: SortOrder | undefined;
|
|
952
958
|
}
|
|
953
959
|
export interface ListResolverQueryLogConfigAssociationsResponse {
|
|
954
|
-
NextToken?: string;
|
|
955
|
-
TotalCount?: number;
|
|
956
|
-
TotalFilteredCount?: number;
|
|
957
|
-
ResolverQueryLogConfigAssociations?:
|
|
960
|
+
NextToken?: string | undefined;
|
|
961
|
+
TotalCount?: number | undefined;
|
|
962
|
+
TotalFilteredCount?: number | undefined;
|
|
963
|
+
ResolverQueryLogConfigAssociations?:
|
|
964
|
+
| ResolverQueryLogConfigAssociation[]
|
|
965
|
+
| undefined;
|
|
958
966
|
}
|
|
959
967
|
export interface ListResolverQueryLogConfigsRequest {
|
|
960
|
-
MaxResults?: number;
|
|
961
|
-
NextToken?: string;
|
|
962
|
-
Filters?: Filter[];
|
|
963
|
-
SortBy?: string;
|
|
964
|
-
SortOrder?: SortOrder;
|
|
968
|
+
MaxResults?: number | undefined;
|
|
969
|
+
NextToken?: string | undefined;
|
|
970
|
+
Filters?: Filter[] | undefined;
|
|
971
|
+
SortBy?: string | undefined;
|
|
972
|
+
SortOrder?: SortOrder | undefined;
|
|
965
973
|
}
|
|
966
974
|
export interface ListResolverQueryLogConfigsResponse {
|
|
967
|
-
NextToken?: string;
|
|
968
|
-
TotalCount?: number;
|
|
969
|
-
TotalFilteredCount?: number;
|
|
970
|
-
ResolverQueryLogConfigs?: ResolverQueryLogConfig[];
|
|
975
|
+
NextToken?: string | undefined;
|
|
976
|
+
TotalCount?: number | undefined;
|
|
977
|
+
TotalFilteredCount?: number | undefined;
|
|
978
|
+
ResolverQueryLogConfigs?: ResolverQueryLogConfig[] | undefined;
|
|
971
979
|
}
|
|
972
980
|
export interface ListResolverRuleAssociationsRequest {
|
|
973
|
-
MaxResults?: number;
|
|
974
|
-
NextToken?: string;
|
|
975
|
-
Filters?: Filter[];
|
|
981
|
+
MaxResults?: number | undefined;
|
|
982
|
+
NextToken?: string | undefined;
|
|
983
|
+
Filters?: Filter[] | undefined;
|
|
976
984
|
}
|
|
977
985
|
export interface ListResolverRuleAssociationsResponse {
|
|
978
|
-
NextToken?: string;
|
|
979
|
-
MaxResults?: number;
|
|
980
|
-
ResolverRuleAssociations?: ResolverRuleAssociation[];
|
|
986
|
+
NextToken?: string | undefined;
|
|
987
|
+
MaxResults?: number | undefined;
|
|
988
|
+
ResolverRuleAssociations?: ResolverRuleAssociation[] | undefined;
|
|
981
989
|
}
|
|
982
990
|
export interface ListResolverRulesRequest {
|
|
983
|
-
MaxResults?: number;
|
|
984
|
-
NextToken?: string;
|
|
985
|
-
Filters?: Filter[];
|
|
991
|
+
MaxResults?: number | undefined;
|
|
992
|
+
NextToken?: string | undefined;
|
|
993
|
+
Filters?: Filter[] | undefined;
|
|
986
994
|
}
|
|
987
995
|
export interface ListResolverRulesResponse {
|
|
988
|
-
NextToken?: string;
|
|
989
|
-
MaxResults?: number;
|
|
990
|
-
ResolverRules?: ResolverRule[];
|
|
996
|
+
NextToken?: string | undefined;
|
|
997
|
+
MaxResults?: number | undefined;
|
|
998
|
+
ResolverRules?: ResolverRule[] | undefined;
|
|
991
999
|
}
|
|
992
1000
|
export interface ListTagsForResourceRequest {
|
|
993
1001
|
ResourceArn: string | undefined;
|
|
994
|
-
MaxResults?: number;
|
|
995
|
-
NextToken?: string;
|
|
1002
|
+
MaxResults?: number | undefined;
|
|
1003
|
+
NextToken?: string | undefined;
|
|
996
1004
|
}
|
|
997
1005
|
export interface ListTagsForResourceResponse {
|
|
998
|
-
Tags?: Tag[];
|
|
999
|
-
NextToken?: string;
|
|
1006
|
+
Tags?: Tag[] | undefined;
|
|
1007
|
+
NextToken?: string | undefined;
|
|
1000
1008
|
}
|
|
1001
1009
|
export interface PutFirewallRuleGroupPolicyRequest {
|
|
1002
1010
|
Arn: string | undefined;
|
|
1003
1011
|
FirewallRuleGroupPolicy: string | undefined;
|
|
1004
1012
|
}
|
|
1005
1013
|
export interface PutFirewallRuleGroupPolicyResponse {
|
|
1006
|
-
ReturnValue?: boolean;
|
|
1014
|
+
ReturnValue?: boolean | undefined;
|
|
1007
1015
|
}
|
|
1008
1016
|
export interface PutResolverQueryLogConfigPolicyRequest {
|
|
1009
1017
|
Arn: string | undefined;
|
|
1010
1018
|
ResolverQueryLogConfigPolicy: string | undefined;
|
|
1011
1019
|
}
|
|
1012
1020
|
export interface PutResolverQueryLogConfigPolicyResponse {
|
|
1013
|
-
ReturnValue?: boolean;
|
|
1021
|
+
ReturnValue?: boolean | undefined;
|
|
1014
1022
|
}
|
|
1015
1023
|
export interface PutResolverRulePolicyRequest {
|
|
1016
1024
|
Arn: string | undefined;
|
|
1017
1025
|
ResolverRulePolicy: string | undefined;
|
|
1018
1026
|
}
|
|
1019
1027
|
export interface PutResolverRulePolicyResponse {
|
|
1020
|
-
ReturnValue?: boolean;
|
|
1028
|
+
ReturnValue?: boolean | undefined;
|
|
1021
1029
|
}
|
|
1022
1030
|
export interface ResolverRuleConfig {
|
|
1023
|
-
Name?: string;
|
|
1024
|
-
TargetIps?: TargetAddress[];
|
|
1025
|
-
ResolverEndpointId?: string;
|
|
1031
|
+
Name?: string | undefined;
|
|
1032
|
+
TargetIps?: TargetAddress[] | undefined;
|
|
1033
|
+
ResolverEndpointId?: string | undefined;
|
|
1026
1034
|
}
|
|
1027
1035
|
export interface TagResourceRequest {
|
|
1028
1036
|
ResourceArn: string | undefined;
|
|
@@ -1039,7 +1047,7 @@ export interface UpdateFirewallConfigRequest {
|
|
|
1039
1047
|
FirewallFailOpen: FirewallFailOpenStatus | undefined;
|
|
1040
1048
|
}
|
|
1041
1049
|
export interface UpdateFirewallConfigResponse {
|
|
1042
|
-
FirewallConfig?: FirewallConfig;
|
|
1050
|
+
FirewallConfig?: FirewallConfig | undefined;
|
|
1043
1051
|
}
|
|
1044
1052
|
export interface UpdateFirewallDomainsRequest {
|
|
1045
1053
|
FirewallDomainListId: string | undefined;
|
|
@@ -1047,51 +1055,51 @@ export interface UpdateFirewallDomainsRequest {
|
|
|
1047
1055
|
Domains: string[] | undefined;
|
|
1048
1056
|
}
|
|
1049
1057
|
export interface UpdateFirewallDomainsResponse {
|
|
1050
|
-
Id?: string;
|
|
1051
|
-
Name?: string;
|
|
1052
|
-
Status?: FirewallDomainListStatus;
|
|
1053
|
-
StatusMessage?: string;
|
|
1058
|
+
Id?: string | undefined;
|
|
1059
|
+
Name?: string | undefined;
|
|
1060
|
+
Status?: FirewallDomainListStatus | undefined;
|
|
1061
|
+
StatusMessage?: string | undefined;
|
|
1054
1062
|
}
|
|
1055
1063
|
export interface UpdateFirewallRuleRequest {
|
|
1056
1064
|
FirewallRuleGroupId: string | undefined;
|
|
1057
1065
|
FirewallDomainListId: string | undefined;
|
|
1058
|
-
Priority?: number;
|
|
1059
|
-
Action?: Action;
|
|
1060
|
-
BlockResponse?: BlockResponse;
|
|
1061
|
-
BlockOverrideDomain?: string;
|
|
1062
|
-
BlockOverrideDnsType?: BlockOverrideDnsType;
|
|
1063
|
-
BlockOverrideTtl?: number;
|
|
1064
|
-
Name?: string;
|
|
1065
|
-
FirewallDomainRedirectionAction?: FirewallDomainRedirectionAction;
|
|
1066
|
-
Qtype?: string;
|
|
1066
|
+
Priority?: number | undefined;
|
|
1067
|
+
Action?: Action | undefined;
|
|
1068
|
+
BlockResponse?: BlockResponse | undefined;
|
|
1069
|
+
BlockOverrideDomain?: string | undefined;
|
|
1070
|
+
BlockOverrideDnsType?: BlockOverrideDnsType | undefined;
|
|
1071
|
+
BlockOverrideTtl?: number | undefined;
|
|
1072
|
+
Name?: string | undefined;
|
|
1073
|
+
FirewallDomainRedirectionAction?: FirewallDomainRedirectionAction | undefined;
|
|
1074
|
+
Qtype?: string | undefined;
|
|
1067
1075
|
}
|
|
1068
1076
|
export interface UpdateFirewallRuleResponse {
|
|
1069
|
-
FirewallRule?: FirewallRule;
|
|
1077
|
+
FirewallRule?: FirewallRule | undefined;
|
|
1070
1078
|
}
|
|
1071
1079
|
export interface UpdateFirewallRuleGroupAssociationRequest {
|
|
1072
1080
|
FirewallRuleGroupAssociationId: string | undefined;
|
|
1073
|
-
Priority?: number;
|
|
1074
|
-
MutationProtection?: MutationProtectionStatus;
|
|
1075
|
-
Name?: string;
|
|
1081
|
+
Priority?: number | undefined;
|
|
1082
|
+
MutationProtection?: MutationProtectionStatus | undefined;
|
|
1083
|
+
Name?: string | undefined;
|
|
1076
1084
|
}
|
|
1077
1085
|
export interface UpdateFirewallRuleGroupAssociationResponse {
|
|
1078
|
-
FirewallRuleGroupAssociation?: FirewallRuleGroupAssociation;
|
|
1086
|
+
FirewallRuleGroupAssociation?: FirewallRuleGroupAssociation | undefined;
|
|
1079
1087
|
}
|
|
1080
1088
|
export interface UpdateOutpostResolverRequest {
|
|
1081
1089
|
Id: string | undefined;
|
|
1082
|
-
Name?: string;
|
|
1083
|
-
InstanceCount?: number;
|
|
1084
|
-
PreferredInstanceType?: string;
|
|
1090
|
+
Name?: string | undefined;
|
|
1091
|
+
InstanceCount?: number | undefined;
|
|
1092
|
+
PreferredInstanceType?: string | undefined;
|
|
1085
1093
|
}
|
|
1086
1094
|
export interface UpdateOutpostResolverResponse {
|
|
1087
|
-
OutpostResolver?: OutpostResolver;
|
|
1095
|
+
OutpostResolver?: OutpostResolver | undefined;
|
|
1088
1096
|
}
|
|
1089
1097
|
export interface UpdateResolverConfigRequest {
|
|
1090
1098
|
ResourceId: string | undefined;
|
|
1091
1099
|
AutodefinedReverseFlag: AutodefinedReverseFlag | undefined;
|
|
1092
1100
|
}
|
|
1093
1101
|
export interface UpdateResolverConfigResponse {
|
|
1094
|
-
ResolverConfig?: ResolverConfig;
|
|
1102
|
+
ResolverConfig?: ResolverConfig | undefined;
|
|
1095
1103
|
}
|
|
1096
1104
|
export declare const Validation: {
|
|
1097
1105
|
readonly DISABLE: "DISABLE";
|
|
@@ -1104,7 +1112,7 @@ export interface UpdateResolverDnssecConfigRequest {
|
|
|
1104
1112
|
Validation: Validation | undefined;
|
|
1105
1113
|
}
|
|
1106
1114
|
export interface UpdateResolverDnssecConfigResponse {
|
|
1107
|
-
ResolverDNSSECConfig?: ResolverDnssecConfig;
|
|
1115
|
+
ResolverDNSSECConfig?: ResolverDnssecConfig | undefined;
|
|
1108
1116
|
}
|
|
1109
1117
|
export interface UpdateIpAddress {
|
|
1110
1118
|
IpId: string | undefined;
|
|
@@ -1112,18 +1120,18 @@ export interface UpdateIpAddress {
|
|
|
1112
1120
|
}
|
|
1113
1121
|
export interface UpdateResolverEndpointRequest {
|
|
1114
1122
|
ResolverEndpointId: string | undefined;
|
|
1115
|
-
Name?: string;
|
|
1116
|
-
ResolverEndpointType?: ResolverEndpointType;
|
|
1117
|
-
UpdateIpAddresses?: UpdateIpAddress[];
|
|
1118
|
-
Protocols?: Protocol[];
|
|
1123
|
+
Name?: string | undefined;
|
|
1124
|
+
ResolverEndpointType?: ResolverEndpointType | undefined;
|
|
1125
|
+
UpdateIpAddresses?: UpdateIpAddress[] | undefined;
|
|
1126
|
+
Protocols?: Protocol[] | undefined;
|
|
1119
1127
|
}
|
|
1120
1128
|
export interface UpdateResolverEndpointResponse {
|
|
1121
|
-
ResolverEndpoint?: ResolverEndpoint;
|
|
1129
|
+
ResolverEndpoint?: ResolverEndpoint | undefined;
|
|
1122
1130
|
}
|
|
1123
1131
|
export interface UpdateResolverRuleRequest {
|
|
1124
1132
|
ResolverRuleId: string | undefined;
|
|
1125
1133
|
Config: ResolverRuleConfig | undefined;
|
|
1126
1134
|
}
|
|
1127
1135
|
export interface UpdateResolverRuleResponse {
|
|
1128
|
-
ResolverRule?: ResolverRule;
|
|
1136
|
+
ResolverRule?: ResolverRule | undefined;
|
|
1129
1137
|
}
|