@aws-sdk/client-cognito-sync 3.168.0 → 3.170.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -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,90 +1,231 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
BulkPublishCommandInput,
|
|
47
|
+
BulkPublishCommandOutput,
|
|
48
|
+
} from "./commands/BulkPublishCommand";
|
|
49
|
+
import {
|
|
50
|
+
DeleteDatasetCommandInput,
|
|
51
|
+
DeleteDatasetCommandOutput,
|
|
52
|
+
} from "./commands/DeleteDatasetCommand";
|
|
53
|
+
import {
|
|
54
|
+
DescribeDatasetCommandInput,
|
|
55
|
+
DescribeDatasetCommandOutput,
|
|
56
|
+
} from "./commands/DescribeDatasetCommand";
|
|
57
|
+
import {
|
|
58
|
+
DescribeIdentityPoolUsageCommandInput,
|
|
59
|
+
DescribeIdentityPoolUsageCommandOutput,
|
|
60
|
+
} from "./commands/DescribeIdentityPoolUsageCommand";
|
|
61
|
+
import {
|
|
62
|
+
DescribeIdentityUsageCommandInput,
|
|
63
|
+
DescribeIdentityUsageCommandOutput,
|
|
64
|
+
} from "./commands/DescribeIdentityUsageCommand";
|
|
65
|
+
import {
|
|
66
|
+
GetBulkPublishDetailsCommandInput,
|
|
67
|
+
GetBulkPublishDetailsCommandOutput,
|
|
68
|
+
} from "./commands/GetBulkPublishDetailsCommand";
|
|
69
|
+
import {
|
|
70
|
+
GetCognitoEventsCommandInput,
|
|
71
|
+
GetCognitoEventsCommandOutput,
|
|
72
|
+
} from "./commands/GetCognitoEventsCommand";
|
|
73
|
+
import {
|
|
74
|
+
GetIdentityPoolConfigurationCommandInput,
|
|
75
|
+
GetIdentityPoolConfigurationCommandOutput,
|
|
76
|
+
} from "./commands/GetIdentityPoolConfigurationCommand";
|
|
77
|
+
import {
|
|
78
|
+
ListDatasetsCommandInput,
|
|
79
|
+
ListDatasetsCommandOutput,
|
|
80
|
+
} from "./commands/ListDatasetsCommand";
|
|
81
|
+
import {
|
|
82
|
+
ListIdentityPoolUsageCommandInput,
|
|
83
|
+
ListIdentityPoolUsageCommandOutput,
|
|
84
|
+
} from "./commands/ListIdentityPoolUsageCommand";
|
|
85
|
+
import {
|
|
86
|
+
ListRecordsCommandInput,
|
|
87
|
+
ListRecordsCommandOutput,
|
|
88
|
+
} from "./commands/ListRecordsCommand";
|
|
89
|
+
import {
|
|
90
|
+
RegisterDeviceCommandInput,
|
|
91
|
+
RegisterDeviceCommandOutput,
|
|
92
|
+
} from "./commands/RegisterDeviceCommand";
|
|
93
|
+
import {
|
|
94
|
+
SetCognitoEventsCommandInput,
|
|
95
|
+
SetCognitoEventsCommandOutput,
|
|
96
|
+
} from "./commands/SetCognitoEventsCommand";
|
|
97
|
+
import {
|
|
98
|
+
SetIdentityPoolConfigurationCommandInput,
|
|
99
|
+
SetIdentityPoolConfigurationCommandOutput,
|
|
100
|
+
} from "./commands/SetIdentityPoolConfigurationCommand";
|
|
101
|
+
import {
|
|
102
|
+
SubscribeToDatasetCommandInput,
|
|
103
|
+
SubscribeToDatasetCommandOutput,
|
|
104
|
+
} from "./commands/SubscribeToDatasetCommand";
|
|
105
|
+
import {
|
|
106
|
+
UnsubscribeFromDatasetCommandInput,
|
|
107
|
+
UnsubscribeFromDatasetCommandOutput,
|
|
108
|
+
} from "./commands/UnsubscribeFromDatasetCommand";
|
|
109
|
+
import {
|
|
110
|
+
UpdateRecordsCommandInput,
|
|
111
|
+
UpdateRecordsCommandOutput,
|
|
112
|
+
} from "./commands/UpdateRecordsCommand";
|
|
113
|
+
export declare type ServiceInputTypes =
|
|
114
|
+
| BulkPublishCommandInput
|
|
115
|
+
| DeleteDatasetCommandInput
|
|
116
|
+
| DescribeDatasetCommandInput
|
|
117
|
+
| DescribeIdentityPoolUsageCommandInput
|
|
118
|
+
| DescribeIdentityUsageCommandInput
|
|
119
|
+
| GetBulkPublishDetailsCommandInput
|
|
120
|
+
| GetCognitoEventsCommandInput
|
|
121
|
+
| GetIdentityPoolConfigurationCommandInput
|
|
122
|
+
| ListDatasetsCommandInput
|
|
123
|
+
| ListIdentityPoolUsageCommandInput
|
|
124
|
+
| ListRecordsCommandInput
|
|
125
|
+
| RegisterDeviceCommandInput
|
|
126
|
+
| SetCognitoEventsCommandInput
|
|
127
|
+
| SetIdentityPoolConfigurationCommandInput
|
|
128
|
+
| SubscribeToDatasetCommandInput
|
|
129
|
+
| UnsubscribeFromDatasetCommandInput
|
|
130
|
+
| UpdateRecordsCommandInput;
|
|
131
|
+
export declare type ServiceOutputTypes =
|
|
132
|
+
| BulkPublishCommandOutput
|
|
133
|
+
| DeleteDatasetCommandOutput
|
|
134
|
+
| DescribeDatasetCommandOutput
|
|
135
|
+
| DescribeIdentityPoolUsageCommandOutput
|
|
136
|
+
| DescribeIdentityUsageCommandOutput
|
|
137
|
+
| GetBulkPublishDetailsCommandOutput
|
|
138
|
+
| GetCognitoEventsCommandOutput
|
|
139
|
+
| GetIdentityPoolConfigurationCommandOutput
|
|
140
|
+
| ListDatasetsCommandOutput
|
|
141
|
+
| ListIdentityPoolUsageCommandOutput
|
|
142
|
+
| ListRecordsCommandOutput
|
|
143
|
+
| RegisterDeviceCommandOutput
|
|
144
|
+
| SetCognitoEventsCommandOutput
|
|
145
|
+
| SetIdentityPoolConfigurationCommandOutput
|
|
146
|
+
| SubscribeToDatasetCommandOutput
|
|
147
|
+
| UnsubscribeFromDatasetCommandOutput
|
|
148
|
+
| UpdateRecordsCommandOutput;
|
|
149
|
+
export interface ClientDefaults
|
|
150
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
151
|
+
requestHandler?: __HttpHandler;
|
|
152
|
+
|
|
153
|
+
sha256?: __HashConstructor;
|
|
154
|
+
|
|
155
|
+
urlParser?: __UrlParser;
|
|
156
|
+
|
|
157
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
158
|
+
|
|
159
|
+
streamCollector?: __StreamCollector;
|
|
160
|
+
|
|
161
|
+
base64Decoder?: __Decoder;
|
|
162
|
+
|
|
163
|
+
base64Encoder?: __Encoder;
|
|
164
|
+
|
|
165
|
+
utf8Decoder?: __Decoder;
|
|
166
|
+
|
|
167
|
+
utf8Encoder?: __Encoder;
|
|
168
|
+
|
|
169
|
+
runtime?: string;
|
|
170
|
+
|
|
171
|
+
disableHostPrefix?: boolean;
|
|
172
|
+
|
|
173
|
+
maxAttempts?: number | __Provider<number>;
|
|
174
|
+
|
|
175
|
+
retryMode?: string | __Provider<string>;
|
|
176
|
+
|
|
177
|
+
logger?: __Logger;
|
|
178
|
+
|
|
179
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
180
|
+
|
|
181
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
182
|
+
|
|
183
|
+
serviceId?: string;
|
|
184
|
+
|
|
185
|
+
region?: string | __Provider<string>;
|
|
186
|
+
|
|
187
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
188
|
+
|
|
189
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
190
|
+
|
|
191
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
192
|
+
|
|
193
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
194
|
+
}
|
|
195
|
+
declare type CognitoSyncClientConfigType = Partial<
|
|
196
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
197
|
+
> &
|
|
198
|
+
ClientDefaults &
|
|
199
|
+
RegionInputConfig &
|
|
200
|
+
EndpointsInputConfig &
|
|
201
|
+
RetryInputConfig &
|
|
202
|
+
HostHeaderInputConfig &
|
|
203
|
+
AwsAuthInputConfig &
|
|
204
|
+
UserAgentInputConfig;
|
|
205
|
+
|
|
206
|
+
export interface CognitoSyncClientConfig extends CognitoSyncClientConfigType {}
|
|
207
|
+
declare type CognitoSyncClientResolvedConfigType =
|
|
208
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
209
|
+
Required<ClientDefaults> &
|
|
210
|
+
RegionResolvedConfig &
|
|
211
|
+
EndpointsResolvedConfig &
|
|
212
|
+
RetryResolvedConfig &
|
|
213
|
+
HostHeaderResolvedConfig &
|
|
214
|
+
AwsAuthResolvedConfig &
|
|
215
|
+
UserAgentResolvedConfig;
|
|
216
|
+
|
|
217
|
+
export interface CognitoSyncClientResolvedConfig
|
|
218
|
+
extends CognitoSyncClientResolvedConfigType {}
|
|
219
|
+
|
|
220
|
+
export declare class CognitoSyncClient extends __Client<
|
|
221
|
+
__HttpHandlerOptions,
|
|
222
|
+
ServiceInputTypes,
|
|
223
|
+
ServiceOutputTypes,
|
|
224
|
+
CognitoSyncClientResolvedConfig
|
|
225
|
+
> {
|
|
226
|
+
readonly config: CognitoSyncClientResolvedConfig;
|
|
227
|
+
constructor(configuration: CognitoSyncClientConfig);
|
|
228
|
+
|
|
229
|
+
destroy(): void;
|
|
230
|
+
}
|
|
231
|
+
export {};
|
|
@@ -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 { BulkPublishRequest, BulkPublishResponse } from "../models/models_0";
|
|
14
|
+
export interface BulkPublishCommandInput extends BulkPublishRequest {}
|
|
15
|
+
export interface BulkPublishCommandOutput
|
|
16
|
+
extends BulkPublishResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class BulkPublishCommand extends $Command<
|
|
20
|
+
BulkPublishCommandInput,
|
|
21
|
+
BulkPublishCommandOutput,
|
|
22
|
+
CognitoSyncClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: BulkPublishCommandInput;
|
|
25
|
+
constructor(input: BulkPublishCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: CognitoSyncClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<BulkPublishCommandInput, BulkPublishCommandOutput>;
|
|
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
|
+
DeleteDatasetRequest,
|
|
15
|
+
DeleteDatasetResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteDatasetCommandInput extends DeleteDatasetRequest {}
|
|
18
|
+
export interface DeleteDatasetCommandOutput
|
|
19
|
+
extends DeleteDatasetResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DeleteDatasetCommand extends $Command<
|
|
23
|
+
DeleteDatasetCommandInput,
|
|
24
|
+
DeleteDatasetCommandOutput,
|
|
25
|
+
CognitoSyncClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteDatasetCommandInput;
|
|
28
|
+
constructor(input: DeleteDatasetCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: CognitoSyncClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DeleteDatasetCommandInput, DeleteDatasetCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -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
|
+
DescribeDatasetRequest,
|
|
15
|
+
DescribeDatasetResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeDatasetCommandInput extends DescribeDatasetRequest {}
|
|
18
|
+
export interface DescribeDatasetCommandOutput
|
|
19
|
+
extends DescribeDatasetResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DescribeDatasetCommand extends $Command<
|
|
23
|
+
DescribeDatasetCommandInput,
|
|
24
|
+
DescribeDatasetCommandOutput,
|
|
25
|
+
CognitoSyncClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeDatasetCommandInput;
|
|
28
|
+
constructor(input: DescribeDatasetCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: CognitoSyncClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeDatasetCommandInput, DescribeDatasetCommandOutput>;
|
|
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
|
+
DescribeIdentityPoolUsageRequest,
|
|
15
|
+
DescribeIdentityPoolUsageResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeIdentityPoolUsageCommandInput
|
|
18
|
+
extends DescribeIdentityPoolUsageRequest {}
|
|
19
|
+
export interface DescribeIdentityPoolUsageCommandOutput
|
|
20
|
+
extends DescribeIdentityPoolUsageResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeIdentityPoolUsageCommand extends $Command<
|
|
24
|
+
DescribeIdentityPoolUsageCommandInput,
|
|
25
|
+
DescribeIdentityPoolUsageCommandOutput,
|
|
26
|
+
CognitoSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeIdentityPoolUsageCommandInput;
|
|
29
|
+
constructor(input: DescribeIdentityPoolUsageCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CognitoSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeIdentityPoolUsageCommandInput,
|
|
37
|
+
DescribeIdentityPoolUsageCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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
|
+
DescribeIdentityUsageRequest,
|
|
15
|
+
DescribeIdentityUsageResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeIdentityUsageCommandInput
|
|
18
|
+
extends DescribeIdentityUsageRequest {}
|
|
19
|
+
export interface DescribeIdentityUsageCommandOutput
|
|
20
|
+
extends DescribeIdentityUsageResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeIdentityUsageCommand extends $Command<
|
|
24
|
+
DescribeIdentityUsageCommandInput,
|
|
25
|
+
DescribeIdentityUsageCommandOutput,
|
|
26
|
+
CognitoSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeIdentityUsageCommandInput;
|
|
29
|
+
constructor(input: DescribeIdentityUsageCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CognitoSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeIdentityUsageCommandInput,
|
|
37
|
+
DescribeIdentityUsageCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|