@aws-sdk/client-cognito-sync 3.168.0 → 3.170.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.
Files changed (32) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/CognitoSync.d.ts +310 -90
  3. package/dist-types/ts3.4/CognitoSyncClient.d.ts +231 -90
  4. package/dist-types/ts3.4/commands/BulkPublishCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +37 -17
  6. package/dist-types/ts3.4/commands/DescribeDatasetCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/DescribeIdentityPoolUsageCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/DescribeIdentityUsageCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/GetBulkPublishDetailsCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/GetCognitoEventsCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/GetIdentityPoolConfigurationCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/ListIdentityPoolUsageCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/ListRecordsCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/RegisterDeviceCommand.d.ts +37 -17
  16. package/dist-types/ts3.4/commands/SetCognitoEventsCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/SetIdentityPoolConfigurationCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/SubscribeToDatasetCommand.d.ts +38 -17
  19. package/dist-types/ts3.4/commands/UnsubscribeFromDatasetCommand.d.ts +41 -17
  20. package/dist-types/ts3.4/commands/UpdateRecordsCommand.d.ts +37 -17
  21. package/dist-types/ts3.4/commands/index.d.ts +17 -17
  22. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  23. package/dist-types/ts3.4/index.d.ts +5 -5
  24. package/dist-types/ts3.4/models/CognitoSyncServiceException.d.ts +8 -6
  25. package/dist-types/ts3.4/models/index.d.ts +1 -1
  26. package/dist-types/ts3.4/models/models_0.d.ts +599 -535
  27. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +209 -53
  28. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  29. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  30. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  31. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  32. package/package.json +34 -34
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient";
4
- import { UpdateRecordsRequest, UpdateRecordsResponse } from "../models/models_0";
5
- export interface UpdateRecordsCommandInput extends UpdateRecordsRequest {
6
- }
7
- export interface UpdateRecordsCommandOutput extends UpdateRecordsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateRecordsCommand extends $Command<UpdateRecordsCommandInput, UpdateRecordsCommandOutput, CognitoSyncClientResolvedConfig> {
11
- readonly input: UpdateRecordsCommandInput;
12
- constructor(input: UpdateRecordsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CognitoSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateRecordsCommandInput, UpdateRecordsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CognitoSyncClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CognitoSyncClient";
13
+ import {
14
+ UpdateRecordsRequest,
15
+ UpdateRecordsResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateRecordsCommandInput extends UpdateRecordsRequest {}
18
+ export interface UpdateRecordsCommandOutput
19
+ extends UpdateRecordsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UpdateRecordsCommand extends $Command<
23
+ UpdateRecordsCommandInput,
24
+ UpdateRecordsCommandOutput,
25
+ CognitoSyncClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateRecordsCommandInput;
28
+ constructor(input: UpdateRecordsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CognitoSyncClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UpdateRecordsCommandInput, UpdateRecordsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,17 @@
1
- export * from "./BulkPublishCommand";
2
- export * from "./DeleteDatasetCommand";
3
- export * from "./DescribeDatasetCommand";
4
- export * from "./DescribeIdentityPoolUsageCommand";
5
- export * from "./DescribeIdentityUsageCommand";
6
- export * from "./GetBulkPublishDetailsCommand";
7
- export * from "./GetCognitoEventsCommand";
8
- export * from "./GetIdentityPoolConfigurationCommand";
9
- export * from "./ListDatasetsCommand";
10
- export * from "./ListIdentityPoolUsageCommand";
11
- export * from "./ListRecordsCommand";
12
- export * from "./RegisterDeviceCommand";
13
- export * from "./SetCognitoEventsCommand";
14
- export * from "./SetIdentityPoolConfigurationCommand";
15
- export * from "./SubscribeToDatasetCommand";
16
- export * from "./UnsubscribeFromDatasetCommand";
17
- export * from "./UpdateRecordsCommand";
1
+ export * from "./BulkPublishCommand";
2
+ export * from "./DeleteDatasetCommand";
3
+ export * from "./DescribeDatasetCommand";
4
+ export * from "./DescribeIdentityPoolUsageCommand";
5
+ export * from "./DescribeIdentityUsageCommand";
6
+ export * from "./GetBulkPublishDetailsCommand";
7
+ export * from "./GetCognitoEventsCommand";
8
+ export * from "./GetIdentityPoolConfigurationCommand";
9
+ export * from "./ListDatasetsCommand";
10
+ export * from "./ListIdentityPoolUsageCommand";
11
+ export * from "./ListRecordsCommand";
12
+ export * from "./RegisterDeviceCommand";
13
+ export * from "./SetCognitoEventsCommand";
14
+ export * from "./SetIdentityPoolConfigurationCommand";
15
+ export * from "./SubscribeToDatasetCommand";
16
+ export * from "./UnsubscribeFromDatasetCommand";
17
+ export * from "./UpdateRecordsCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,5 +1,5 @@
1
- export * from "./CognitoSync";
2
- export * from "./CognitoSyncClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export { CognitoSyncServiceException } from "./models/CognitoSyncServiceException";
1
+ export * from "./CognitoSync";
2
+ export * from "./CognitoSyncClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export { CognitoSyncServiceException } from "./models/CognitoSyncServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class CognitoSyncServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class CognitoSyncServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";