@aws-sdk/client-route53resolver 3.934.0 → 3.936.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-cjs/index.js +182 -181
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +181 -0
- package/dist-es/models/errors.js +251 -0
- package/dist-es/models/models_0.js +1 -432
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +429 -0
- package/dist-types/models/errors.d.ts +258 -0
- package/dist-types/models/models_0.d.ts +1 -687
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +237 -0
- package/dist-types/ts3.4/models/errors.d.ts +142 -0
- package/dist-types/ts3.4/models/models_0.d.ts +33 -379
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { Route53ResolverExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { Route53ResolverServiceException } from "./models/Route53ResolverServiceException";
|
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
export declare const Action: {
|
|
2
|
+
readonly ALERT: "ALERT";
|
|
3
|
+
readonly ALLOW: "ALLOW";
|
|
4
|
+
readonly BLOCK: "BLOCK";
|
|
5
|
+
};
|
|
6
|
+
export type Action = (typeof Action)[keyof typeof Action];
|
|
7
|
+
export declare const MutationProtectionStatus: {
|
|
8
|
+
readonly DISABLED: "DISABLED";
|
|
9
|
+
readonly ENABLED: "ENABLED";
|
|
10
|
+
};
|
|
11
|
+
export type MutationProtectionStatus =
|
|
12
|
+
(typeof MutationProtectionStatus)[keyof typeof MutationProtectionStatus];
|
|
13
|
+
export declare const FirewallRuleGroupAssociationStatus: {
|
|
14
|
+
readonly COMPLETE: "COMPLETE";
|
|
15
|
+
readonly DELETING: "DELETING";
|
|
16
|
+
readonly UPDATING: "UPDATING";
|
|
17
|
+
};
|
|
18
|
+
export type FirewallRuleGroupAssociationStatus =
|
|
19
|
+
(typeof FirewallRuleGroupAssociationStatus)[keyof typeof FirewallRuleGroupAssociationStatus];
|
|
20
|
+
export declare const ResolverEndpointDirection: {
|
|
21
|
+
readonly Inbound: "INBOUND";
|
|
22
|
+
readonly InboundDelegation: "INBOUND_DELEGATION";
|
|
23
|
+
readonly Outbound: "OUTBOUND";
|
|
24
|
+
};
|
|
25
|
+
export type ResolverEndpointDirection =
|
|
26
|
+
(typeof ResolverEndpointDirection)[keyof typeof ResolverEndpointDirection];
|
|
27
|
+
export declare const Protocol: {
|
|
28
|
+
readonly DO53: "Do53";
|
|
29
|
+
readonly DOH: "DoH";
|
|
30
|
+
readonly DOHFIPS: "DoH-FIPS";
|
|
31
|
+
};
|
|
32
|
+
export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
33
|
+
export declare const ResolverEndpointType: {
|
|
34
|
+
readonly DUALSTACK: "DUALSTACK";
|
|
35
|
+
readonly IPV4: "IPV4";
|
|
36
|
+
readonly IPV6: "IPV6";
|
|
37
|
+
};
|
|
38
|
+
export type ResolverEndpointType =
|
|
39
|
+
(typeof ResolverEndpointType)[keyof typeof ResolverEndpointType];
|
|
40
|
+
export declare const ResolverEndpointStatus: {
|
|
41
|
+
readonly ActionNeeded: "ACTION_NEEDED";
|
|
42
|
+
readonly AutoRecovering: "AUTO_RECOVERING";
|
|
43
|
+
readonly Creating: "CREATING";
|
|
44
|
+
readonly Deleting: "DELETING";
|
|
45
|
+
readonly Operational: "OPERATIONAL";
|
|
46
|
+
readonly Updating: "UPDATING";
|
|
47
|
+
};
|
|
48
|
+
export type ResolverEndpointStatus =
|
|
49
|
+
(typeof ResolverEndpointStatus)[keyof typeof ResolverEndpointStatus];
|
|
50
|
+
export declare const ResolverQueryLogConfigAssociationError: {
|
|
51
|
+
readonly AccessDenied: "ACCESS_DENIED";
|
|
52
|
+
readonly DestinationNotFound: "DESTINATION_NOT_FOUND";
|
|
53
|
+
readonly InternalServiceError: "INTERNAL_SERVICE_ERROR";
|
|
54
|
+
readonly None: "NONE";
|
|
55
|
+
};
|
|
56
|
+
export type ResolverQueryLogConfigAssociationError =
|
|
57
|
+
(typeof ResolverQueryLogConfigAssociationError)[keyof typeof ResolverQueryLogConfigAssociationError];
|
|
58
|
+
export declare const ResolverQueryLogConfigAssociationStatus: {
|
|
59
|
+
readonly ActionNeeded: "ACTION_NEEDED";
|
|
60
|
+
readonly Active: "ACTIVE";
|
|
61
|
+
readonly Creating: "CREATING";
|
|
62
|
+
readonly Deleting: "DELETING";
|
|
63
|
+
readonly Failed: "FAILED";
|
|
64
|
+
};
|
|
65
|
+
export type ResolverQueryLogConfigAssociationStatus =
|
|
66
|
+
(typeof ResolverQueryLogConfigAssociationStatus)[keyof typeof ResolverQueryLogConfigAssociationStatus];
|
|
67
|
+
export declare const ResolverRuleAssociationStatus: {
|
|
68
|
+
readonly Complete: "COMPLETE";
|
|
69
|
+
readonly Creating: "CREATING";
|
|
70
|
+
readonly Deleting: "DELETING";
|
|
71
|
+
readonly Failed: "FAILED";
|
|
72
|
+
readonly Overridden: "OVERRIDDEN";
|
|
73
|
+
};
|
|
74
|
+
export type ResolverRuleAssociationStatus =
|
|
75
|
+
(typeof ResolverRuleAssociationStatus)[keyof typeof ResolverRuleAssociationStatus];
|
|
76
|
+
export declare const AutodefinedReverseFlag: {
|
|
77
|
+
readonly DISABLE: "DISABLE";
|
|
78
|
+
readonly ENABLE: "ENABLE";
|
|
79
|
+
readonly USE_LOCAL_RESOURCE_SETTING: "USE_LOCAL_RESOURCE_SETTING";
|
|
80
|
+
};
|
|
81
|
+
export type AutodefinedReverseFlag =
|
|
82
|
+
(typeof AutodefinedReverseFlag)[keyof typeof AutodefinedReverseFlag];
|
|
83
|
+
export declare const BlockOverrideDnsType: {
|
|
84
|
+
readonly CNAME: "CNAME";
|
|
85
|
+
};
|
|
86
|
+
export type BlockOverrideDnsType =
|
|
87
|
+
(typeof BlockOverrideDnsType)[keyof typeof BlockOverrideDnsType];
|
|
88
|
+
export declare const BlockResponse: {
|
|
89
|
+
readonly NODATA: "NODATA";
|
|
90
|
+
readonly NXDOMAIN: "NXDOMAIN";
|
|
91
|
+
readonly OVERRIDE: "OVERRIDE";
|
|
92
|
+
};
|
|
93
|
+
export type BlockResponse = (typeof BlockResponse)[keyof typeof BlockResponse];
|
|
94
|
+
export declare const ConfidenceThreshold: {
|
|
95
|
+
readonly HIGH: "HIGH";
|
|
96
|
+
readonly LOW: "LOW";
|
|
97
|
+
readonly MEDIUM: "MEDIUM";
|
|
98
|
+
};
|
|
99
|
+
export type ConfidenceThreshold =
|
|
100
|
+
(typeof ConfidenceThreshold)[keyof typeof ConfidenceThreshold];
|
|
101
|
+
export declare const FirewallDomainListStatus: {
|
|
102
|
+
readonly COMPLETE: "COMPLETE";
|
|
103
|
+
readonly COMPLETE_IMPORT_FAILED: "COMPLETE_IMPORT_FAILED";
|
|
104
|
+
readonly DELETING: "DELETING";
|
|
105
|
+
readonly IMPORTING: "IMPORTING";
|
|
106
|
+
readonly UPDATING: "UPDATING";
|
|
107
|
+
};
|
|
108
|
+
export type FirewallDomainListStatus =
|
|
109
|
+
(typeof FirewallDomainListStatus)[keyof typeof FirewallDomainListStatus];
|
|
110
|
+
export declare const DnsThreatProtection: {
|
|
111
|
+
readonly DGA: "DGA";
|
|
112
|
+
readonly DICTIONARY_DGA: "DICTIONARY_DGA";
|
|
113
|
+
readonly DNS_TUNNELING: "DNS_TUNNELING";
|
|
114
|
+
};
|
|
115
|
+
export type DnsThreatProtection =
|
|
116
|
+
(typeof DnsThreatProtection)[keyof typeof DnsThreatProtection];
|
|
117
|
+
export declare const FirewallDomainRedirectionAction: {
|
|
118
|
+
readonly INSPECT_REDIRECTION_DOMAIN: "INSPECT_REDIRECTION_DOMAIN";
|
|
119
|
+
readonly TRUST_REDIRECTION_DOMAIN: "TRUST_REDIRECTION_DOMAIN";
|
|
120
|
+
};
|
|
121
|
+
export type FirewallDomainRedirectionAction =
|
|
122
|
+
(typeof FirewallDomainRedirectionAction)[keyof typeof FirewallDomainRedirectionAction];
|
|
123
|
+
export declare const ShareStatus: {
|
|
124
|
+
readonly NotShared: "NOT_SHARED";
|
|
125
|
+
readonly SharedByMe: "SHARED_BY_ME";
|
|
126
|
+
readonly SharedWithMe: "SHARED_WITH_ME";
|
|
127
|
+
};
|
|
128
|
+
export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
|
|
129
|
+
export declare const FirewallRuleGroupStatus: {
|
|
130
|
+
readonly COMPLETE: "COMPLETE";
|
|
131
|
+
readonly DELETING: "DELETING";
|
|
132
|
+
readonly UPDATING: "UPDATING";
|
|
133
|
+
};
|
|
134
|
+
export type FirewallRuleGroupStatus =
|
|
135
|
+
(typeof FirewallRuleGroupStatus)[keyof typeof FirewallRuleGroupStatus];
|
|
136
|
+
export declare const OutpostResolverStatus: {
|
|
137
|
+
readonly ACTION_NEEDED: "ACTION_NEEDED";
|
|
138
|
+
readonly CREATING: "CREATING";
|
|
139
|
+
readonly DELETING: "DELETING";
|
|
140
|
+
readonly FAILED_CREATION: "FAILED_CREATION";
|
|
141
|
+
readonly FAILED_DELETION: "FAILED_DELETION";
|
|
142
|
+
readonly OPERATIONAL: "OPERATIONAL";
|
|
143
|
+
readonly UPDATING: "UPDATING";
|
|
144
|
+
};
|
|
145
|
+
export type OutpostResolverStatus =
|
|
146
|
+
(typeof OutpostResolverStatus)[keyof typeof OutpostResolverStatus];
|
|
147
|
+
export declare const ResolverQueryLogConfigStatus: {
|
|
148
|
+
readonly Created: "CREATED";
|
|
149
|
+
readonly Creating: "CREATING";
|
|
150
|
+
readonly Deleting: "DELETING";
|
|
151
|
+
readonly Failed: "FAILED";
|
|
152
|
+
};
|
|
153
|
+
export type ResolverQueryLogConfigStatus =
|
|
154
|
+
(typeof ResolverQueryLogConfigStatus)[keyof typeof ResolverQueryLogConfigStatus];
|
|
155
|
+
export declare const RuleTypeOption: {
|
|
156
|
+
readonly Delegate: "DELEGATE";
|
|
157
|
+
readonly Forward: "FORWARD";
|
|
158
|
+
readonly Recursive: "RECURSIVE";
|
|
159
|
+
readonly System: "SYSTEM";
|
|
160
|
+
};
|
|
161
|
+
export type RuleTypeOption =
|
|
162
|
+
(typeof RuleTypeOption)[keyof typeof RuleTypeOption];
|
|
163
|
+
export declare const ResolverRuleStatus: {
|
|
164
|
+
readonly Complete: "COMPLETE";
|
|
165
|
+
readonly Deleting: "DELETING";
|
|
166
|
+
readonly Failed: "FAILED";
|
|
167
|
+
readonly Updating: "UPDATING";
|
|
168
|
+
};
|
|
169
|
+
export type ResolverRuleStatus =
|
|
170
|
+
(typeof ResolverRuleStatus)[keyof typeof ResolverRuleStatus];
|
|
171
|
+
export declare const FirewallFailOpenStatus: {
|
|
172
|
+
readonly DISABLED: "DISABLED";
|
|
173
|
+
readonly ENABLED: "ENABLED";
|
|
174
|
+
readonly USE_LOCAL_RESOURCE_SETTING: "USE_LOCAL_RESOURCE_SETTING";
|
|
175
|
+
};
|
|
176
|
+
export type FirewallFailOpenStatus =
|
|
177
|
+
(typeof FirewallFailOpenStatus)[keyof typeof FirewallFailOpenStatus];
|
|
178
|
+
export declare const FirewallDomainImportOperation: {
|
|
179
|
+
readonly REPLACE: "REPLACE";
|
|
180
|
+
};
|
|
181
|
+
export type FirewallDomainImportOperation =
|
|
182
|
+
(typeof FirewallDomainImportOperation)[keyof typeof FirewallDomainImportOperation];
|
|
183
|
+
export declare const FirewallDomainUpdateOperation: {
|
|
184
|
+
readonly ADD: "ADD";
|
|
185
|
+
readonly REMOVE: "REMOVE";
|
|
186
|
+
readonly REPLACE: "REPLACE";
|
|
187
|
+
};
|
|
188
|
+
export type FirewallDomainUpdateOperation =
|
|
189
|
+
(typeof FirewallDomainUpdateOperation)[keyof typeof FirewallDomainUpdateOperation];
|
|
190
|
+
export declare const ResolverAutodefinedReverseStatus: {
|
|
191
|
+
readonly Disabled: "DISABLED";
|
|
192
|
+
readonly Disabling: "DISABLING";
|
|
193
|
+
readonly Enabled: "ENABLED";
|
|
194
|
+
readonly Enabling: "ENABLING";
|
|
195
|
+
readonly UpdatingToUseLocalResourceSetting: "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING";
|
|
196
|
+
readonly UseLocalResourceSetting: "USE_LOCAL_RESOURCE_SETTING";
|
|
197
|
+
};
|
|
198
|
+
export type ResolverAutodefinedReverseStatus =
|
|
199
|
+
(typeof ResolverAutodefinedReverseStatus)[keyof typeof ResolverAutodefinedReverseStatus];
|
|
200
|
+
export declare const ResolverDNSSECValidationStatus: {
|
|
201
|
+
readonly Disabled: "DISABLED";
|
|
202
|
+
readonly Disabling: "DISABLING";
|
|
203
|
+
readonly Enabled: "ENABLED";
|
|
204
|
+
readonly Enabling: "ENABLING";
|
|
205
|
+
readonly UpdateToUseLocalResourceSetting: "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING";
|
|
206
|
+
readonly UseLocalResourceSetting: "USE_LOCAL_RESOURCE_SETTING";
|
|
207
|
+
};
|
|
208
|
+
export type ResolverDNSSECValidationStatus =
|
|
209
|
+
(typeof ResolverDNSSECValidationStatus)[keyof typeof ResolverDNSSECValidationStatus];
|
|
210
|
+
export declare const IpAddressStatus: {
|
|
211
|
+
readonly Attached: "ATTACHED";
|
|
212
|
+
readonly Attaching: "ATTACHING";
|
|
213
|
+
readonly Creating: "CREATING";
|
|
214
|
+
readonly DeleteFailedFasExpired: "DELETE_FAILED_FAS_EXPIRED";
|
|
215
|
+
readonly Deleting: "DELETING";
|
|
216
|
+
readonly Detaching: "DETACHING";
|
|
217
|
+
readonly FailedCreation: "FAILED_CREATION";
|
|
218
|
+
readonly FailedResourceGone: "FAILED_RESOURCE_GONE";
|
|
219
|
+
readonly Isolated: "ISOLATED";
|
|
220
|
+
readonly RemapAttaching: "REMAP_ATTACHING";
|
|
221
|
+
readonly RemapDetaching: "REMAP_DETACHING";
|
|
222
|
+
readonly UpdateFailed: "UPDATE_FAILED";
|
|
223
|
+
readonly Updating: "UPDATING";
|
|
224
|
+
};
|
|
225
|
+
export type IpAddressStatus =
|
|
226
|
+
(typeof IpAddressStatus)[keyof typeof IpAddressStatus];
|
|
227
|
+
export declare const SortOrder: {
|
|
228
|
+
readonly Ascending: "ASCENDING";
|
|
229
|
+
readonly Descending: "DESCENDING";
|
|
230
|
+
};
|
|
231
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
232
|
+
export declare const Validation: {
|
|
233
|
+
readonly DISABLE: "DISABLE";
|
|
234
|
+
readonly ENABLE: "ENABLE";
|
|
235
|
+
readonly USE_LOCAL_RESOURCE_SETTING: "USE_LOCAL_RESOURCE_SETTING";
|
|
236
|
+
};
|
|
237
|
+
export type Validation = (typeof Validation)[keyof typeof Validation];
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { Route53ResolverServiceException as __BaseException } from "./Route53ResolverServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message?: string | undefined;
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class ConflictException extends __BaseException {
|
|
12
|
+
readonly name: "ConflictException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
Message?: string | undefined;
|
|
15
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
16
|
+
}
|
|
17
|
+
export declare class InternalServiceErrorException extends __BaseException {
|
|
18
|
+
readonly name: "InternalServiceErrorException";
|
|
19
|
+
readonly $fault: "client";
|
|
20
|
+
Message?: string | undefined;
|
|
21
|
+
constructor(
|
|
22
|
+
opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
export declare class LimitExceededException extends __BaseException {
|
|
26
|
+
readonly name: "LimitExceededException";
|
|
27
|
+
readonly $fault: "client";
|
|
28
|
+
Message?: string | undefined;
|
|
29
|
+
ResourceType?: string | undefined;
|
|
30
|
+
constructor(
|
|
31
|
+
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
35
|
+
readonly name: "ResourceNotFoundException";
|
|
36
|
+
readonly $fault: "client";
|
|
37
|
+
Message?: string | undefined;
|
|
38
|
+
ResourceType?: string | undefined;
|
|
39
|
+
constructor(
|
|
40
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
41
|
+
);
|
|
42
|
+
}
|
|
43
|
+
export declare class ThrottlingException extends __BaseException {
|
|
44
|
+
readonly name: "ThrottlingException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
Message?: string | undefined;
|
|
47
|
+
constructor(
|
|
48
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
export declare class ValidationException extends __BaseException {
|
|
52
|
+
readonly name: "ValidationException";
|
|
53
|
+
readonly $fault: "client";
|
|
54
|
+
Message?: string | undefined;
|
|
55
|
+
constructor(
|
|
56
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
60
|
+
readonly name: "InvalidParameterException";
|
|
61
|
+
readonly $fault: "client";
|
|
62
|
+
Message: string | undefined;
|
|
63
|
+
FieldName?: string | undefined;
|
|
64
|
+
constructor(
|
|
65
|
+
opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
|
|
66
|
+
);
|
|
67
|
+
}
|
|
68
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
69
|
+
readonly name: "InvalidRequestException";
|
|
70
|
+
readonly $fault: "client";
|
|
71
|
+
Message?: string | undefined;
|
|
72
|
+
constructor(
|
|
73
|
+
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
74
|
+
);
|
|
75
|
+
}
|
|
76
|
+
export declare class ResourceExistsException extends __BaseException {
|
|
77
|
+
readonly name: "ResourceExistsException";
|
|
78
|
+
readonly $fault: "client";
|
|
79
|
+
Message?: string | undefined;
|
|
80
|
+
ResourceType?: string | undefined;
|
|
81
|
+
constructor(
|
|
82
|
+
opts: __ExceptionOptionType<ResourceExistsException, __BaseException>
|
|
83
|
+
);
|
|
84
|
+
}
|
|
85
|
+
export declare class ResourceUnavailableException extends __BaseException {
|
|
86
|
+
readonly name: "ResourceUnavailableException";
|
|
87
|
+
readonly $fault: "client";
|
|
88
|
+
Message?: string | undefined;
|
|
89
|
+
ResourceType?: string | undefined;
|
|
90
|
+
constructor(
|
|
91
|
+
opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>
|
|
92
|
+
);
|
|
93
|
+
}
|
|
94
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
95
|
+
readonly name: "ServiceQuotaExceededException";
|
|
96
|
+
readonly $fault: "client";
|
|
97
|
+
Message?: string | undefined;
|
|
98
|
+
constructor(
|
|
99
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
100
|
+
);
|
|
101
|
+
}
|
|
102
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
103
|
+
readonly name: "ResourceInUseException";
|
|
104
|
+
readonly $fault: "client";
|
|
105
|
+
Message?: string | undefined;
|
|
106
|
+
ResourceType?: string | undefined;
|
|
107
|
+
constructor(
|
|
108
|
+
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
109
|
+
);
|
|
110
|
+
}
|
|
111
|
+
export declare class UnknownResourceException extends __BaseException {
|
|
112
|
+
readonly name: "UnknownResourceException";
|
|
113
|
+
readonly $fault: "client";
|
|
114
|
+
Message?: string | undefined;
|
|
115
|
+
constructor(
|
|
116
|
+
opts: __ExceptionOptionType<UnknownResourceException, __BaseException>
|
|
117
|
+
);
|
|
118
|
+
}
|
|
119
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
120
|
+
readonly name: "InvalidNextTokenException";
|
|
121
|
+
readonly $fault: "client";
|
|
122
|
+
Message?: string | undefined;
|
|
123
|
+
constructor(
|
|
124
|
+
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
125
|
+
);
|
|
126
|
+
}
|
|
127
|
+
export declare class InvalidPolicyDocument extends __BaseException {
|
|
128
|
+
readonly name: "InvalidPolicyDocument";
|
|
129
|
+
readonly $fault: "client";
|
|
130
|
+
Message?: string | undefined;
|
|
131
|
+
constructor(
|
|
132
|
+
opts: __ExceptionOptionType<InvalidPolicyDocument, __BaseException>
|
|
133
|
+
);
|
|
134
|
+
}
|
|
135
|
+
export declare class InvalidTagException extends __BaseException {
|
|
136
|
+
readonly name: "InvalidTagException";
|
|
137
|
+
readonly $fault: "client";
|
|
138
|
+
Message?: string | undefined;
|
|
139
|
+
constructor(
|
|
140
|
+
opts: __ExceptionOptionType<InvalidTagException, __BaseException>
|
|
141
|
+
);
|
|
142
|
+
}
|