@aws-sdk/client-cognito-sync 3.297.0 → 3.298.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/commands/BulkPublishCommand.js +2 -3
- package/dist-cjs/commands/DeleteDatasetCommand.js +2 -3
- package/dist-cjs/commands/DescribeDatasetCommand.js +2 -3
- package/dist-cjs/commands/DescribeIdentityPoolUsageCommand.js +2 -3
- package/dist-cjs/commands/DescribeIdentityUsageCommand.js +2 -3
- package/dist-cjs/commands/GetBulkPublishDetailsCommand.js +2 -3
- package/dist-cjs/commands/GetCognitoEventsCommand.js +2 -3
- package/dist-cjs/commands/GetIdentityPoolConfigurationCommand.js +2 -3
- package/dist-cjs/commands/ListDatasetsCommand.js +2 -3
- package/dist-cjs/commands/ListIdentityPoolUsageCommand.js +2 -3
- package/dist-cjs/commands/ListRecordsCommand.js +2 -3
- package/dist-cjs/commands/RegisterDeviceCommand.js +2 -3
- package/dist-cjs/commands/SetCognitoEventsCommand.js +2 -3
- package/dist-cjs/commands/SetIdentityPoolConfigurationCommand.js +2 -3
- package/dist-cjs/commands/SubscribeToDatasetCommand.js +2 -3
- package/dist-cjs/commands/UnsubscribeFromDatasetCommand.js +2 -3
- package/dist-cjs/commands/UpdateRecordsCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -162
- package/dist-es/commands/BulkPublishCommand.js +2 -3
- package/dist-es/commands/DeleteDatasetCommand.js +2 -3
- package/dist-es/commands/DescribeDatasetCommand.js +2 -3
- package/dist-es/commands/DescribeIdentityPoolUsageCommand.js +2 -3
- package/dist-es/commands/DescribeIdentityUsageCommand.js +2 -3
- package/dist-es/commands/GetBulkPublishDetailsCommand.js +2 -3
- package/dist-es/commands/GetCognitoEventsCommand.js +2 -3
- package/dist-es/commands/GetIdentityPoolConfigurationCommand.js +2 -3
- package/dist-es/commands/ListDatasetsCommand.js +2 -3
- package/dist-es/commands/ListIdentityPoolUsageCommand.js +2 -3
- package/dist-es/commands/ListRecordsCommand.js +2 -3
- package/dist-es/commands/RegisterDeviceCommand.js +2 -3
- package/dist-es/commands/SetCognitoEventsCommand.js +2 -3
- package/dist-es/commands/SetIdentityPoolConfigurationCommand.js +2 -3
- package/dist-es/commands/SubscribeToDatasetCommand.js +2 -3
- package/dist-es/commands/UnsubscribeFromDatasetCommand.js +2 -3
- package/dist-es/commands/UpdateRecordsCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -120
- package/dist-types/models/models_0.d.ts +0 -160
- package/dist-types/ts3.4/models/models_0.d.ts +0 -112
- package/package.json +4 -3
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { GetCognitoEventsRequestFilterSensitiveLog, GetCognitoEventsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1GetCognitoEventsCommand, serializeAws_restJson1GetCognitoEventsCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class GetCognitoEventsCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class GetCognitoEventsCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { GetIdentityPoolConfigurationRequestFilterSensitiveLog, GetIdentityPoolConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1GetIdentityPoolConfigurationCommand, serializeAws_restJson1GetIdentityPoolConfigurationCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class GetIdentityPoolConfigurationCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class GetIdentityPoolConfigurationCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListDatasetsRequestFilterSensitiveLog, ListDatasetsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListDatasetsCommand, serializeAws_restJson1ListDatasetsCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListDatasetsCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListDatasetsCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListIdentityPoolUsageRequestFilterSensitiveLog, ListIdentityPoolUsageResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListIdentityPoolUsageCommand, serializeAws_restJson1ListIdentityPoolUsageCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListIdentityPoolUsageCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListIdentityPoolUsageCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListRecordsRequestFilterSensitiveLog, ListRecordsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListRecordsCommand, serializeAws_restJson1ListRecordsCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListRecordsCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListRecordsCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { RegisterDeviceRequestFilterSensitiveLog, RegisterDeviceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1RegisterDeviceCommand, serializeAws_restJson1RegisterDeviceCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class RegisterDeviceCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class RegisterDeviceCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { SetCognitoEventsRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1SetCognitoEventsCommand, serializeAws_restJson1SetCognitoEventsCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class SetCognitoEventsCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class SetCognitoEventsCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog: (
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { SetIdentityPoolConfigurationRequestFilterSensitiveLog, SetIdentityPoolConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1SetIdentityPoolConfigurationCommand, serializeAws_restJson1SetIdentityPoolConfigurationCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class SetIdentityPoolConfigurationCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class SetIdentityPoolConfigurationCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { SubscribeToDatasetRequestFilterSensitiveLog, SubscribeToDatasetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1SubscribeToDatasetCommand, serializeAws_restJson1SubscribeToDatasetCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class SubscribeToDatasetCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class SubscribeToDatasetCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { UnsubscribeFromDatasetRequestFilterSensitiveLog, UnsubscribeFromDatasetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1UnsubscribeFromDatasetCommand, serializeAws_restJson1UnsubscribeFromDatasetCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class UnsubscribeFromDatasetCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class UnsubscribeFromDatasetCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { UpdateRecordsRequestFilterSensitiveLog, UpdateRecordsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1UpdateRecordsCommand, serializeAws_restJson1UpdateRecordsCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class UpdateRecordsCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class UpdateRecordsCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -162,123 +162,3 @@ export class LimitExceededException extends __BaseException {
|
|
|
162
162
|
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
163
163
|
}
|
|
164
164
|
}
|
|
165
|
-
export const BulkPublishRequestFilterSensitiveLog = (obj) => ({
|
|
166
|
-
...obj,
|
|
167
|
-
});
|
|
168
|
-
export const BulkPublishResponseFilterSensitiveLog = (obj) => ({
|
|
169
|
-
...obj,
|
|
170
|
-
});
|
|
171
|
-
export const DeleteDatasetRequestFilterSensitiveLog = (obj) => ({
|
|
172
|
-
...obj,
|
|
173
|
-
});
|
|
174
|
-
export const DatasetFilterSensitiveLog = (obj) => ({
|
|
175
|
-
...obj,
|
|
176
|
-
});
|
|
177
|
-
export const DeleteDatasetResponseFilterSensitiveLog = (obj) => ({
|
|
178
|
-
...obj,
|
|
179
|
-
});
|
|
180
|
-
export const DescribeDatasetRequestFilterSensitiveLog = (obj) => ({
|
|
181
|
-
...obj,
|
|
182
|
-
});
|
|
183
|
-
export const DescribeDatasetResponseFilterSensitiveLog = (obj) => ({
|
|
184
|
-
...obj,
|
|
185
|
-
});
|
|
186
|
-
export const DescribeIdentityPoolUsageRequestFilterSensitiveLog = (obj) => ({
|
|
187
|
-
...obj,
|
|
188
|
-
});
|
|
189
|
-
export const IdentityPoolUsageFilterSensitiveLog = (obj) => ({
|
|
190
|
-
...obj,
|
|
191
|
-
});
|
|
192
|
-
export const DescribeIdentityPoolUsageResponseFilterSensitiveLog = (obj) => ({
|
|
193
|
-
...obj,
|
|
194
|
-
});
|
|
195
|
-
export const DescribeIdentityUsageRequestFilterSensitiveLog = (obj) => ({
|
|
196
|
-
...obj,
|
|
197
|
-
});
|
|
198
|
-
export const IdentityUsageFilterSensitiveLog = (obj) => ({
|
|
199
|
-
...obj,
|
|
200
|
-
});
|
|
201
|
-
export const DescribeIdentityUsageResponseFilterSensitiveLog = (obj) => ({
|
|
202
|
-
...obj,
|
|
203
|
-
});
|
|
204
|
-
export const GetBulkPublishDetailsRequestFilterSensitiveLog = (obj) => ({
|
|
205
|
-
...obj,
|
|
206
|
-
});
|
|
207
|
-
export const GetBulkPublishDetailsResponseFilterSensitiveLog = (obj) => ({
|
|
208
|
-
...obj,
|
|
209
|
-
});
|
|
210
|
-
export const GetCognitoEventsRequestFilterSensitiveLog = (obj) => ({
|
|
211
|
-
...obj,
|
|
212
|
-
});
|
|
213
|
-
export const GetCognitoEventsResponseFilterSensitiveLog = (obj) => ({
|
|
214
|
-
...obj,
|
|
215
|
-
});
|
|
216
|
-
export const GetIdentityPoolConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
217
|
-
...obj,
|
|
218
|
-
});
|
|
219
|
-
export const CognitoStreamsFilterSensitiveLog = (obj) => ({
|
|
220
|
-
...obj,
|
|
221
|
-
});
|
|
222
|
-
export const PushSyncFilterSensitiveLog = (obj) => ({
|
|
223
|
-
...obj,
|
|
224
|
-
});
|
|
225
|
-
export const GetIdentityPoolConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
226
|
-
...obj,
|
|
227
|
-
});
|
|
228
|
-
export const ListDatasetsRequestFilterSensitiveLog = (obj) => ({
|
|
229
|
-
...obj,
|
|
230
|
-
});
|
|
231
|
-
export const ListDatasetsResponseFilterSensitiveLog = (obj) => ({
|
|
232
|
-
...obj,
|
|
233
|
-
});
|
|
234
|
-
export const ListIdentityPoolUsageRequestFilterSensitiveLog = (obj) => ({
|
|
235
|
-
...obj,
|
|
236
|
-
});
|
|
237
|
-
export const ListIdentityPoolUsageResponseFilterSensitiveLog = (obj) => ({
|
|
238
|
-
...obj,
|
|
239
|
-
});
|
|
240
|
-
export const ListRecordsRequestFilterSensitiveLog = (obj) => ({
|
|
241
|
-
...obj,
|
|
242
|
-
});
|
|
243
|
-
export const _RecordFilterSensitiveLog = (obj) => ({
|
|
244
|
-
...obj,
|
|
245
|
-
});
|
|
246
|
-
export const ListRecordsResponseFilterSensitiveLog = (obj) => ({
|
|
247
|
-
...obj,
|
|
248
|
-
});
|
|
249
|
-
export const RegisterDeviceRequestFilterSensitiveLog = (obj) => ({
|
|
250
|
-
...obj,
|
|
251
|
-
});
|
|
252
|
-
export const RegisterDeviceResponseFilterSensitiveLog = (obj) => ({
|
|
253
|
-
...obj,
|
|
254
|
-
});
|
|
255
|
-
export const SetCognitoEventsRequestFilterSensitiveLog = (obj) => ({
|
|
256
|
-
...obj,
|
|
257
|
-
});
|
|
258
|
-
export const SetIdentityPoolConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
259
|
-
...obj,
|
|
260
|
-
});
|
|
261
|
-
export const SetIdentityPoolConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
262
|
-
...obj,
|
|
263
|
-
});
|
|
264
|
-
export const SubscribeToDatasetRequestFilterSensitiveLog = (obj) => ({
|
|
265
|
-
...obj,
|
|
266
|
-
});
|
|
267
|
-
export const SubscribeToDatasetResponseFilterSensitiveLog = (obj) => ({
|
|
268
|
-
...obj,
|
|
269
|
-
});
|
|
270
|
-
export const UnsubscribeFromDatasetRequestFilterSensitiveLog = (obj) => ({
|
|
271
|
-
...obj,
|
|
272
|
-
});
|
|
273
|
-
export const UnsubscribeFromDatasetResponseFilterSensitiveLog = (obj) => ({
|
|
274
|
-
...obj,
|
|
275
|
-
});
|
|
276
|
-
export const RecordPatchFilterSensitiveLog = (obj) => ({
|
|
277
|
-
...obj,
|
|
278
|
-
});
|
|
279
|
-
export const UpdateRecordsRequestFilterSensitiveLog = (obj) => ({
|
|
280
|
-
...obj,
|
|
281
|
-
});
|
|
282
|
-
export const UpdateRecordsResponseFilterSensitiveLog = (obj) => ({
|
|
283
|
-
...obj,
|
|
284
|
-
});
|
|
@@ -1025,163 +1025,3 @@ export interface UpdateRecordsResponse {
|
|
|
1025
1025
|
*/
|
|
1026
1026
|
Records?: _Record[];
|
|
1027
1027
|
}
|
|
1028
|
-
/**
|
|
1029
|
-
* @internal
|
|
1030
|
-
*/
|
|
1031
|
-
export declare const BulkPublishRequestFilterSensitiveLog: (obj: BulkPublishRequest) => any;
|
|
1032
|
-
/**
|
|
1033
|
-
* @internal
|
|
1034
|
-
*/
|
|
1035
|
-
export declare const BulkPublishResponseFilterSensitiveLog: (obj: BulkPublishResponse) => any;
|
|
1036
|
-
/**
|
|
1037
|
-
* @internal
|
|
1038
|
-
*/
|
|
1039
|
-
export declare const DeleteDatasetRequestFilterSensitiveLog: (obj: DeleteDatasetRequest) => any;
|
|
1040
|
-
/**
|
|
1041
|
-
* @internal
|
|
1042
|
-
*/
|
|
1043
|
-
export declare const DatasetFilterSensitiveLog: (obj: Dataset) => any;
|
|
1044
|
-
/**
|
|
1045
|
-
* @internal
|
|
1046
|
-
*/
|
|
1047
|
-
export declare const DeleteDatasetResponseFilterSensitiveLog: (obj: DeleteDatasetResponse) => any;
|
|
1048
|
-
/**
|
|
1049
|
-
* @internal
|
|
1050
|
-
*/
|
|
1051
|
-
export declare const DescribeDatasetRequestFilterSensitiveLog: (obj: DescribeDatasetRequest) => any;
|
|
1052
|
-
/**
|
|
1053
|
-
* @internal
|
|
1054
|
-
*/
|
|
1055
|
-
export declare const DescribeDatasetResponseFilterSensitiveLog: (obj: DescribeDatasetResponse) => any;
|
|
1056
|
-
/**
|
|
1057
|
-
* @internal
|
|
1058
|
-
*/
|
|
1059
|
-
export declare const DescribeIdentityPoolUsageRequestFilterSensitiveLog: (obj: DescribeIdentityPoolUsageRequest) => any;
|
|
1060
|
-
/**
|
|
1061
|
-
* @internal
|
|
1062
|
-
*/
|
|
1063
|
-
export declare const IdentityPoolUsageFilterSensitiveLog: (obj: IdentityPoolUsage) => any;
|
|
1064
|
-
/**
|
|
1065
|
-
* @internal
|
|
1066
|
-
*/
|
|
1067
|
-
export declare const DescribeIdentityPoolUsageResponseFilterSensitiveLog: (obj: DescribeIdentityPoolUsageResponse) => any;
|
|
1068
|
-
/**
|
|
1069
|
-
* @internal
|
|
1070
|
-
*/
|
|
1071
|
-
export declare const DescribeIdentityUsageRequestFilterSensitiveLog: (obj: DescribeIdentityUsageRequest) => any;
|
|
1072
|
-
/**
|
|
1073
|
-
* @internal
|
|
1074
|
-
*/
|
|
1075
|
-
export declare const IdentityUsageFilterSensitiveLog: (obj: IdentityUsage) => any;
|
|
1076
|
-
/**
|
|
1077
|
-
* @internal
|
|
1078
|
-
*/
|
|
1079
|
-
export declare const DescribeIdentityUsageResponseFilterSensitiveLog: (obj: DescribeIdentityUsageResponse) => any;
|
|
1080
|
-
/**
|
|
1081
|
-
* @internal
|
|
1082
|
-
*/
|
|
1083
|
-
export declare const GetBulkPublishDetailsRequestFilterSensitiveLog: (obj: GetBulkPublishDetailsRequest) => any;
|
|
1084
|
-
/**
|
|
1085
|
-
* @internal
|
|
1086
|
-
*/
|
|
1087
|
-
export declare const GetBulkPublishDetailsResponseFilterSensitiveLog: (obj: GetBulkPublishDetailsResponse) => any;
|
|
1088
|
-
/**
|
|
1089
|
-
* @internal
|
|
1090
|
-
*/
|
|
1091
|
-
export declare const GetCognitoEventsRequestFilterSensitiveLog: (obj: GetCognitoEventsRequest) => any;
|
|
1092
|
-
/**
|
|
1093
|
-
* @internal
|
|
1094
|
-
*/
|
|
1095
|
-
export declare const GetCognitoEventsResponseFilterSensitiveLog: (obj: GetCognitoEventsResponse) => any;
|
|
1096
|
-
/**
|
|
1097
|
-
* @internal
|
|
1098
|
-
*/
|
|
1099
|
-
export declare const GetIdentityPoolConfigurationRequestFilterSensitiveLog: (obj: GetIdentityPoolConfigurationRequest) => any;
|
|
1100
|
-
/**
|
|
1101
|
-
* @internal
|
|
1102
|
-
*/
|
|
1103
|
-
export declare const CognitoStreamsFilterSensitiveLog: (obj: CognitoStreams) => any;
|
|
1104
|
-
/**
|
|
1105
|
-
* @internal
|
|
1106
|
-
*/
|
|
1107
|
-
export declare const PushSyncFilterSensitiveLog: (obj: PushSync) => any;
|
|
1108
|
-
/**
|
|
1109
|
-
* @internal
|
|
1110
|
-
*/
|
|
1111
|
-
export declare const GetIdentityPoolConfigurationResponseFilterSensitiveLog: (obj: GetIdentityPoolConfigurationResponse) => any;
|
|
1112
|
-
/**
|
|
1113
|
-
* @internal
|
|
1114
|
-
*/
|
|
1115
|
-
export declare const ListDatasetsRequestFilterSensitiveLog: (obj: ListDatasetsRequest) => any;
|
|
1116
|
-
/**
|
|
1117
|
-
* @internal
|
|
1118
|
-
*/
|
|
1119
|
-
export declare const ListDatasetsResponseFilterSensitiveLog: (obj: ListDatasetsResponse) => any;
|
|
1120
|
-
/**
|
|
1121
|
-
* @internal
|
|
1122
|
-
*/
|
|
1123
|
-
export declare const ListIdentityPoolUsageRequestFilterSensitiveLog: (obj: ListIdentityPoolUsageRequest) => any;
|
|
1124
|
-
/**
|
|
1125
|
-
* @internal
|
|
1126
|
-
*/
|
|
1127
|
-
export declare const ListIdentityPoolUsageResponseFilterSensitiveLog: (obj: ListIdentityPoolUsageResponse) => any;
|
|
1128
|
-
/**
|
|
1129
|
-
* @internal
|
|
1130
|
-
*/
|
|
1131
|
-
export declare const ListRecordsRequestFilterSensitiveLog: (obj: ListRecordsRequest) => any;
|
|
1132
|
-
/**
|
|
1133
|
-
* @internal
|
|
1134
|
-
*/
|
|
1135
|
-
export declare const _RecordFilterSensitiveLog: (obj: _Record) => any;
|
|
1136
|
-
/**
|
|
1137
|
-
* @internal
|
|
1138
|
-
*/
|
|
1139
|
-
export declare const ListRecordsResponseFilterSensitiveLog: (obj: ListRecordsResponse) => any;
|
|
1140
|
-
/**
|
|
1141
|
-
* @internal
|
|
1142
|
-
*/
|
|
1143
|
-
export declare const RegisterDeviceRequestFilterSensitiveLog: (obj: RegisterDeviceRequest) => any;
|
|
1144
|
-
/**
|
|
1145
|
-
* @internal
|
|
1146
|
-
*/
|
|
1147
|
-
export declare const RegisterDeviceResponseFilterSensitiveLog: (obj: RegisterDeviceResponse) => any;
|
|
1148
|
-
/**
|
|
1149
|
-
* @internal
|
|
1150
|
-
*/
|
|
1151
|
-
export declare const SetCognitoEventsRequestFilterSensitiveLog: (obj: SetCognitoEventsRequest) => any;
|
|
1152
|
-
/**
|
|
1153
|
-
* @internal
|
|
1154
|
-
*/
|
|
1155
|
-
export declare const SetIdentityPoolConfigurationRequestFilterSensitiveLog: (obj: SetIdentityPoolConfigurationRequest) => any;
|
|
1156
|
-
/**
|
|
1157
|
-
* @internal
|
|
1158
|
-
*/
|
|
1159
|
-
export declare const SetIdentityPoolConfigurationResponseFilterSensitiveLog: (obj: SetIdentityPoolConfigurationResponse) => any;
|
|
1160
|
-
/**
|
|
1161
|
-
* @internal
|
|
1162
|
-
*/
|
|
1163
|
-
export declare const SubscribeToDatasetRequestFilterSensitiveLog: (obj: SubscribeToDatasetRequest) => any;
|
|
1164
|
-
/**
|
|
1165
|
-
* @internal
|
|
1166
|
-
*/
|
|
1167
|
-
export declare const SubscribeToDatasetResponseFilterSensitiveLog: (obj: SubscribeToDatasetResponse) => any;
|
|
1168
|
-
/**
|
|
1169
|
-
* @internal
|
|
1170
|
-
*/
|
|
1171
|
-
export declare const UnsubscribeFromDatasetRequestFilterSensitiveLog: (obj: UnsubscribeFromDatasetRequest) => any;
|
|
1172
|
-
/**
|
|
1173
|
-
* @internal
|
|
1174
|
-
*/
|
|
1175
|
-
export declare const UnsubscribeFromDatasetResponseFilterSensitiveLog: (obj: UnsubscribeFromDatasetResponse) => any;
|
|
1176
|
-
/**
|
|
1177
|
-
* @internal
|
|
1178
|
-
*/
|
|
1179
|
-
export declare const RecordPatchFilterSensitiveLog: (obj: RecordPatch) => any;
|
|
1180
|
-
/**
|
|
1181
|
-
* @internal
|
|
1182
|
-
*/
|
|
1183
|
-
export declare const UpdateRecordsRequestFilterSensitiveLog: (obj: UpdateRecordsRequest) => any;
|
|
1184
|
-
/**
|
|
1185
|
-
* @internal
|
|
1186
|
-
*/
|
|
1187
|
-
export declare const UpdateRecordsResponseFilterSensitiveLog: (obj: UpdateRecordsResponse) => any;
|
|
@@ -301,115 +301,3 @@ export interface UpdateRecordsRequest {
|
|
|
301
301
|
export interface UpdateRecordsResponse {
|
|
302
302
|
Records?: _Record[];
|
|
303
303
|
}
|
|
304
|
-
export declare const BulkPublishRequestFilterSensitiveLog: (
|
|
305
|
-
obj: BulkPublishRequest
|
|
306
|
-
) => any;
|
|
307
|
-
export declare const BulkPublishResponseFilterSensitiveLog: (
|
|
308
|
-
obj: BulkPublishResponse
|
|
309
|
-
) => any;
|
|
310
|
-
export declare const DeleteDatasetRequestFilterSensitiveLog: (
|
|
311
|
-
obj: DeleteDatasetRequest
|
|
312
|
-
) => any;
|
|
313
|
-
export declare const DatasetFilterSensitiveLog: (obj: Dataset) => any;
|
|
314
|
-
export declare const DeleteDatasetResponseFilterSensitiveLog: (
|
|
315
|
-
obj: DeleteDatasetResponse
|
|
316
|
-
) => any;
|
|
317
|
-
export declare const DescribeDatasetRequestFilterSensitiveLog: (
|
|
318
|
-
obj: DescribeDatasetRequest
|
|
319
|
-
) => any;
|
|
320
|
-
export declare const DescribeDatasetResponseFilterSensitiveLog: (
|
|
321
|
-
obj: DescribeDatasetResponse
|
|
322
|
-
) => any;
|
|
323
|
-
export declare const DescribeIdentityPoolUsageRequestFilterSensitiveLog: (
|
|
324
|
-
obj: DescribeIdentityPoolUsageRequest
|
|
325
|
-
) => any;
|
|
326
|
-
export declare const IdentityPoolUsageFilterSensitiveLog: (
|
|
327
|
-
obj: IdentityPoolUsage
|
|
328
|
-
) => any;
|
|
329
|
-
export declare const DescribeIdentityPoolUsageResponseFilterSensitiveLog: (
|
|
330
|
-
obj: DescribeIdentityPoolUsageResponse
|
|
331
|
-
) => any;
|
|
332
|
-
export declare const DescribeIdentityUsageRequestFilterSensitiveLog: (
|
|
333
|
-
obj: DescribeIdentityUsageRequest
|
|
334
|
-
) => any;
|
|
335
|
-
export declare const IdentityUsageFilterSensitiveLog: (
|
|
336
|
-
obj: IdentityUsage
|
|
337
|
-
) => any;
|
|
338
|
-
export declare const DescribeIdentityUsageResponseFilterSensitiveLog: (
|
|
339
|
-
obj: DescribeIdentityUsageResponse
|
|
340
|
-
) => any;
|
|
341
|
-
export declare const GetBulkPublishDetailsRequestFilterSensitiveLog: (
|
|
342
|
-
obj: GetBulkPublishDetailsRequest
|
|
343
|
-
) => any;
|
|
344
|
-
export declare const GetBulkPublishDetailsResponseFilterSensitiveLog: (
|
|
345
|
-
obj: GetBulkPublishDetailsResponse
|
|
346
|
-
) => any;
|
|
347
|
-
export declare const GetCognitoEventsRequestFilterSensitiveLog: (
|
|
348
|
-
obj: GetCognitoEventsRequest
|
|
349
|
-
) => any;
|
|
350
|
-
export declare const GetCognitoEventsResponseFilterSensitiveLog: (
|
|
351
|
-
obj: GetCognitoEventsResponse
|
|
352
|
-
) => any;
|
|
353
|
-
export declare const GetIdentityPoolConfigurationRequestFilterSensitiveLog: (
|
|
354
|
-
obj: GetIdentityPoolConfigurationRequest
|
|
355
|
-
) => any;
|
|
356
|
-
export declare const CognitoStreamsFilterSensitiveLog: (
|
|
357
|
-
obj: CognitoStreams
|
|
358
|
-
) => any;
|
|
359
|
-
export declare const PushSyncFilterSensitiveLog: (obj: PushSync) => any;
|
|
360
|
-
export declare const GetIdentityPoolConfigurationResponseFilterSensitiveLog: (
|
|
361
|
-
obj: GetIdentityPoolConfigurationResponse
|
|
362
|
-
) => any;
|
|
363
|
-
export declare const ListDatasetsRequestFilterSensitiveLog: (
|
|
364
|
-
obj: ListDatasetsRequest
|
|
365
|
-
) => any;
|
|
366
|
-
export declare const ListDatasetsResponseFilterSensitiveLog: (
|
|
367
|
-
obj: ListDatasetsResponse
|
|
368
|
-
) => any;
|
|
369
|
-
export declare const ListIdentityPoolUsageRequestFilterSensitiveLog: (
|
|
370
|
-
obj: ListIdentityPoolUsageRequest
|
|
371
|
-
) => any;
|
|
372
|
-
export declare const ListIdentityPoolUsageResponseFilterSensitiveLog: (
|
|
373
|
-
obj: ListIdentityPoolUsageResponse
|
|
374
|
-
) => any;
|
|
375
|
-
export declare const ListRecordsRequestFilterSensitiveLog: (
|
|
376
|
-
obj: ListRecordsRequest
|
|
377
|
-
) => any;
|
|
378
|
-
export declare const _RecordFilterSensitiveLog: (obj: _Record) => any;
|
|
379
|
-
export declare const ListRecordsResponseFilterSensitiveLog: (
|
|
380
|
-
obj: ListRecordsResponse
|
|
381
|
-
) => any;
|
|
382
|
-
export declare const RegisterDeviceRequestFilterSensitiveLog: (
|
|
383
|
-
obj: RegisterDeviceRequest
|
|
384
|
-
) => any;
|
|
385
|
-
export declare const RegisterDeviceResponseFilterSensitiveLog: (
|
|
386
|
-
obj: RegisterDeviceResponse
|
|
387
|
-
) => any;
|
|
388
|
-
export declare const SetCognitoEventsRequestFilterSensitiveLog: (
|
|
389
|
-
obj: SetCognitoEventsRequest
|
|
390
|
-
) => any;
|
|
391
|
-
export declare const SetIdentityPoolConfigurationRequestFilterSensitiveLog: (
|
|
392
|
-
obj: SetIdentityPoolConfigurationRequest
|
|
393
|
-
) => any;
|
|
394
|
-
export declare const SetIdentityPoolConfigurationResponseFilterSensitiveLog: (
|
|
395
|
-
obj: SetIdentityPoolConfigurationResponse
|
|
396
|
-
) => any;
|
|
397
|
-
export declare const SubscribeToDatasetRequestFilterSensitiveLog: (
|
|
398
|
-
obj: SubscribeToDatasetRequest
|
|
399
|
-
) => any;
|
|
400
|
-
export declare const SubscribeToDatasetResponseFilterSensitiveLog: (
|
|
401
|
-
obj: SubscribeToDatasetResponse
|
|
402
|
-
) => any;
|
|
403
|
-
export declare const UnsubscribeFromDatasetRequestFilterSensitiveLog: (
|
|
404
|
-
obj: UnsubscribeFromDatasetRequest
|
|
405
|
-
) => any;
|
|
406
|
-
export declare const UnsubscribeFromDatasetResponseFilterSensitiveLog: (
|
|
407
|
-
obj: UnsubscribeFromDatasetResponse
|
|
408
|
-
) => any;
|
|
409
|
-
export declare const RecordPatchFilterSensitiveLog: (obj: RecordPatch) => any;
|
|
410
|
-
export declare const UpdateRecordsRequestFilterSensitiveLog: (
|
|
411
|
-
obj: UpdateRecordsRequest
|
|
412
|
-
) => any;
|
|
413
|
-
export declare const UpdateRecordsResponseFilterSensitiveLog: (
|
|
414
|
-
obj: UpdateRecordsResponse
|
|
415
|
-
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cognito-sync",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cognito Sync Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.298.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"build:types": "tsc -p tsconfig.types.json",
|
|
12
12
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
13
13
|
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
14
|
+
"extract:docs": "api-extractor run --local",
|
|
14
15
|
"generate:client": "node ../../scripts/generate-clients/single-service --solo cognito-sync"
|
|
15
16
|
},
|
|
16
17
|
"main": "./dist-cjs/index.js",
|
|
@@ -20,9 +21,9 @@
|
|
|
20
21
|
"dependencies": {
|
|
21
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.298.0",
|
|
24
25
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.298.0",
|
|
26
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|