@aws-sdk/client-elasticsearch-service 3.934.0 → 3.935.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 +241 -240
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +240 -0
- package/dist-es/models/errors.js +133 -0
- package/dist-es/models/models_0.js +1 -373
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +496 -0
- package/dist-types/models/errors.d.ts +134 -0
- package/dist-types/models/models_0.d.ts +1 -630
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +291 -0
- package/dist-types/ts3.4/models/errors.d.ts +76 -0
- package/dist-types/ts3.4/models/models_0.d.ts +34 -367
- package/package.json +12 -12
- 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
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
export const InboundCrossClusterSearchConnectionStatusCode = {
|
|
2
|
+
APPROVED: "APPROVED",
|
|
3
|
+
DELETED: "DELETED",
|
|
4
|
+
DELETING: "DELETING",
|
|
5
|
+
PENDING_ACCEPTANCE: "PENDING_ACCEPTANCE",
|
|
6
|
+
REJECTED: "REJECTED",
|
|
7
|
+
REJECTING: "REJECTING",
|
|
8
|
+
};
|
|
9
|
+
export const OptionState = {
|
|
10
|
+
Active: "Active",
|
|
11
|
+
Processing: "Processing",
|
|
12
|
+
RequiresIndexDocuments: "RequiresIndexDocuments",
|
|
13
|
+
};
|
|
14
|
+
export const DomainPackageStatus = {
|
|
15
|
+
ACTIVE: "ACTIVE",
|
|
16
|
+
ASSOCIATING: "ASSOCIATING",
|
|
17
|
+
ASSOCIATION_FAILED: "ASSOCIATION_FAILED",
|
|
18
|
+
DISSOCIATING: "DISSOCIATING",
|
|
19
|
+
DISSOCIATION_FAILED: "DISSOCIATION_FAILED",
|
|
20
|
+
};
|
|
21
|
+
export const PackageType = {
|
|
22
|
+
TXT_DICTIONARY: "TXT-DICTIONARY",
|
|
23
|
+
};
|
|
24
|
+
export const PrincipalType = {
|
|
25
|
+
AWS_ACCOUNT: "AWS_ACCOUNT",
|
|
26
|
+
AWS_SERVICE: "AWS_SERVICE",
|
|
27
|
+
};
|
|
28
|
+
export const DeploymentStatus = {
|
|
29
|
+
COMPLETED: "COMPLETED",
|
|
30
|
+
ELIGIBLE: "ELIGIBLE",
|
|
31
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
32
|
+
NOT_ELIGIBLE: "NOT_ELIGIBLE",
|
|
33
|
+
PENDING_UPDATE: "PENDING_UPDATE",
|
|
34
|
+
};
|
|
35
|
+
export const AutoTuneDesiredState = {
|
|
36
|
+
DISABLED: "DISABLED",
|
|
37
|
+
ENABLED: "ENABLED",
|
|
38
|
+
};
|
|
39
|
+
export const TimeUnit = {
|
|
40
|
+
HOURS: "HOURS",
|
|
41
|
+
};
|
|
42
|
+
export const TLSSecurityPolicy = {
|
|
43
|
+
POLICY_MIN_TLS_1_0_2019_07: "Policy-Min-TLS-1-0-2019-07",
|
|
44
|
+
POLICY_MIN_TLS_1_2_2019_07: "Policy-Min-TLS-1-2-2019-07",
|
|
45
|
+
POLICY_MIN_TLS_1_2_PFS_2023_10: "Policy-Min-TLS-1-2-PFS-2023-10",
|
|
46
|
+
};
|
|
47
|
+
export const VolumeType = {
|
|
48
|
+
gp2: "gp2",
|
|
49
|
+
gp3: "gp3",
|
|
50
|
+
io1: "io1",
|
|
51
|
+
standard: "standard",
|
|
52
|
+
};
|
|
53
|
+
export const ESPartitionInstanceType = {
|
|
54
|
+
c4_2xlarge_elasticsearch: "c4.2xlarge.elasticsearch",
|
|
55
|
+
c4_4xlarge_elasticsearch: "c4.4xlarge.elasticsearch",
|
|
56
|
+
c4_8xlarge_elasticsearch: "c4.8xlarge.elasticsearch",
|
|
57
|
+
c4_large_elasticsearch: "c4.large.elasticsearch",
|
|
58
|
+
c4_xlarge_elasticsearch: "c4.xlarge.elasticsearch",
|
|
59
|
+
c5_18xlarge_elasticsearch: "c5.18xlarge.elasticsearch",
|
|
60
|
+
c5_2xlarge_elasticsearch: "c5.2xlarge.elasticsearch",
|
|
61
|
+
c5_4xlarge_elasticsearch: "c5.4xlarge.elasticsearch",
|
|
62
|
+
c5_9xlarge_elasticsearch: "c5.9xlarge.elasticsearch",
|
|
63
|
+
c5_large_elasticsearch: "c5.large.elasticsearch",
|
|
64
|
+
c5_xlarge_elasticsearch: "c5.xlarge.elasticsearch",
|
|
65
|
+
d2_2xlarge_elasticsearch: "d2.2xlarge.elasticsearch",
|
|
66
|
+
d2_4xlarge_elasticsearch: "d2.4xlarge.elasticsearch",
|
|
67
|
+
d2_8xlarge_elasticsearch: "d2.8xlarge.elasticsearch",
|
|
68
|
+
d2_xlarge_elasticsearch: "d2.xlarge.elasticsearch",
|
|
69
|
+
i2_2xlarge_elasticsearch: "i2.2xlarge.elasticsearch",
|
|
70
|
+
i2_xlarge_elasticsearch: "i2.xlarge.elasticsearch",
|
|
71
|
+
i3_16xlarge_elasticsearch: "i3.16xlarge.elasticsearch",
|
|
72
|
+
i3_2xlarge_elasticsearch: "i3.2xlarge.elasticsearch",
|
|
73
|
+
i3_4xlarge_elasticsearch: "i3.4xlarge.elasticsearch",
|
|
74
|
+
i3_8xlarge_elasticsearch: "i3.8xlarge.elasticsearch",
|
|
75
|
+
i3_large_elasticsearch: "i3.large.elasticsearch",
|
|
76
|
+
i3_xlarge_elasticsearch: "i3.xlarge.elasticsearch",
|
|
77
|
+
m3_2xlarge_elasticsearch: "m3.2xlarge.elasticsearch",
|
|
78
|
+
m3_large_elasticsearch: "m3.large.elasticsearch",
|
|
79
|
+
m3_medium_elasticsearch: "m3.medium.elasticsearch",
|
|
80
|
+
m3_xlarge_elasticsearch: "m3.xlarge.elasticsearch",
|
|
81
|
+
m4_10xlarge_elasticsearch: "m4.10xlarge.elasticsearch",
|
|
82
|
+
m4_2xlarge_elasticsearch: "m4.2xlarge.elasticsearch",
|
|
83
|
+
m4_4xlarge_elasticsearch: "m4.4xlarge.elasticsearch",
|
|
84
|
+
m4_large_elasticsearch: "m4.large.elasticsearch",
|
|
85
|
+
m4_xlarge_elasticsearch: "m4.xlarge.elasticsearch",
|
|
86
|
+
m5_12xlarge_elasticsearch: "m5.12xlarge.elasticsearch",
|
|
87
|
+
m5_2xlarge_elasticsearch: "m5.2xlarge.elasticsearch",
|
|
88
|
+
m5_4xlarge_elasticsearch: "m5.4xlarge.elasticsearch",
|
|
89
|
+
m5_large_elasticsearch: "m5.large.elasticsearch",
|
|
90
|
+
m5_xlarge_elasticsearch: "m5.xlarge.elasticsearch",
|
|
91
|
+
r3_2xlarge_elasticsearch: "r3.2xlarge.elasticsearch",
|
|
92
|
+
r3_4xlarge_elasticsearch: "r3.4xlarge.elasticsearch",
|
|
93
|
+
r3_8xlarge_elasticsearch: "r3.8xlarge.elasticsearch",
|
|
94
|
+
r3_large_elasticsearch: "r3.large.elasticsearch",
|
|
95
|
+
r3_xlarge_elasticsearch: "r3.xlarge.elasticsearch",
|
|
96
|
+
r4_16xlarge_elasticsearch: "r4.16xlarge.elasticsearch",
|
|
97
|
+
r4_2xlarge_elasticsearch: "r4.2xlarge.elasticsearch",
|
|
98
|
+
r4_4xlarge_elasticsearch: "r4.4xlarge.elasticsearch",
|
|
99
|
+
r4_8xlarge_elasticsearch: "r4.8xlarge.elasticsearch",
|
|
100
|
+
r4_large_elasticsearch: "r4.large.elasticsearch",
|
|
101
|
+
r4_xlarge_elasticsearch: "r4.xlarge.elasticsearch",
|
|
102
|
+
r5_12xlarge_elasticsearch: "r5.12xlarge.elasticsearch",
|
|
103
|
+
r5_2xlarge_elasticsearch: "r5.2xlarge.elasticsearch",
|
|
104
|
+
r5_4xlarge_elasticsearch: "r5.4xlarge.elasticsearch",
|
|
105
|
+
r5_large_elasticsearch: "r5.large.elasticsearch",
|
|
106
|
+
r5_xlarge_elasticsearch: "r5.xlarge.elasticsearch",
|
|
107
|
+
t2_medium_elasticsearch: "t2.medium.elasticsearch",
|
|
108
|
+
t2_micro_elasticsearch: "t2.micro.elasticsearch",
|
|
109
|
+
t2_small_elasticsearch: "t2.small.elasticsearch",
|
|
110
|
+
ultrawarm1_large_elasticsearch: "ultrawarm1.large.elasticsearch",
|
|
111
|
+
ultrawarm1_medium_elasticsearch: "ultrawarm1.medium.elasticsearch",
|
|
112
|
+
};
|
|
113
|
+
export const ESWarmPartitionInstanceType = {
|
|
114
|
+
ultrawarm1_large_elasticsearch: "ultrawarm1.large.elasticsearch",
|
|
115
|
+
ultrawarm1_medium_elasticsearch: "ultrawarm1.medium.elasticsearch",
|
|
116
|
+
};
|
|
117
|
+
export const LogType = {
|
|
118
|
+
AUDIT_LOGS: "AUDIT_LOGS",
|
|
119
|
+
ES_APPLICATION_LOGS: "ES_APPLICATION_LOGS",
|
|
120
|
+
INDEX_SLOW_LOGS: "INDEX_SLOW_LOGS",
|
|
121
|
+
SEARCH_SLOW_LOGS: "SEARCH_SLOW_LOGS",
|
|
122
|
+
};
|
|
123
|
+
export const AutoTuneState = {
|
|
124
|
+
DISABLED: "DISABLED",
|
|
125
|
+
DISABLED_AND_ROLLBACK_COMPLETE: "DISABLED_AND_ROLLBACK_COMPLETE",
|
|
126
|
+
DISABLED_AND_ROLLBACK_ERROR: "DISABLED_AND_ROLLBACK_ERROR",
|
|
127
|
+
DISABLED_AND_ROLLBACK_IN_PROGRESS: "DISABLED_AND_ROLLBACK_IN_PROGRESS",
|
|
128
|
+
DISABLED_AND_ROLLBACK_SCHEDULED: "DISABLED_AND_ROLLBACK_SCHEDULED",
|
|
129
|
+
DISABLE_IN_PROGRESS: "DISABLE_IN_PROGRESS",
|
|
130
|
+
ENABLED: "ENABLED",
|
|
131
|
+
ENABLE_IN_PROGRESS: "ENABLE_IN_PROGRESS",
|
|
132
|
+
ERROR: "ERROR",
|
|
133
|
+
};
|
|
134
|
+
export const ConfigChangeStatus = {
|
|
135
|
+
APPLYING_CHANGES: "ApplyingChanges",
|
|
136
|
+
CANCELLED: "Cancelled",
|
|
137
|
+
COMPLETED: "Completed",
|
|
138
|
+
INITIALIZING: "Initializing",
|
|
139
|
+
PENDING: "Pending",
|
|
140
|
+
PENDING_USER_INPUT: "PendingUserInput",
|
|
141
|
+
VALIDATING: "Validating",
|
|
142
|
+
VALIDATION_FAILED: "ValidationFailed",
|
|
143
|
+
};
|
|
144
|
+
export const InitiatedBy = {
|
|
145
|
+
CUSTOMER: "CUSTOMER",
|
|
146
|
+
SERVICE: "SERVICE",
|
|
147
|
+
};
|
|
148
|
+
export const DomainProcessingStatusType = {
|
|
149
|
+
ACTIVE: "Active",
|
|
150
|
+
CREATING: "Creating",
|
|
151
|
+
DELETING: "Deleting",
|
|
152
|
+
ISOLATED: "Isolated",
|
|
153
|
+
MODIFYING: "Modifying",
|
|
154
|
+
UPDATING: "UpdatingServiceSoftware",
|
|
155
|
+
UPGRADING: "UpgradingEngineVersion",
|
|
156
|
+
};
|
|
157
|
+
export const PropertyValueType = {
|
|
158
|
+
PLAIN_TEXT: "PLAIN_TEXT",
|
|
159
|
+
STRINGIFIED_JSON: "STRINGIFIED_JSON",
|
|
160
|
+
};
|
|
161
|
+
export const OutboundCrossClusterSearchConnectionStatusCode = {
|
|
162
|
+
ACTIVE: "ACTIVE",
|
|
163
|
+
DELETED: "DELETED",
|
|
164
|
+
DELETING: "DELETING",
|
|
165
|
+
PENDING_ACCEPTANCE: "PENDING_ACCEPTANCE",
|
|
166
|
+
PROVISIONING: "PROVISIONING",
|
|
167
|
+
REJECTED: "REJECTED",
|
|
168
|
+
VALIDATING: "VALIDATING",
|
|
169
|
+
VALIDATION_FAILED: "VALIDATION_FAILED",
|
|
170
|
+
};
|
|
171
|
+
export const PackageStatus = {
|
|
172
|
+
AVAILABLE: "AVAILABLE",
|
|
173
|
+
COPYING: "COPYING",
|
|
174
|
+
COPY_FAILED: "COPY_FAILED",
|
|
175
|
+
DELETED: "DELETED",
|
|
176
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
177
|
+
DELETING: "DELETING",
|
|
178
|
+
VALIDATING: "VALIDATING",
|
|
179
|
+
VALIDATION_FAILED: "VALIDATION_FAILED",
|
|
180
|
+
};
|
|
181
|
+
export const VpcEndpointStatus = {
|
|
182
|
+
ACTIVE: "ACTIVE",
|
|
183
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
184
|
+
CREATING: "CREATING",
|
|
185
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
186
|
+
DELETING: "DELETING",
|
|
187
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
188
|
+
UPDATING: "UPDATING",
|
|
189
|
+
};
|
|
190
|
+
export const ScheduledAutoTuneActionType = {
|
|
191
|
+
JVM_HEAP_SIZE_TUNING: "JVM_HEAP_SIZE_TUNING",
|
|
192
|
+
JVM_YOUNG_GEN_TUNING: "JVM_YOUNG_GEN_TUNING",
|
|
193
|
+
};
|
|
194
|
+
export const ScheduledAutoTuneSeverityType = {
|
|
195
|
+
HIGH: "HIGH",
|
|
196
|
+
LOW: "LOW",
|
|
197
|
+
MEDIUM: "MEDIUM",
|
|
198
|
+
};
|
|
199
|
+
export const AutoTuneType = {
|
|
200
|
+
SCHEDULED_ACTION: "SCHEDULED_ACTION",
|
|
201
|
+
};
|
|
202
|
+
export const OverallChangeStatus = {
|
|
203
|
+
COMPLETED: "COMPLETED",
|
|
204
|
+
FAILED: "FAILED",
|
|
205
|
+
PENDING: "PENDING",
|
|
206
|
+
PROCESSING: "PROCESSING",
|
|
207
|
+
};
|
|
208
|
+
export const RollbackOnDisable = {
|
|
209
|
+
DEFAULT_ROLLBACK: "DEFAULT_ROLLBACK",
|
|
210
|
+
NO_ROLLBACK: "NO_ROLLBACK",
|
|
211
|
+
};
|
|
212
|
+
export const DescribePackagesFilterName = {
|
|
213
|
+
PackageID: "PackageID",
|
|
214
|
+
PackageName: "PackageName",
|
|
215
|
+
PackageStatus: "PackageStatus",
|
|
216
|
+
};
|
|
217
|
+
export const ReservedElasticsearchInstancePaymentOption = {
|
|
218
|
+
ALL_UPFRONT: "ALL_UPFRONT",
|
|
219
|
+
NO_UPFRONT: "NO_UPFRONT",
|
|
220
|
+
PARTIAL_UPFRONT: "PARTIAL_UPFRONT",
|
|
221
|
+
};
|
|
222
|
+
export const VpcEndpointErrorCode = {
|
|
223
|
+
ENDPOINT_NOT_FOUND: "ENDPOINT_NOT_FOUND",
|
|
224
|
+
SERVER_ERROR: "SERVER_ERROR",
|
|
225
|
+
};
|
|
226
|
+
export const UpgradeStep = {
|
|
227
|
+
PRE_UPGRADE_CHECK: "PRE_UPGRADE_CHECK",
|
|
228
|
+
SNAPSHOT: "SNAPSHOT",
|
|
229
|
+
UPGRADE: "UPGRADE",
|
|
230
|
+
};
|
|
231
|
+
export const UpgradeStatus = {
|
|
232
|
+
FAILED: "FAILED",
|
|
233
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
234
|
+
SUCCEEDED: "SUCCEEDED",
|
|
235
|
+
SUCCEEDED_WITH_ISSUES: "SUCCEEDED_WITH_ISSUES",
|
|
236
|
+
};
|
|
237
|
+
export const EngineType = {
|
|
238
|
+
Elasticsearch: "Elasticsearch",
|
|
239
|
+
OpenSearch: "OpenSearch",
|
|
240
|
+
};
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
import { ElasticsearchServiceServiceException as __BaseException } from "./ElasticsearchServiceServiceException";
|
|
2
|
+
export class DisabledOperationException extends __BaseException {
|
|
3
|
+
name = "DisabledOperationException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
constructor(opts) {
|
|
6
|
+
super({
|
|
7
|
+
name: "DisabledOperationException",
|
|
8
|
+
$fault: "client",
|
|
9
|
+
...opts,
|
|
10
|
+
});
|
|
11
|
+
Object.setPrototypeOf(this, DisabledOperationException.prototype);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export class LimitExceededException extends __BaseException {
|
|
15
|
+
name = "LimitExceededException";
|
|
16
|
+
$fault = "client";
|
|
17
|
+
constructor(opts) {
|
|
18
|
+
super({
|
|
19
|
+
name: "LimitExceededException",
|
|
20
|
+
$fault: "client",
|
|
21
|
+
...opts,
|
|
22
|
+
});
|
|
23
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
27
|
+
name = "ResourceNotFoundException";
|
|
28
|
+
$fault = "client";
|
|
29
|
+
constructor(opts) {
|
|
30
|
+
super({
|
|
31
|
+
name: "ResourceNotFoundException",
|
|
32
|
+
$fault: "client",
|
|
33
|
+
...opts,
|
|
34
|
+
});
|
|
35
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
export class AccessDeniedException extends __BaseException {
|
|
39
|
+
name = "AccessDeniedException";
|
|
40
|
+
$fault = "client";
|
|
41
|
+
constructor(opts) {
|
|
42
|
+
super({
|
|
43
|
+
name: "AccessDeniedException",
|
|
44
|
+
$fault: "client",
|
|
45
|
+
...opts,
|
|
46
|
+
});
|
|
47
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
export class BaseException extends __BaseException {
|
|
51
|
+
name = "BaseException";
|
|
52
|
+
$fault = "client";
|
|
53
|
+
constructor(opts) {
|
|
54
|
+
super({
|
|
55
|
+
name: "BaseException",
|
|
56
|
+
$fault: "client",
|
|
57
|
+
...opts,
|
|
58
|
+
});
|
|
59
|
+
Object.setPrototypeOf(this, BaseException.prototype);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
export class InternalException extends __BaseException {
|
|
63
|
+
name = "InternalException";
|
|
64
|
+
$fault = "server";
|
|
65
|
+
constructor(opts) {
|
|
66
|
+
super({
|
|
67
|
+
name: "InternalException",
|
|
68
|
+
$fault: "server",
|
|
69
|
+
...opts,
|
|
70
|
+
});
|
|
71
|
+
Object.setPrototypeOf(this, InternalException.prototype);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
export class ValidationException extends __BaseException {
|
|
75
|
+
name = "ValidationException";
|
|
76
|
+
$fault = "client";
|
|
77
|
+
constructor(opts) {
|
|
78
|
+
super({
|
|
79
|
+
name: "ValidationException",
|
|
80
|
+
$fault: "client",
|
|
81
|
+
...opts,
|
|
82
|
+
});
|
|
83
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
export class ConflictException extends __BaseException {
|
|
87
|
+
name = "ConflictException";
|
|
88
|
+
$fault = "client";
|
|
89
|
+
constructor(opts) {
|
|
90
|
+
super({
|
|
91
|
+
name: "ConflictException",
|
|
92
|
+
$fault: "client",
|
|
93
|
+
...opts,
|
|
94
|
+
});
|
|
95
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
export class InvalidTypeException extends __BaseException {
|
|
99
|
+
name = "InvalidTypeException";
|
|
100
|
+
$fault = "client";
|
|
101
|
+
constructor(opts) {
|
|
102
|
+
super({
|
|
103
|
+
name: "InvalidTypeException",
|
|
104
|
+
$fault: "client",
|
|
105
|
+
...opts,
|
|
106
|
+
});
|
|
107
|
+
Object.setPrototypeOf(this, InvalidTypeException.prototype);
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
export class ResourceAlreadyExistsException extends __BaseException {
|
|
111
|
+
name = "ResourceAlreadyExistsException";
|
|
112
|
+
$fault = "client";
|
|
113
|
+
constructor(opts) {
|
|
114
|
+
super({
|
|
115
|
+
name: "ResourceAlreadyExistsException",
|
|
116
|
+
$fault: "client",
|
|
117
|
+
...opts,
|
|
118
|
+
});
|
|
119
|
+
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
export class InvalidPaginationTokenException extends __BaseException {
|
|
123
|
+
name = "InvalidPaginationTokenException";
|
|
124
|
+
$fault = "client";
|
|
125
|
+
constructor(opts) {
|
|
126
|
+
super({
|
|
127
|
+
name: "InvalidPaginationTokenException",
|
|
128
|
+
$fault: "client",
|
|
129
|
+
...opts,
|
|
130
|
+
});
|
|
131
|
+
Object.setPrototypeOf(this, InvalidPaginationTokenException.prototype);
|
|
132
|
+
}
|
|
133
|
+
}
|