@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.
- package/dist-cjs/index.js +25 -173
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/BulkPublishCommand.js +2 -14
- package/dist-es/commands/DeleteDatasetCommand.js +2 -14
- package/dist-es/commands/DescribeDatasetCommand.js +2 -14
- package/dist-es/commands/DescribeIdentityPoolUsageCommand.js +2 -14
- package/dist-es/commands/DescribeIdentityUsageCommand.js +2 -14
- package/dist-es/commands/GetBulkPublishDetailsCommand.js +2 -14
- package/dist-es/commands/GetCognitoEventsCommand.js +2 -14
- package/dist-es/commands/GetIdentityPoolConfigurationCommand.js +2 -14
- package/dist-es/commands/ListDatasetsCommand.js +2 -14
- package/dist-es/commands/ListIdentityPoolUsageCommand.js +2 -14
- package/dist-es/commands/ListRecordsCommand.js +2 -14
- package/dist-es/commands/RegisterDeviceCommand.js +2 -14
- package/dist-es/commands/SetCognitoEventsCommand.js +2 -14
- package/dist-es/commands/SetIdentityPoolConfigurationCommand.js +2 -14
- package/dist-es/commands/SubscribeToDatasetCommand.js +2 -14
- package/dist-es/commands/UnsubscribeFromDatasetCommand.js +2 -14
- package/dist-es/commands/UpdateRecordsCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/BulkPublishCommand.d.ts +3 -8
- package/dist-types/commands/DeleteDatasetCommand.d.ts +3 -8
- package/dist-types/commands/DescribeDatasetCommand.d.ts +3 -8
- package/dist-types/commands/DescribeIdentityPoolUsageCommand.d.ts +3 -8
- package/dist-types/commands/DescribeIdentityUsageCommand.d.ts +3 -8
- package/dist-types/commands/GetBulkPublishDetailsCommand.d.ts +3 -8
- package/dist-types/commands/GetCognitoEventsCommand.d.ts +3 -8
- package/dist-types/commands/GetIdentityPoolConfigurationCommand.d.ts +3 -8
- package/dist-types/commands/ListDatasetsCommand.d.ts +3 -8
- package/dist-types/commands/ListIdentityPoolUsageCommand.d.ts +3 -8
- package/dist-types/commands/ListRecordsCommand.d.ts +3 -8
- package/dist-types/commands/RegisterDeviceCommand.d.ts +3 -8
- package/dist-types/commands/SetCognitoEventsCommand.d.ts +3 -8
- package/dist-types/commands/SetIdentityPoolConfigurationCommand.d.ts +3 -8
- package/dist-types/commands/SubscribeToDatasetCommand.d.ts +3 -8
- package/dist-types/commands/UnsubscribeFromDatasetCommand.d.ts +3 -8
- package/dist-types/commands/UpdateRecordsCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/BulkPublishCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DescribeDatasetCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DescribeIdentityPoolUsageCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DescribeIdentityUsageCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetBulkPublishDetailsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetCognitoEventsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetIdentityPoolConfigurationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListIdentityPoolUsageCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListRecordsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RegisterDeviceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SetCognitoEventsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SetIdentityPoolConfigurationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SubscribeToDatasetCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UnsubscribeFromDatasetCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateRecordsCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
|
@@ -1,16 +1,9 @@
|
|
|
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 {
|
|
9
3
|
DeleteDatasetRequest,
|
|
10
4
|
DeleteDatasetResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DeleteDatasetCommandInput extends DeleteDatasetRequest {}
|
|
15
8
|
export interface DeleteDatasetCommandOutput
|
|
16
9
|
extends DeleteDatasetResponse,
|
|
@@ -21,22 +14,20 @@ declare const DeleteDatasetCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
DeleteDatasetCommandInput,
|
|
23
16
|
DeleteDatasetCommandOutput,
|
|
24
|
-
CognitoSyncClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: DeleteDatasetCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
DeleteDatasetCommandInput,
|
|
32
25
|
DeleteDatasetCommandOutput,
|
|
33
|
-
CognitoSyncClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class DeleteDatasetCommand extends DeleteDatasetCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
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 {
|
|
9
3
|
DescribeDatasetRequest,
|
|
10
4
|
DescribeDatasetResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DescribeDatasetCommandInput extends DescribeDatasetRequest {}
|
|
15
8
|
export interface DescribeDatasetCommandOutput
|
|
16
9
|
extends DescribeDatasetResponse,
|
|
@@ -21,22 +14,20 @@ declare const DescribeDatasetCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
DescribeDatasetCommandInput,
|
|
23
16
|
DescribeDatasetCommandOutput,
|
|
24
|
-
CognitoSyncClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: DescribeDatasetCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
DescribeDatasetCommandInput,
|
|
32
25
|
DescribeDatasetCommandOutput,
|
|
33
|
-
CognitoSyncClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class DescribeDatasetCommand extends DescribeDatasetCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
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 {
|
|
9
3
|
DescribeIdentityPoolUsageRequest,
|
|
10
4
|
DescribeIdentityPoolUsageResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DescribeIdentityPoolUsageCommandInput
|
|
15
8
|
extends DescribeIdentityPoolUsageRequest {}
|
|
16
9
|
export interface DescribeIdentityPoolUsageCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const DescribeIdentityPoolUsageCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
DescribeIdentityPoolUsageCommandInput,
|
|
24
17
|
DescribeIdentityPoolUsageCommandOutput,
|
|
25
|
-
CognitoSyncClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: DescribeIdentityPoolUsageCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
DescribeIdentityPoolUsageCommandInput,
|
|
33
26
|
DescribeIdentityPoolUsageCommandOutput,
|
|
34
|
-
CognitoSyncClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class DescribeIdentityPoolUsageCommand extends DescribeIdentityPoolUsageCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
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 {
|
|
9
3
|
DescribeIdentityUsageRequest,
|
|
10
4
|
DescribeIdentityUsageResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DescribeIdentityUsageCommandInput
|
|
15
8
|
extends DescribeIdentityUsageRequest {}
|
|
16
9
|
export interface DescribeIdentityUsageCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const DescribeIdentityUsageCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
DescribeIdentityUsageCommandInput,
|
|
24
17
|
DescribeIdentityUsageCommandOutput,
|
|
25
|
-
CognitoSyncClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: DescribeIdentityUsageCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
DescribeIdentityUsageCommandInput,
|
|
33
26
|
DescribeIdentityUsageCommandOutput,
|
|
34
|
-
CognitoSyncClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class DescribeIdentityUsageCommand extends DescribeIdentityUsageCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
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 {
|
|
9
3
|
GetBulkPublishDetailsRequest,
|
|
10
4
|
GetBulkPublishDetailsResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetBulkPublishDetailsCommandInput
|
|
15
8
|
extends GetBulkPublishDetailsRequest {}
|
|
16
9
|
export interface GetBulkPublishDetailsCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetBulkPublishDetailsCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetBulkPublishDetailsCommandInput,
|
|
24
17
|
GetBulkPublishDetailsCommandOutput,
|
|
25
|
-
CognitoSyncClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: GetBulkPublishDetailsCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetBulkPublishDetailsCommandInput,
|
|
33
26
|
GetBulkPublishDetailsCommandOutput,
|
|
34
|
-
CognitoSyncClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class GetBulkPublishDetailsCommand extends GetBulkPublishDetailsCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
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 {
|
|
9
3
|
GetCognitoEventsRequest,
|
|
10
4
|
GetCognitoEventsResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetCognitoEventsCommandInput extends GetCognitoEventsRequest {}
|
|
15
8
|
export interface GetCognitoEventsCommandOutput
|
|
16
9
|
extends GetCognitoEventsResponse,
|
|
@@ -21,22 +14,20 @@ declare const GetCognitoEventsCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
GetCognitoEventsCommandInput,
|
|
23
16
|
GetCognitoEventsCommandOutput,
|
|
24
|
-
CognitoSyncClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: GetCognitoEventsCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
GetCognitoEventsCommandInput,
|
|
32
25
|
GetCognitoEventsCommandOutput,
|
|
33
|
-
CognitoSyncClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class GetCognitoEventsCommand extends GetCognitoEventsCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
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 {
|
|
9
3
|
GetIdentityPoolConfigurationRequest,
|
|
10
4
|
GetIdentityPoolConfigurationResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetIdentityPoolConfigurationCommandInput
|
|
15
8
|
extends GetIdentityPoolConfigurationRequest {}
|
|
16
9
|
export interface GetIdentityPoolConfigurationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetIdentityPoolConfigurationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetIdentityPoolConfigurationCommandInput,
|
|
24
17
|
GetIdentityPoolConfigurationCommandOutput,
|
|
25
|
-
CognitoSyncClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: GetIdentityPoolConfigurationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetIdentityPoolConfigurationCommandInput,
|
|
33
26
|
GetIdentityPoolConfigurationCommandOutput,
|
|
34
|
-
CognitoSyncClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class GetIdentityPoolConfigurationCommand extends GetIdentityPoolConfigurationCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -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 { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface ListDatasetsCommandInput extends ListDatasetsRequest {}
|
|
12
5
|
export interface ListDatasetsCommandOutput
|
|
13
6
|
extends ListDatasetsResponse,
|
|
@@ -18,22 +11,20 @@ declare const ListDatasetsCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
ListDatasetsCommandInput,
|
|
20
13
|
ListDatasetsCommandOutput,
|
|
21
|
-
CognitoSyncClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: ListDatasetsCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
ListDatasetsCommandInput,
|
|
29
22
|
ListDatasetsCommandOutput,
|
|
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 ListDatasetsCommand extends ListDatasetsCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
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 {
|
|
9
3
|
ListIdentityPoolUsageRequest,
|
|
10
4
|
ListIdentityPoolUsageResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListIdentityPoolUsageCommandInput
|
|
15
8
|
extends ListIdentityPoolUsageRequest {}
|
|
16
9
|
export interface ListIdentityPoolUsageCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListIdentityPoolUsageCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListIdentityPoolUsageCommandInput,
|
|
24
17
|
ListIdentityPoolUsageCommandOutput,
|
|
25
|
-
CognitoSyncClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
...[input]: [] | [ListIdentityPoolUsageCommandInput]
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListIdentityPoolUsageCommandInput,
|
|
33
26
|
ListIdentityPoolUsageCommandOutput,
|
|
34
|
-
CognitoSyncClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListIdentityPoolUsageCommand extends ListIdentityPoolUsageCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -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 { ListRecordsRequest, ListRecordsResponse } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface ListRecordsCommandInput extends ListRecordsRequest {}
|
|
12
5
|
export interface ListRecordsCommandOutput
|
|
13
6
|
extends ListRecordsResponse,
|
|
@@ -18,22 +11,20 @@ declare const ListRecordsCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
ListRecordsCommandInput,
|
|
20
13
|
ListRecordsCommandOutput,
|
|
21
|
-
CognitoSyncClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: ListRecordsCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
ListRecordsCommandInput,
|
|
29
22
|
ListRecordsCommandOutput,
|
|
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 ListRecordsCommand extends ListRecordsCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
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 {
|
|
9
3
|
RegisterDeviceRequest,
|
|
10
4
|
RegisterDeviceResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface RegisterDeviceCommandInput extends RegisterDeviceRequest {}
|
|
15
8
|
export interface RegisterDeviceCommandOutput
|
|
16
9
|
extends RegisterDeviceResponse,
|
|
@@ -21,22 +14,20 @@ declare const RegisterDeviceCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
RegisterDeviceCommandInput,
|
|
23
16
|
RegisterDeviceCommandOutput,
|
|
24
|
-
CognitoSyncClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: RegisterDeviceCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
RegisterDeviceCommandInput,
|
|
32
25
|
RegisterDeviceCommandOutput,
|
|
33
|
-
CognitoSyncClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class RegisterDeviceCommand extends RegisterDeviceCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -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 { SetCognitoEventsRequest } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface SetCognitoEventsCommandInput extends SetCognitoEventsRequest {}
|
|
12
5
|
export interface SetCognitoEventsCommandOutput extends __MetadataBearer {}
|
|
13
6
|
declare const SetCognitoEventsCommand_base: {
|
|
@@ -16,22 +9,20 @@ declare const SetCognitoEventsCommand_base: {
|
|
|
16
9
|
): import("@smithy/core/client").CommandImpl<
|
|
17
10
|
SetCognitoEventsCommandInput,
|
|
18
11
|
SetCognitoEventsCommandOutput,
|
|
19
|
-
CognitoSyncClientResolvedConfig,
|
|
20
|
-
ServiceInputTypes,
|
|
21
|
-
ServiceOutputTypes
|
|
12
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
22
15
|
>;
|
|
23
16
|
new (
|
|
24
17
|
input: SetCognitoEventsCommandInput
|
|
25
18
|
): import("@smithy/core/client").CommandImpl<
|
|
26
19
|
SetCognitoEventsCommandInput,
|
|
27
20
|
SetCognitoEventsCommandOutput,
|
|
28
|
-
CognitoSyncClientResolvedConfig,
|
|
29
|
-
ServiceInputTypes,
|
|
30
|
-
ServiceOutputTypes
|
|
21
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
31
24
|
>;
|
|
32
|
-
getEndpointParameterInstructions():
|
|
33
|
-
[x: string]: unknown;
|
|
34
|
-
};
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
35
26
|
};
|
|
36
27
|
export declare class SetCognitoEventsCommand extends SetCognitoEventsCommand_base {
|
|
37
28
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
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 {
|
|
9
3
|
SetIdentityPoolConfigurationRequest,
|
|
10
4
|
SetIdentityPoolConfigurationResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface SetIdentityPoolConfigurationCommandInput
|
|
15
8
|
extends SetIdentityPoolConfigurationRequest {}
|
|
16
9
|
export interface SetIdentityPoolConfigurationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const SetIdentityPoolConfigurationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
SetIdentityPoolConfigurationCommandInput,
|
|
24
17
|
SetIdentityPoolConfigurationCommandOutput,
|
|
25
|
-
CognitoSyncClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: SetIdentityPoolConfigurationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
SetIdentityPoolConfigurationCommandInput,
|
|
33
26
|
SetIdentityPoolConfigurationCommandOutput,
|
|
34
|
-
CognitoSyncClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class SetIdentityPoolConfigurationCommand extends SetIdentityPoolConfigurationCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
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 {
|
|
9
3
|
SubscribeToDatasetRequest,
|
|
10
4
|
SubscribeToDatasetResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface SubscribeToDatasetCommandInput
|
|
15
8
|
extends SubscribeToDatasetRequest {}
|
|
16
9
|
export interface SubscribeToDatasetCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const SubscribeToDatasetCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
SubscribeToDatasetCommandInput,
|
|
24
17
|
SubscribeToDatasetCommandOutput,
|
|
25
|
-
CognitoSyncClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: SubscribeToDatasetCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
SubscribeToDatasetCommandInput,
|
|
33
26
|
SubscribeToDatasetCommandOutput,
|
|
34
|
-
CognitoSyncClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").CognitoSyncClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class SubscribeToDatasetCommand extends SubscribeToDatasetCommand_base {
|
|
43
34
|
protected static __types: {
|