@aws-sdk/client-cognito-sync 3.1077.0 → 3.1078.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 (59) hide show
  1. package/dist-cjs/index.js +25 -173
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/BulkPublishCommand.js +2 -14
  4. package/dist-es/commands/DeleteDatasetCommand.js +2 -14
  5. package/dist-es/commands/DescribeDatasetCommand.js +2 -14
  6. package/dist-es/commands/DescribeIdentityPoolUsageCommand.js +2 -14
  7. package/dist-es/commands/DescribeIdentityUsageCommand.js +2 -14
  8. package/dist-es/commands/GetBulkPublishDetailsCommand.js +2 -14
  9. package/dist-es/commands/GetCognitoEventsCommand.js +2 -14
  10. package/dist-es/commands/GetIdentityPoolConfigurationCommand.js +2 -14
  11. package/dist-es/commands/ListDatasetsCommand.js +2 -14
  12. package/dist-es/commands/ListIdentityPoolUsageCommand.js +2 -14
  13. package/dist-es/commands/ListRecordsCommand.js +2 -14
  14. package/dist-es/commands/RegisterDeviceCommand.js +2 -14
  15. package/dist-es/commands/SetCognitoEventsCommand.js +2 -14
  16. package/dist-es/commands/SetIdentityPoolConfigurationCommand.js +2 -14
  17. package/dist-es/commands/SubscribeToDatasetCommand.js +2 -14
  18. package/dist-es/commands/UnsubscribeFromDatasetCommand.js +2 -14
  19. package/dist-es/commands/UpdateRecordsCommand.js +2 -14
  20. package/dist-es/index.js +1 -0
  21. package/dist-types/commandBuilder.d.ts +18 -0
  22. package/dist-types/commands/BulkPublishCommand.d.ts +3 -8
  23. package/dist-types/commands/DeleteDatasetCommand.d.ts +3 -8
  24. package/dist-types/commands/DescribeDatasetCommand.d.ts +3 -8
  25. package/dist-types/commands/DescribeIdentityPoolUsageCommand.d.ts +3 -8
  26. package/dist-types/commands/DescribeIdentityUsageCommand.d.ts +3 -8
  27. package/dist-types/commands/GetBulkPublishDetailsCommand.d.ts +3 -8
  28. package/dist-types/commands/GetCognitoEventsCommand.d.ts +3 -8
  29. package/dist-types/commands/GetIdentityPoolConfigurationCommand.d.ts +3 -8
  30. package/dist-types/commands/ListDatasetsCommand.d.ts +3 -8
  31. package/dist-types/commands/ListIdentityPoolUsageCommand.d.ts +3 -8
  32. package/dist-types/commands/ListRecordsCommand.d.ts +3 -8
  33. package/dist-types/commands/RegisterDeviceCommand.d.ts +3 -8
  34. package/dist-types/commands/SetCognitoEventsCommand.d.ts +3 -8
  35. package/dist-types/commands/SetIdentityPoolConfigurationCommand.d.ts +3 -8
  36. package/dist-types/commands/SubscribeToDatasetCommand.d.ts +3 -8
  37. package/dist-types/commands/UnsubscribeFromDatasetCommand.d.ts +3 -8
  38. package/dist-types/commands/UpdateRecordsCommand.d.ts +3 -8
  39. package/dist-types/index.d.ts +1 -0
  40. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  41. package/dist-types/ts3.4/commands/BulkPublishCommand.d.ts +7 -16
  42. package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +7 -16
  43. package/dist-types/ts3.4/commands/DescribeDatasetCommand.d.ts +7 -16
  44. package/dist-types/ts3.4/commands/DescribeIdentityPoolUsageCommand.d.ts +7 -16
  45. package/dist-types/ts3.4/commands/DescribeIdentityUsageCommand.d.ts +7 -16
  46. package/dist-types/ts3.4/commands/GetBulkPublishDetailsCommand.d.ts +7 -16
  47. package/dist-types/ts3.4/commands/GetCognitoEventsCommand.d.ts +7 -16
  48. package/dist-types/ts3.4/commands/GetIdentityPoolConfigurationCommand.d.ts +7 -16
  49. package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +7 -16
  50. package/dist-types/ts3.4/commands/ListIdentityPoolUsageCommand.d.ts +7 -16
  51. package/dist-types/ts3.4/commands/ListRecordsCommand.d.ts +7 -16
  52. package/dist-types/ts3.4/commands/RegisterDeviceCommand.d.ts +7 -16
  53. package/dist-types/ts3.4/commands/SetCognitoEventsCommand.d.ts +7 -16
  54. package/dist-types/ts3.4/commands/SetIdentityPoolConfigurationCommand.d.ts +7 -16
  55. package/dist-types/ts3.4/commands/SubscribeToDatasetCommand.d.ts +7 -16
  56. package/dist-types/ts3.4/commands/UnsubscribeFromDatasetCommand.d.ts +7 -16
  57. package/dist-types/ts3.4/commands/UpdateRecordsCommand.d.ts +7 -16
  58. package/dist-types/ts3.4/index.d.ts +1 -0
  59. package/package.json +8 -8
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient";
4
2
  import type { BulkPublishRequest, BulkPublishResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface BulkPublishCommandInput extends BulkPublishRequest {
22
19
  export interface BulkPublishCommandOutput extends BulkPublishResponse, __MetadataBearer {
23
20
  }
24
21
  declare const BulkPublishCommand_base: {
25
- new (input: BulkPublishCommandInput): import("@smithy/core/client").CommandImpl<BulkPublishCommandInput, BulkPublishCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: BulkPublishCommandInput): import("@smithy/core/client").CommandImpl<BulkPublishCommandInput, BulkPublishCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: BulkPublishCommandInput): import("@smithy/core/client").CommandImpl<BulkPublishCommandInput, BulkPublishCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: BulkPublishCommandInput): import("@smithy/core/client").CommandImpl<BulkPublishCommandInput, BulkPublishCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Initiates a bulk publish of all existing datasets for an Identity Pool to the configured stream. Customers are limited to one successful bulk publish per 24 hours. Bulk publish is an asynchronous request, customers can see the status of the request via the GetBulkPublishDetails operation.</p><p>This API can only be called with developer credentials. You cannot call this API with the temporary user credentials provided by Cognito Identity.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient";
4
2
  import type { DeleteDatasetRequest, DeleteDatasetResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DeleteDatasetCommandInput extends DeleteDatasetRequest {
22
19
  export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DeleteDatasetCommand_base: {
25
- new (input: DeleteDatasetCommandInput): import("@smithy/core/client").CommandImpl<DeleteDatasetCommandInput, DeleteDatasetCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteDatasetCommandInput): import("@smithy/core/client").CommandImpl<DeleteDatasetCommandInput, DeleteDatasetCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteDatasetCommandInput): import("@smithy/core/client").CommandImpl<DeleteDatasetCommandInput, DeleteDatasetCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DeleteDatasetCommandInput): import("@smithy/core/client").CommandImpl<DeleteDatasetCommandInput, DeleteDatasetCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Deletes the specific dataset. The dataset will be deleted permanently, and the action can't
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient";
4
2
  import type { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DescribeDatasetCommandInput extends DescribeDatasetRequest {
22
19
  export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DescribeDatasetCommand_base: {
25
- new (input: DescribeDatasetCommandInput): import("@smithy/core/client").CommandImpl<DescribeDatasetCommandInput, DescribeDatasetCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DescribeDatasetCommandInput): import("@smithy/core/client").CommandImpl<DescribeDatasetCommandInput, DescribeDatasetCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DescribeDatasetCommandInput): import("@smithy/core/client").CommandImpl<DescribeDatasetCommandInput, DescribeDatasetCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DescribeDatasetCommandInput): import("@smithy/core/client").CommandImpl<DescribeDatasetCommandInput, DescribeDatasetCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Gets meta data about a dataset by identity and dataset name. With Amazon Cognito Sync, each
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient";
4
2
  import type { DescribeIdentityPoolUsageRequest, DescribeIdentityPoolUsageResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DescribeIdentityPoolUsageCommandInput extends DescribeIdentityP
22
19
  export interface DescribeIdentityPoolUsageCommandOutput extends DescribeIdentityPoolUsageResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DescribeIdentityPoolUsageCommand_base: {
25
- new (input: DescribeIdentityPoolUsageCommandInput): import("@smithy/core/client").CommandImpl<DescribeIdentityPoolUsageCommandInput, DescribeIdentityPoolUsageCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DescribeIdentityPoolUsageCommandInput): import("@smithy/core/client").CommandImpl<DescribeIdentityPoolUsageCommandInput, DescribeIdentityPoolUsageCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DescribeIdentityPoolUsageCommandInput): import("@smithy/core/client").CommandImpl<DescribeIdentityPoolUsageCommandInput, DescribeIdentityPoolUsageCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DescribeIdentityPoolUsageCommandInput): import("@smithy/core/client").CommandImpl<DescribeIdentityPoolUsageCommandInput, DescribeIdentityPoolUsageCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Gets usage details (for example, data storage) about a particular identity pool.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient";
4
2
  import type { DescribeIdentityUsageRequest, DescribeIdentityUsageResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DescribeIdentityUsageCommandInput extends DescribeIdentityUsage
22
19
  export interface DescribeIdentityUsageCommandOutput extends DescribeIdentityUsageResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DescribeIdentityUsageCommand_base: {
25
- new (input: DescribeIdentityUsageCommandInput): import("@smithy/core/client").CommandImpl<DescribeIdentityUsageCommandInput, DescribeIdentityUsageCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DescribeIdentityUsageCommandInput): import("@smithy/core/client").CommandImpl<DescribeIdentityUsageCommandInput, DescribeIdentityUsageCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DescribeIdentityUsageCommandInput): import("@smithy/core/client").CommandImpl<DescribeIdentityUsageCommandInput, DescribeIdentityUsageCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DescribeIdentityUsageCommandInput): import("@smithy/core/client").CommandImpl<DescribeIdentityUsageCommandInput, DescribeIdentityUsageCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Gets usage information for an identity, including number of datasets and data usage.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient";
4
2
  import type { GetBulkPublishDetailsRequest, GetBulkPublishDetailsResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetBulkPublishDetailsCommandInput extends GetBulkPublishDetails
22
19
  export interface GetBulkPublishDetailsCommandOutput extends GetBulkPublishDetailsResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetBulkPublishDetailsCommand_base: {
25
- new (input: GetBulkPublishDetailsCommandInput): import("@smithy/core/client").CommandImpl<GetBulkPublishDetailsCommandInput, GetBulkPublishDetailsCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetBulkPublishDetailsCommandInput): import("@smithy/core/client").CommandImpl<GetBulkPublishDetailsCommandInput, GetBulkPublishDetailsCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetBulkPublishDetailsCommandInput): import("@smithy/core/client").CommandImpl<GetBulkPublishDetailsCommandInput, GetBulkPublishDetailsCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetBulkPublishDetailsCommandInput): import("@smithy/core/client").CommandImpl<GetBulkPublishDetailsCommandInput, GetBulkPublishDetailsCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Get the status of the last BulkPublish operation for an identity pool.</p><p>This API can only be called with developer credentials. You cannot call this API with the temporary user credentials provided by Cognito Identity.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient";
4
2
  import type { GetCognitoEventsRequest, GetCognitoEventsResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetCognitoEventsCommandInput extends GetCognitoEventsRequest {
22
19
  export interface GetCognitoEventsCommandOutput extends GetCognitoEventsResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetCognitoEventsCommand_base: {
25
- new (input: GetCognitoEventsCommandInput): import("@smithy/core/client").CommandImpl<GetCognitoEventsCommandInput, GetCognitoEventsCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetCognitoEventsCommandInput): import("@smithy/core/client").CommandImpl<GetCognitoEventsCommandInput, GetCognitoEventsCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetCognitoEventsCommandInput): import("@smithy/core/client").CommandImpl<GetCognitoEventsCommandInput, GetCognitoEventsCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetCognitoEventsCommandInput): import("@smithy/core/client").CommandImpl<GetCognitoEventsCommandInput, GetCognitoEventsCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Gets the events and the corresponding Lambda functions associated with an identity pool.</p><p>This API can only be called with developer credentials. You cannot call this API with the temporary user credentials provided by Cognito Identity.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient";
4
2
  import type { GetIdentityPoolConfigurationRequest, GetIdentityPoolConfigurationResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetIdentityPoolConfigurationCommandInput extends GetIdentityPoo
22
19
  export interface GetIdentityPoolConfigurationCommandOutput extends GetIdentityPoolConfigurationResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetIdentityPoolConfigurationCommand_base: {
25
- new (input: GetIdentityPoolConfigurationCommandInput): import("@smithy/core/client").CommandImpl<GetIdentityPoolConfigurationCommandInput, GetIdentityPoolConfigurationCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetIdentityPoolConfigurationCommandInput): import("@smithy/core/client").CommandImpl<GetIdentityPoolConfigurationCommandInput, GetIdentityPoolConfigurationCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetIdentityPoolConfigurationCommandInput): import("@smithy/core/client").CommandImpl<GetIdentityPoolConfigurationCommandInput, GetIdentityPoolConfigurationCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetIdentityPoolConfigurationCommandInput): import("@smithy/core/client").CommandImpl<GetIdentityPoolConfigurationCommandInput, GetIdentityPoolConfigurationCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Gets the configuration settings of an identity pool.</p><p>This API can only be called with developer credentials. You cannot call this API with the temporary user credentials provided by Cognito Identity.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient";
4
2
  import type { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListDatasetsCommandInput extends ListDatasetsRequest {
22
19
  export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListDatasetsCommand_base: {
25
- new (input: ListDatasetsCommandInput): import("@smithy/core/client").CommandImpl<ListDatasetsCommandInput, ListDatasetsCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListDatasetsCommandInput): import("@smithy/core/client").CommandImpl<ListDatasetsCommandInput, ListDatasetsCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListDatasetsCommandInput): import("@smithy/core/client").CommandImpl<ListDatasetsCommandInput, ListDatasetsCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListDatasetsCommandInput): import("@smithy/core/client").CommandImpl<ListDatasetsCommandInput, ListDatasetsCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Lists datasets for an identity. With Amazon Cognito Sync, each identity has access only to
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient";
4
2
  import type { ListIdentityPoolUsageRequest, ListIdentityPoolUsageResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListIdentityPoolUsageCommandInput extends ListIdentityPoolUsage
22
19
  export interface ListIdentityPoolUsageCommandOutput extends ListIdentityPoolUsageResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListIdentityPoolUsageCommand_base: {
25
- new (input: ListIdentityPoolUsageCommandInput): import("@smithy/core/client").CommandImpl<ListIdentityPoolUsageCommandInput, ListIdentityPoolUsageCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListIdentityPoolUsageCommandInput]): import("@smithy/core/client").CommandImpl<ListIdentityPoolUsageCommandInput, ListIdentityPoolUsageCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListIdentityPoolUsageCommandInput): import("@smithy/core/client").CommandImpl<ListIdentityPoolUsageCommandInput, ListIdentityPoolUsageCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListIdentityPoolUsageCommandInput]): import("@smithy/core/client").CommandImpl<ListIdentityPoolUsageCommandInput, ListIdentityPoolUsageCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Gets a list of identity pools registered with Cognito.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient";
4
2
  import type { ListRecordsRequest, ListRecordsResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListRecordsCommandInput extends ListRecordsRequest {
22
19
  export interface ListRecordsCommandOutput extends ListRecordsResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListRecordsCommand_base: {
25
- new (input: ListRecordsCommandInput): import("@smithy/core/client").CommandImpl<ListRecordsCommandInput, ListRecordsCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListRecordsCommandInput): import("@smithy/core/client").CommandImpl<ListRecordsCommandInput, ListRecordsCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListRecordsCommandInput): import("@smithy/core/client").CommandImpl<ListRecordsCommandInput, ListRecordsCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListRecordsCommandInput): import("@smithy/core/client").CommandImpl<ListRecordsCommandInput, ListRecordsCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Gets paginated records, optionally changed after a particular sync count for a dataset and
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient";
4
2
  import type { RegisterDeviceRequest, RegisterDeviceResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface RegisterDeviceCommandInput extends RegisterDeviceRequest {
22
19
  export interface RegisterDeviceCommandOutput extends RegisterDeviceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const RegisterDeviceCommand_base: {
25
- new (input: RegisterDeviceCommandInput): import("@smithy/core/client").CommandImpl<RegisterDeviceCommandInput, RegisterDeviceCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: RegisterDeviceCommandInput): import("@smithy/core/client").CommandImpl<RegisterDeviceCommandInput, RegisterDeviceCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: RegisterDeviceCommandInput): import("@smithy/core/client").CommandImpl<RegisterDeviceCommandInput, RegisterDeviceCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: RegisterDeviceCommandInput): import("@smithy/core/client").CommandImpl<RegisterDeviceCommandInput, RegisterDeviceCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Registers a device to receive push sync notifications.</p><p>This API can only be called with temporary credentials provided by Cognito Identity. You cannot call this API with developer credentials.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient";
4
2
  import type { SetCognitoEventsRequest } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface SetCognitoEventsCommandInput extends SetCognitoEventsRequest {
22
19
  export interface SetCognitoEventsCommandOutput extends __MetadataBearer {
23
20
  }
24
21
  declare const SetCognitoEventsCommand_base: {
25
- new (input: SetCognitoEventsCommandInput): import("@smithy/core/client").CommandImpl<SetCognitoEventsCommandInput, SetCognitoEventsCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: SetCognitoEventsCommandInput): import("@smithy/core/client").CommandImpl<SetCognitoEventsCommandInput, SetCognitoEventsCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: SetCognitoEventsCommandInput): import("@smithy/core/client").CommandImpl<SetCognitoEventsCommandInput, SetCognitoEventsCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: SetCognitoEventsCommandInput): import("@smithy/core/client").CommandImpl<SetCognitoEventsCommandInput, SetCognitoEventsCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Sets the AWS Lambda function for a given event type for an identity pool. This request only updates the key/value pair specified. Other key/values pairs are not updated. To remove a key value pair, pass a empty value for the particular key.</p><p>This API can only be called with developer credentials. You cannot call this API with the temporary user credentials provided by Cognito Identity.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient";
4
2
  import type { SetIdentityPoolConfigurationRequest, SetIdentityPoolConfigurationResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface SetIdentityPoolConfigurationCommandInput extends SetIdentityPoo
22
19
  export interface SetIdentityPoolConfigurationCommandOutput extends SetIdentityPoolConfigurationResponse, __MetadataBearer {
23
20
  }
24
21
  declare const SetIdentityPoolConfigurationCommand_base: {
25
- new (input: SetIdentityPoolConfigurationCommandInput): import("@smithy/core/client").CommandImpl<SetIdentityPoolConfigurationCommandInput, SetIdentityPoolConfigurationCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: SetIdentityPoolConfigurationCommandInput): import("@smithy/core/client").CommandImpl<SetIdentityPoolConfigurationCommandInput, SetIdentityPoolConfigurationCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: SetIdentityPoolConfigurationCommandInput): import("@smithy/core/client").CommandImpl<SetIdentityPoolConfigurationCommandInput, SetIdentityPoolConfigurationCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: SetIdentityPoolConfigurationCommandInput): import("@smithy/core/client").CommandImpl<SetIdentityPoolConfigurationCommandInput, SetIdentityPoolConfigurationCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Sets the necessary configuration for push sync.</p><p>This API can only be called with developer credentials. You cannot call this API with the temporary user credentials provided by Cognito Identity.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient";
4
2
  import type { SubscribeToDatasetRequest, SubscribeToDatasetResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface SubscribeToDatasetCommandInput extends SubscribeToDatasetReques
22
19
  export interface SubscribeToDatasetCommandOutput extends SubscribeToDatasetResponse, __MetadataBearer {
23
20
  }
24
21
  declare const SubscribeToDatasetCommand_base: {
25
- new (input: SubscribeToDatasetCommandInput): import("@smithy/core/client").CommandImpl<SubscribeToDatasetCommandInput, SubscribeToDatasetCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: SubscribeToDatasetCommandInput): import("@smithy/core/client").CommandImpl<SubscribeToDatasetCommandInput, SubscribeToDatasetCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: SubscribeToDatasetCommandInput): import("@smithy/core/client").CommandImpl<SubscribeToDatasetCommandInput, SubscribeToDatasetCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: SubscribeToDatasetCommandInput): import("@smithy/core/client").CommandImpl<SubscribeToDatasetCommandInput, SubscribeToDatasetCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Subscribes to receive notifications when a dataset is modified by another device.</p><p>This API can only be called with temporary credentials provided by Cognito Identity. You cannot call this API with developer credentials.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient";
4
2
  import type { UnsubscribeFromDatasetRequest, UnsubscribeFromDatasetResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface UnsubscribeFromDatasetCommandInput extends UnsubscribeFromDatas
22
19
  export interface UnsubscribeFromDatasetCommandOutput extends UnsubscribeFromDatasetResponse, __MetadataBearer {
23
20
  }
24
21
  declare const UnsubscribeFromDatasetCommand_base: {
25
- new (input: UnsubscribeFromDatasetCommandInput): import("@smithy/core/client").CommandImpl<UnsubscribeFromDatasetCommandInput, UnsubscribeFromDatasetCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UnsubscribeFromDatasetCommandInput): import("@smithy/core/client").CommandImpl<UnsubscribeFromDatasetCommandInput, UnsubscribeFromDatasetCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UnsubscribeFromDatasetCommandInput): import("@smithy/core/client").CommandImpl<UnsubscribeFromDatasetCommandInput, UnsubscribeFromDatasetCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UnsubscribeFromDatasetCommandInput): import("@smithy/core/client").CommandImpl<UnsubscribeFromDatasetCommandInput, UnsubscribeFromDatasetCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Unsubscribes from receiving notifications when a dataset is modified by another device.</p><p>This API can only be called with temporary credentials provided by Cognito Identity. You cannot call this API with developer credentials.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient";
4
2
  import type { UpdateRecordsRequest, UpdateRecordsResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface UpdateRecordsCommandInput extends UpdateRecordsRequest {
22
19
  export interface UpdateRecordsCommandOutput extends UpdateRecordsResponse, __MetadataBearer {
23
20
  }
24
21
  declare const UpdateRecordsCommand_base: {
25
- new (input: UpdateRecordsCommandInput): import("@smithy/core/client").CommandImpl<UpdateRecordsCommandInput, UpdateRecordsCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UpdateRecordsCommandInput): import("@smithy/core/client").CommandImpl<UpdateRecordsCommandInput, UpdateRecordsCommandOutput, CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UpdateRecordsCommandInput): import("@smithy/core/client").CommandImpl<UpdateRecordsCommandInput, UpdateRecordsCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UpdateRecordsCommandInput): import("@smithy/core/client").CommandImpl<UpdateRecordsCommandInput, UpdateRecordsCommandOutput, import("..").CognitoSyncClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Posts updates to records and adds and deletes records for a dataset and user.</p>
@@ -21,6 +21,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
21
21
  export type { RuntimeExtension } from "./runtimeExtensions";
22
22
  export type { CognitoSyncExtensionConfiguration } from "./extensionConfiguration";
23
23
  export * from "./commands";
24
+ export { Command as $Command } from "@smithy/core/client";
24
25
  export * from "./schemas/schemas_0";
25
26
  export * from "./models/enums";
26
27
  export * from "./models/errors";
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ CognitoSyncClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./CognitoSyncClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ CognitoSyncClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ CognitoSyncClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _mw0: (
42
+ Command: any,
43
+ cs: any,
44
+ config: any,
45
+ o: any
46
+ ) => never[];
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- CognitoSyncClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../CognitoSyncClient";
8
2
  import { BulkPublishRequest, BulkPublishResponse } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface BulkPublishCommandInput extends BulkPublishRequest {}
12
5
  export interface BulkPublishCommandOutput
13
6
  extends BulkPublishResponse,
@@ -18,22 +11,20 @@ declare const BulkPublishCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  BulkPublishCommandInput,
20
13
  BulkPublishCommandOutput,
21
- CognitoSyncClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").CognitoSyncClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: BulkPublishCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  BulkPublishCommandInput,
29
22
  BulkPublishCommandOutput,
30
- CognitoSyncClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").CognitoSyncClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class BulkPublishCommand extends BulkPublishCommand_base {
39
30
  protected static __types: {