@aws-sdk/client-cognito-sync 3.169.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 +8 -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,41 @@
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 { GetBulkPublishDetailsRequest, GetBulkPublishDetailsResponse } from "../models/models_0";
5
- export interface GetBulkPublishDetailsCommandInput extends GetBulkPublishDetailsRequest {
6
- }
7
- export interface GetBulkPublishDetailsCommandOutput extends GetBulkPublishDetailsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetBulkPublishDetailsCommand extends $Command<GetBulkPublishDetailsCommandInput, GetBulkPublishDetailsCommandOutput, CognitoSyncClientResolvedConfig> {
11
- readonly input: GetBulkPublishDetailsCommandInput;
12
- constructor(input: GetBulkPublishDetailsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CognitoSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetBulkPublishDetailsCommandInput, GetBulkPublishDetailsCommandOutput>;
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
+ GetBulkPublishDetailsRequest,
15
+ GetBulkPublishDetailsResponse,
16
+ } from "../models/models_0";
17
+ export interface GetBulkPublishDetailsCommandInput
18
+ extends GetBulkPublishDetailsRequest {}
19
+ export interface GetBulkPublishDetailsCommandOutput
20
+ extends GetBulkPublishDetailsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetBulkPublishDetailsCommand extends $Command<
24
+ GetBulkPublishDetailsCommandInput,
25
+ GetBulkPublishDetailsCommandOutput,
26
+ CognitoSyncClientResolvedConfig
27
+ > {
28
+ readonly input: GetBulkPublishDetailsCommandInput;
29
+ constructor(input: GetBulkPublishDetailsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CognitoSyncClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ GetBulkPublishDetailsCommandInput,
37
+ GetBulkPublishDetailsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { GetCognitoEventsRequest, GetCognitoEventsResponse } from "../models/models_0";
5
- export interface GetCognitoEventsCommandInput extends GetCognitoEventsRequest {
6
- }
7
- export interface GetCognitoEventsCommandOutput extends GetCognitoEventsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetCognitoEventsCommand extends $Command<GetCognitoEventsCommandInput, GetCognitoEventsCommandOutput, CognitoSyncClientResolvedConfig> {
11
- readonly input: GetCognitoEventsCommandInput;
12
- constructor(input: GetCognitoEventsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CognitoSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCognitoEventsCommandInput, GetCognitoEventsCommandOutput>;
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
+ GetCognitoEventsRequest,
15
+ GetCognitoEventsResponse,
16
+ } from "../models/models_0";
17
+ export interface GetCognitoEventsCommandInput extends GetCognitoEventsRequest {}
18
+ export interface GetCognitoEventsCommandOutput
19
+ extends GetCognitoEventsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetCognitoEventsCommand extends $Command<
23
+ GetCognitoEventsCommandInput,
24
+ GetCognitoEventsCommandOutput,
25
+ CognitoSyncClientResolvedConfig
26
+ > {
27
+ readonly input: GetCognitoEventsCommandInput;
28
+ constructor(input: GetCognitoEventsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CognitoSyncClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetCognitoEventsCommandInput, GetCognitoEventsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
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 { GetIdentityPoolConfigurationRequest, GetIdentityPoolConfigurationResponse } from "../models/models_0";
5
- export interface GetIdentityPoolConfigurationCommandInput extends GetIdentityPoolConfigurationRequest {
6
- }
7
- export interface GetIdentityPoolConfigurationCommandOutput extends GetIdentityPoolConfigurationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetIdentityPoolConfigurationCommand extends $Command<GetIdentityPoolConfigurationCommandInput, GetIdentityPoolConfigurationCommandOutput, CognitoSyncClientResolvedConfig> {
11
- readonly input: GetIdentityPoolConfigurationCommandInput;
12
- constructor(input: GetIdentityPoolConfigurationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CognitoSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetIdentityPoolConfigurationCommandInput, GetIdentityPoolConfigurationCommandOutput>;
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
+ GetIdentityPoolConfigurationRequest,
15
+ GetIdentityPoolConfigurationResponse,
16
+ } from "../models/models_0";
17
+ export interface GetIdentityPoolConfigurationCommandInput
18
+ extends GetIdentityPoolConfigurationRequest {}
19
+ export interface GetIdentityPoolConfigurationCommandOutput
20
+ extends GetIdentityPoolConfigurationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetIdentityPoolConfigurationCommand extends $Command<
24
+ GetIdentityPoolConfigurationCommandInput,
25
+ GetIdentityPoolConfigurationCommandOutput,
26
+ CognitoSyncClientResolvedConfig
27
+ > {
28
+ readonly input: GetIdentityPoolConfigurationCommandInput;
29
+ constructor(input: GetIdentityPoolConfigurationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CognitoSyncClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ GetIdentityPoolConfigurationCommandInput,
37
+ GetIdentityPoolConfigurationCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,34 @@
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 { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0";
5
- export interface ListDatasetsCommandInput extends ListDatasetsRequest {
6
- }
7
- export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListDatasetsCommand extends $Command<ListDatasetsCommandInput, ListDatasetsCommandOutput, CognitoSyncClientResolvedConfig> {
11
- readonly input: ListDatasetsCommandInput;
12
- constructor(input: ListDatasetsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CognitoSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDatasetsCommandInput, ListDatasetsCommandOutput>;
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 { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0";
14
+ export interface ListDatasetsCommandInput extends ListDatasetsRequest {}
15
+ export interface ListDatasetsCommandOutput
16
+ extends ListDatasetsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListDatasetsCommand extends $Command<
20
+ ListDatasetsCommandInput,
21
+ ListDatasetsCommandOutput,
22
+ CognitoSyncClientResolvedConfig
23
+ > {
24
+ readonly input: ListDatasetsCommandInput;
25
+ constructor(input: ListDatasetsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: CognitoSyncClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListDatasetsCommandInput, ListDatasetsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,41 @@
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 { ListIdentityPoolUsageRequest, ListIdentityPoolUsageResponse } from "../models/models_0";
5
- export interface ListIdentityPoolUsageCommandInput extends ListIdentityPoolUsageRequest {
6
- }
7
- export interface ListIdentityPoolUsageCommandOutput extends ListIdentityPoolUsageResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListIdentityPoolUsageCommand extends $Command<ListIdentityPoolUsageCommandInput, ListIdentityPoolUsageCommandOutput, CognitoSyncClientResolvedConfig> {
11
- readonly input: ListIdentityPoolUsageCommandInput;
12
- constructor(input: ListIdentityPoolUsageCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CognitoSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListIdentityPoolUsageCommandInput, ListIdentityPoolUsageCommandOutput>;
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
+ ListIdentityPoolUsageRequest,
15
+ ListIdentityPoolUsageResponse,
16
+ } from "../models/models_0";
17
+ export interface ListIdentityPoolUsageCommandInput
18
+ extends ListIdentityPoolUsageRequest {}
19
+ export interface ListIdentityPoolUsageCommandOutput
20
+ extends ListIdentityPoolUsageResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListIdentityPoolUsageCommand extends $Command<
24
+ ListIdentityPoolUsageCommandInput,
25
+ ListIdentityPoolUsageCommandOutput,
26
+ CognitoSyncClientResolvedConfig
27
+ > {
28
+ readonly input: ListIdentityPoolUsageCommandInput;
29
+ constructor(input: ListIdentityPoolUsageCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CognitoSyncClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListIdentityPoolUsageCommandInput,
37
+ ListIdentityPoolUsageCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,34 @@
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 { ListRecordsRequest, ListRecordsResponse } from "../models/models_0";
5
- export interface ListRecordsCommandInput extends ListRecordsRequest {
6
- }
7
- export interface ListRecordsCommandOutput extends ListRecordsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListRecordsCommand extends $Command<ListRecordsCommandInput, ListRecordsCommandOutput, CognitoSyncClientResolvedConfig> {
11
- readonly input: ListRecordsCommandInput;
12
- constructor(input: ListRecordsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CognitoSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRecordsCommandInput, ListRecordsCommandOutput>;
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 { ListRecordsRequest, ListRecordsResponse } from "../models/models_0";
14
+ export interface ListRecordsCommandInput extends ListRecordsRequest {}
15
+ export interface ListRecordsCommandOutput
16
+ extends ListRecordsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListRecordsCommand extends $Command<
20
+ ListRecordsCommandInput,
21
+ ListRecordsCommandOutput,
22
+ CognitoSyncClientResolvedConfig
23
+ > {
24
+ readonly input: ListRecordsCommandInput;
25
+ constructor(input: ListRecordsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: CognitoSyncClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListRecordsCommandInput, ListRecordsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
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 { RegisterDeviceRequest, RegisterDeviceResponse } from "../models/models_0";
5
- export interface RegisterDeviceCommandInput extends RegisterDeviceRequest {
6
- }
7
- export interface RegisterDeviceCommandOutput extends RegisterDeviceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class RegisterDeviceCommand extends $Command<RegisterDeviceCommandInput, RegisterDeviceCommandOutput, CognitoSyncClientResolvedConfig> {
11
- readonly input: RegisterDeviceCommandInput;
12
- constructor(input: RegisterDeviceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CognitoSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterDeviceCommandInput, RegisterDeviceCommandOutput>;
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
+ RegisterDeviceRequest,
15
+ RegisterDeviceResponse,
16
+ } from "../models/models_0";
17
+ export interface RegisterDeviceCommandInput extends RegisterDeviceRequest {}
18
+ export interface RegisterDeviceCommandOutput
19
+ extends RegisterDeviceResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class RegisterDeviceCommand extends $Command<
23
+ RegisterDeviceCommandInput,
24
+ RegisterDeviceCommandOutput,
25
+ CognitoSyncClientResolvedConfig
26
+ > {
27
+ readonly input: RegisterDeviceCommandInput;
28
+ constructor(input: RegisterDeviceCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CognitoSyncClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<RegisterDeviceCommandInput, RegisterDeviceCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,32 @@
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 { SetCognitoEventsRequest } from "../models/models_0";
5
- export interface SetCognitoEventsCommandInput extends SetCognitoEventsRequest {
6
- }
7
- export interface SetCognitoEventsCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class SetCognitoEventsCommand extends $Command<SetCognitoEventsCommandInput, SetCognitoEventsCommandOutput, CognitoSyncClientResolvedConfig> {
11
- readonly input: SetCognitoEventsCommandInput;
12
- constructor(input: SetCognitoEventsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CognitoSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SetCognitoEventsCommandInput, SetCognitoEventsCommandOutput>;
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 { SetCognitoEventsRequest } from "../models/models_0";
14
+ export interface SetCognitoEventsCommandInput extends SetCognitoEventsRequest {}
15
+ export interface SetCognitoEventsCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class SetCognitoEventsCommand extends $Command<
18
+ SetCognitoEventsCommandInput,
19
+ SetCognitoEventsCommandOutput,
20
+ CognitoSyncClientResolvedConfig
21
+ > {
22
+ readonly input: SetCognitoEventsCommandInput;
23
+ constructor(input: SetCognitoEventsCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: CognitoSyncClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<SetCognitoEventsCommandInput, SetCognitoEventsCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,41 @@
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 { SetIdentityPoolConfigurationRequest, SetIdentityPoolConfigurationResponse } from "../models/models_0";
5
- export interface SetIdentityPoolConfigurationCommandInput extends SetIdentityPoolConfigurationRequest {
6
- }
7
- export interface SetIdentityPoolConfigurationCommandOutput extends SetIdentityPoolConfigurationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class SetIdentityPoolConfigurationCommand extends $Command<SetIdentityPoolConfigurationCommandInput, SetIdentityPoolConfigurationCommandOutput, CognitoSyncClientResolvedConfig> {
11
- readonly input: SetIdentityPoolConfigurationCommandInput;
12
- constructor(input: SetIdentityPoolConfigurationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CognitoSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SetIdentityPoolConfigurationCommandInput, SetIdentityPoolConfigurationCommandOutput>;
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
+ SetIdentityPoolConfigurationRequest,
15
+ SetIdentityPoolConfigurationResponse,
16
+ } from "../models/models_0";
17
+ export interface SetIdentityPoolConfigurationCommandInput
18
+ extends SetIdentityPoolConfigurationRequest {}
19
+ export interface SetIdentityPoolConfigurationCommandOutput
20
+ extends SetIdentityPoolConfigurationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class SetIdentityPoolConfigurationCommand extends $Command<
24
+ SetIdentityPoolConfigurationCommandInput,
25
+ SetIdentityPoolConfigurationCommandOutput,
26
+ CognitoSyncClientResolvedConfig
27
+ > {
28
+ readonly input: SetIdentityPoolConfigurationCommandInput;
29
+ constructor(input: SetIdentityPoolConfigurationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CognitoSyncClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ SetIdentityPoolConfigurationCommandInput,
37
+ SetIdentityPoolConfigurationCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,38 @@
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 { SubscribeToDatasetRequest, SubscribeToDatasetResponse } from "../models/models_0";
5
- export interface SubscribeToDatasetCommandInput extends SubscribeToDatasetRequest {
6
- }
7
- export interface SubscribeToDatasetCommandOutput extends SubscribeToDatasetResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class SubscribeToDatasetCommand extends $Command<SubscribeToDatasetCommandInput, SubscribeToDatasetCommandOutput, CognitoSyncClientResolvedConfig> {
11
- readonly input: SubscribeToDatasetCommandInput;
12
- constructor(input: SubscribeToDatasetCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CognitoSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SubscribeToDatasetCommandInput, SubscribeToDatasetCommandOutput>;
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
+ SubscribeToDatasetRequest,
15
+ SubscribeToDatasetResponse,
16
+ } from "../models/models_0";
17
+ export interface SubscribeToDatasetCommandInput
18
+ extends SubscribeToDatasetRequest {}
19
+ export interface SubscribeToDatasetCommandOutput
20
+ extends SubscribeToDatasetResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class SubscribeToDatasetCommand extends $Command<
24
+ SubscribeToDatasetCommandInput,
25
+ SubscribeToDatasetCommandOutput,
26
+ CognitoSyncClientResolvedConfig
27
+ > {
28
+ readonly input: SubscribeToDatasetCommandInput;
29
+ constructor(input: SubscribeToDatasetCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CognitoSyncClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<SubscribeToDatasetCommandInput, SubscribeToDatasetCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,41 @@
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 { UnsubscribeFromDatasetRequest, UnsubscribeFromDatasetResponse } from "../models/models_0";
5
- export interface UnsubscribeFromDatasetCommandInput extends UnsubscribeFromDatasetRequest {
6
- }
7
- export interface UnsubscribeFromDatasetCommandOutput extends UnsubscribeFromDatasetResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UnsubscribeFromDatasetCommand extends $Command<UnsubscribeFromDatasetCommandInput, UnsubscribeFromDatasetCommandOutput, CognitoSyncClientResolvedConfig> {
11
- readonly input: UnsubscribeFromDatasetCommandInput;
12
- constructor(input: UnsubscribeFromDatasetCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CognitoSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UnsubscribeFromDatasetCommandInput, UnsubscribeFromDatasetCommandOutput>;
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
+ UnsubscribeFromDatasetRequest,
15
+ UnsubscribeFromDatasetResponse,
16
+ } from "../models/models_0";
17
+ export interface UnsubscribeFromDatasetCommandInput
18
+ extends UnsubscribeFromDatasetRequest {}
19
+ export interface UnsubscribeFromDatasetCommandOutput
20
+ extends UnsubscribeFromDatasetResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class UnsubscribeFromDatasetCommand extends $Command<
24
+ UnsubscribeFromDatasetCommandInput,
25
+ UnsubscribeFromDatasetCommandOutput,
26
+ CognitoSyncClientResolvedConfig
27
+ > {
28
+ readonly input: UnsubscribeFromDatasetCommandInput;
29
+ constructor(input: UnsubscribeFromDatasetCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CognitoSyncClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ UnsubscribeFromDatasetCommandInput,
37
+ UnsubscribeFromDatasetCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }