@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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/CognitoSync.d.ts +310 -90
- package/dist-types/ts3.4/CognitoSyncClient.d.ts +231 -90
- package/dist-types/ts3.4/commands/BulkPublishCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeDatasetCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeIdentityPoolUsageCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeIdentityUsageCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetBulkPublishDetailsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetCognitoEventsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetIdentityPoolConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListIdentityPoolUsageCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListRecordsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/RegisterDeviceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/SetCognitoEventsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/SetIdentityPoolConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/SubscribeToDatasetCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UnsubscribeFromDatasetCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateRecordsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +17 -17
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/CognitoSyncServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +599 -535
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +209 -53
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
}
|