@aws-sdk/client-cognito-identity 3.533.0 → 3.535.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-types/CognitoIdentity.d.ts +1 -1
- package/dist-types/CognitoIdentityClient.d.ts +1 -1
- package/dist-types/commands/CreateIdentityPoolCommand.d.ts +2 -1
- package/dist-types/commands/DeleteIdentitiesCommand.d.ts +2 -1
- package/dist-types/commands/DeleteIdentityPoolCommand.d.ts +2 -1
- package/dist-types/commands/DescribeIdentityCommand.d.ts +2 -1
- package/dist-types/commands/DescribeIdentityPoolCommand.d.ts +2 -1
- package/dist-types/commands/GetCredentialsForIdentityCommand.d.ts +2 -1
- package/dist-types/commands/GetIdCommand.d.ts +2 -1
- package/dist-types/commands/GetIdentityPoolRolesCommand.d.ts +2 -1
- package/dist-types/commands/GetOpenIdTokenCommand.d.ts +2 -1
- package/dist-types/commands/GetOpenIdTokenForDeveloperIdentityCommand.d.ts +2 -1
- package/dist-types/commands/GetPrincipalTagAttributeMapCommand.d.ts +2 -1
- package/dist-types/commands/ListIdentitiesCommand.d.ts +2 -1
- package/dist-types/commands/ListIdentityPoolsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/LookupDeveloperIdentityCommand.d.ts +2 -1
- package/dist-types/commands/MergeDeveloperIdentitiesCommand.d.ts +2 -1
- package/dist-types/commands/SetIdentityPoolRolesCommand.d.ts +2 -1
- package/dist-types/commands/SetPrincipalTagAttributeMapCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UnlinkDeveloperIdentityCommand.d.ts +2 -1
- package/dist-types/commands/UnlinkIdentityCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateIdentityPoolCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +172 -172
- package/dist-types/ts3.4/commands/CreateIdentityPoolCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteIdentitiesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteIdentityPoolCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeIdentityCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeIdentityPoolCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetCredentialsForIdentityCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetIdCommand.d.ts +7 -0
- package/dist-types/ts3.4/commands/GetIdentityPoolRolesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetOpenIdTokenCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetOpenIdTokenForDeveloperIdentityCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetPrincipalTagAttributeMapCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListIdentitiesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListIdentityPoolsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/LookupDeveloperIdentityCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/MergeDeveloperIdentitiesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/SetIdentityPoolRolesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/SetPrincipalTagAttributeMapCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UnlinkDeveloperIdentityCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UnlinkIdentityCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateIdentityPoolCommand.d.ts +9 -0
- package/package.json +41 -41
|
@@ -164,7 +164,6 @@ export interface CognitoIdentity {
|
|
|
164
164
|
updateIdentityPool(args: UpdateIdentityPoolCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateIdentityPoolCommandOutput) => void): void;
|
|
165
165
|
}
|
|
166
166
|
/**
|
|
167
|
-
* @public
|
|
168
167
|
* <fullname>Amazon Cognito Federated Identities</fullname>
|
|
169
168
|
* <p>Amazon Cognito Federated Identities is a web service that delivers scoped temporary
|
|
170
169
|
* credentials to mobile devices and other untrusted environments. It uniquely identifies a
|
|
@@ -179,6 +178,7 @@ export interface CognitoIdentity {
|
|
|
179
178
|
* <p>For a description of the authentication flow from the Amazon Cognito Developer Guide
|
|
180
179
|
* see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/authentication-flow.html">Authentication Flow</a>.</p>
|
|
181
180
|
* <p>For more information see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-identity.html">Amazon Cognito Federated Identities</a>.</p>
|
|
181
|
+
* @public
|
|
182
182
|
*/
|
|
183
183
|
export declare class CognitoIdentity extends CognitoIdentityClient implements CognitoIdentity {
|
|
184
184
|
}
|
|
@@ -174,7 +174,6 @@ export type CognitoIdentityClientResolvedConfigType = __SmithyResolvedConfigurat
|
|
|
174
174
|
export interface CognitoIdentityClientResolvedConfig extends CognitoIdentityClientResolvedConfigType {
|
|
175
175
|
}
|
|
176
176
|
/**
|
|
177
|
-
* @public
|
|
178
177
|
* <fullname>Amazon Cognito Federated Identities</fullname>
|
|
179
178
|
* <p>Amazon Cognito Federated Identities is a web service that delivers scoped temporary
|
|
180
179
|
* credentials to mobile devices and other untrusted environments. It uniquely identifies a
|
|
@@ -189,6 +188,7 @@ export interface CognitoIdentityClientResolvedConfig extends CognitoIdentityClie
|
|
|
189
188
|
* <p>For a description of the authentication flow from the Amazon Cognito Developer Guide
|
|
190
189
|
* see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/authentication-flow.html">Authentication Flow</a>.</p>
|
|
191
190
|
* <p>For more information see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-identity.html">Amazon Cognito Federated Identities</a>.</p>
|
|
191
|
+
* @public
|
|
192
192
|
*/
|
|
193
193
|
export declare class CognitoIdentityClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, CognitoIdentityClientResolvedConfig> {
|
|
194
194
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CreateIdentityPoolCommandOutput extends IdentityPool, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateIdentityPoolCommand_base: {
|
|
24
24
|
new (input: CreateIdentityPoolCommandInput): import("@smithy/smithy-client").CommandImpl<CreateIdentityPoolCommandInput, CreateIdentityPoolCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateIdentityPoolCommandInput): import("@smithy/smithy-client").CommandImpl<CreateIdentityPoolCommandInput, CreateIdentityPoolCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a new identity pool. The identity pool is a store of user identity
|
|
30
30
|
* information that is specific to your AWS account. The keys for <code>SupportedLoginProviders</code> are as follows:</p>
|
|
31
31
|
*
|
|
@@ -143,6 +143,7 @@ declare const CreateIdentityPoolCommand_base: {
|
|
|
143
143
|
* @throws {@link CognitoIdentityServiceException}
|
|
144
144
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
145
145
|
*
|
|
146
|
+
* @public
|
|
146
147
|
*/
|
|
147
148
|
export declare class CreateIdentityPoolCommand extends CreateIdentityPoolCommand_base {
|
|
148
149
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteIdentitiesCommandOutput extends DeleteIdentitiesResponse,
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteIdentitiesCommand_base: {
|
|
24
24
|
new (input: DeleteIdentitiesCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteIdentitiesCommandInput, DeleteIdentitiesCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteIdentitiesCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteIdentitiesCommandInput, DeleteIdentitiesCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes identities from an identity pool. You can specify a list of 1-60 identities
|
|
30
30
|
* that you want to delete.</p>
|
|
31
31
|
* <p>You must use AWS Developer credentials to call this API.</p>
|
|
@@ -71,6 +71,7 @@ declare const DeleteIdentitiesCommand_base: {
|
|
|
71
71
|
* @throws {@link CognitoIdentityServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
73
73
|
*
|
|
74
|
+
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class DeleteIdentitiesCommand extends DeleteIdentitiesCommand_base {
|
|
76
77
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteIdentityPoolCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteIdentityPoolCommand_base: {
|
|
24
24
|
new (input: DeleteIdentityPoolCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteIdentityPoolCommandInput, DeleteIdentityPoolCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteIdentityPoolCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteIdentityPoolCommandInput, DeleteIdentityPoolCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes an identity pool. Once a pool is deleted, users will not be able to
|
|
30
30
|
* authenticate with the pool.</p>
|
|
31
31
|
* <p>You must use AWS Developer credentials to call this API.</p>
|
|
@@ -69,6 +69,7 @@ declare const DeleteIdentityPoolCommand_base: {
|
|
|
69
69
|
* @throws {@link CognitoIdentityServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class DeleteIdentityPoolCommand extends DeleteIdentityPoolCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeIdentityCommandOutput extends IdentityDescription, __Me
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeIdentityCommand_base: {
|
|
24
24
|
new (input: DescribeIdentityCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeIdentityCommandInput, DescribeIdentityCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeIdentityCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeIdentityCommandInput, DescribeIdentityCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns metadata related to the given identity, including when the identity was
|
|
30
30
|
* created and any associated linked logins.</p>
|
|
31
31
|
* <p>You must use AWS Developer credentials to call this API.</p>
|
|
@@ -76,6 +76,7 @@ declare const DescribeIdentityCommand_base: {
|
|
|
76
76
|
* @throws {@link CognitoIdentityServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
78
78
|
*
|
|
79
|
+
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class DescribeIdentityCommand extends DescribeIdentityCommand_base {
|
|
81
82
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeIdentityPoolCommandOutput extends IdentityPool, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeIdentityPoolCommand_base: {
|
|
24
24
|
new (input: DescribeIdentityPoolCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeIdentityPoolCommandInput, DescribeIdentityPoolCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeIdentityPoolCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeIdentityPoolCommandInput, DescribeIdentityPoolCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets details about a particular identity pool, including the pool name, ID
|
|
30
30
|
* description, creation date, and current number of users.</p>
|
|
31
31
|
* <p>You must use AWS Developer credentials to call this API.</p>
|
|
@@ -94,6 +94,7 @@ declare const DescribeIdentityPoolCommand_base: {
|
|
|
94
94
|
* @throws {@link CognitoIdentityServiceException}
|
|
95
95
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
96
96
|
*
|
|
97
|
+
* @public
|
|
97
98
|
*/
|
|
98
99
|
export declare class DescribeIdentityPoolCommand extends DescribeIdentityPoolCommand_base {
|
|
99
100
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetCredentialsForIdentityCommandOutput extends GetCredentialsFo
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetCredentialsForIdentityCommand_base: {
|
|
24
24
|
new (input: GetCredentialsForIdentityCommandInput): import("@smithy/smithy-client").CommandImpl<GetCredentialsForIdentityCommandInput, GetCredentialsForIdentityCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetCredentialsForIdentityCommandInput): import("@smithy/smithy-client").CommandImpl<GetCredentialsForIdentityCommandInput, GetCredentialsForIdentityCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns credentials for the provided identity ID. Any provided logins will be
|
|
30
30
|
* validated against supported login providers. If the token is for
|
|
31
31
|
* cognito-identity.amazonaws.com, it will be passed through to AWS Security Token Service
|
|
@@ -95,6 +95,7 @@ declare const GetCredentialsForIdentityCommand_base: {
|
|
|
95
95
|
* @throws {@link CognitoIdentityServiceException}
|
|
96
96
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
97
97
|
*
|
|
98
|
+
* @public
|
|
98
99
|
*/
|
|
99
100
|
export declare class GetCredentialsForIdentityCommand extends GetCredentialsForIdentityCommand_base {
|
|
100
101
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetIdCommandOutput extends GetIdResponse, __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetIdCommand_base: {
|
|
24
24
|
new (input: GetIdCommandInput): import("@smithy/smithy-client").CommandImpl<GetIdCommandInput, GetIdCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetIdCommandInput): import("@smithy/smithy-client").CommandImpl<GetIdCommandInput, GetIdCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Generates (or retrieves) a Cognito ID. Supplying multiple logins will create an
|
|
30
30
|
* implicit linked account.</p>
|
|
31
31
|
* <p>This is a public API. You do not need any credentials to call this API.</p>
|
|
@@ -86,6 +86,7 @@ declare const GetIdCommand_base: {
|
|
|
86
86
|
* @throws {@link CognitoIdentityServiceException}
|
|
87
87
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
88
88
|
*
|
|
89
|
+
* @public
|
|
89
90
|
*/
|
|
90
91
|
export declare class GetIdCommand extends GetIdCommand_base {
|
|
91
92
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetIdentityPoolRolesCommandOutput extends GetIdentityPoolRolesR
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetIdentityPoolRolesCommand_base: {
|
|
24
24
|
new (input: GetIdentityPoolRolesCommandInput): import("@smithy/smithy-client").CommandImpl<GetIdentityPoolRolesCommandInput, GetIdentityPoolRolesCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetIdentityPoolRolesCommandInput): import("@smithy/smithy-client").CommandImpl<GetIdentityPoolRolesCommandInput, GetIdentityPoolRolesCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets the roles for an identity pool.</p>
|
|
30
30
|
* <p>You must use AWS Developer credentials to call this API.</p>
|
|
31
31
|
* @example
|
|
@@ -93,6 +93,7 @@ declare const GetIdentityPoolRolesCommand_base: {
|
|
|
93
93
|
* @throws {@link CognitoIdentityServiceException}
|
|
94
94
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
95
95
|
*
|
|
96
|
+
* @public
|
|
96
97
|
*/
|
|
97
98
|
export declare class GetIdentityPoolRolesCommand extends GetIdentityPoolRolesCommand_base {
|
|
98
99
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetOpenIdTokenCommandOutput extends GetOpenIdTokenResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetOpenIdTokenCommand_base: {
|
|
24
24
|
new (input: GetOpenIdTokenCommandInput): import("@smithy/smithy-client").CommandImpl<GetOpenIdTokenCommandInput, GetOpenIdTokenCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetOpenIdTokenCommandInput): import("@smithy/smithy-client").CommandImpl<GetOpenIdTokenCommandInput, GetOpenIdTokenCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets an OpenID token, using a known Cognito ID. This known Cognito ID is returned by
|
|
30
30
|
* <a>GetId</a>. You can optionally add additional logins for the identity.
|
|
31
31
|
* Supplying multiple logins creates an implicit link.</p>
|
|
@@ -85,6 +85,7 @@ declare const GetOpenIdTokenCommand_base: {
|
|
|
85
85
|
* @throws {@link CognitoIdentityServiceException}
|
|
86
86
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
87
87
|
*
|
|
88
|
+
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class GetOpenIdTokenCommand extends GetOpenIdTokenCommand_base {
|
|
90
91
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetOpenIdTokenForDeveloperIdentityCommandOutput extends GetOpen
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetOpenIdTokenForDeveloperIdentityCommand_base: {
|
|
24
24
|
new (input: GetOpenIdTokenForDeveloperIdentityCommandInput): import("@smithy/smithy-client").CommandImpl<GetOpenIdTokenForDeveloperIdentityCommandInput, GetOpenIdTokenForDeveloperIdentityCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetOpenIdTokenForDeveloperIdentityCommandInput): import("@smithy/smithy-client").CommandImpl<GetOpenIdTokenForDeveloperIdentityCommandInput, GetOpenIdTokenForDeveloperIdentityCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Registers (or retrieves) a Cognito <code>IdentityId</code> and an OpenID Connect
|
|
30
30
|
* token for a user authenticated by your backend authentication process. Supplying multiple
|
|
31
31
|
* logins will create an implicit linked account. You can only specify one developer provider
|
|
@@ -98,6 +98,7 @@ declare const GetOpenIdTokenForDeveloperIdentityCommand_base: {
|
|
|
98
98
|
* @throws {@link CognitoIdentityServiceException}
|
|
99
99
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
100
100
|
*
|
|
101
|
+
* @public
|
|
101
102
|
*/
|
|
102
103
|
export declare class GetOpenIdTokenForDeveloperIdentityCommand extends GetOpenIdTokenForDeveloperIdentityCommand_base {
|
|
103
104
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetPrincipalTagAttributeMapCommandOutput extends GetPrincipalTa
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetPrincipalTagAttributeMapCommand_base: {
|
|
24
24
|
new (input: GetPrincipalTagAttributeMapCommandInput): import("@smithy/smithy-client").CommandImpl<GetPrincipalTagAttributeMapCommandInput, GetPrincipalTagAttributeMapCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetPrincipalTagAttributeMapCommandInput): import("@smithy/smithy-client").CommandImpl<GetPrincipalTagAttributeMapCommandInput, GetPrincipalTagAttributeMapCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Use <code>GetPrincipalTagAttributeMap</code> to list all mappings between <code>PrincipalTags</code> and user attributes.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -75,6 +75,7 @@ declare const GetPrincipalTagAttributeMapCommand_base: {
|
|
|
75
75
|
* @throws {@link CognitoIdentityServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class GetPrincipalTagAttributeMapCommand extends GetPrincipalTagAttributeMapCommand_base {
|
|
80
81
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListIdentitiesCommandOutput extends ListIdentitiesResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListIdentitiesCommand_base: {
|
|
24
24
|
new (input: ListIdentitiesCommandInput): import("@smithy/smithy-client").CommandImpl<ListIdentitiesCommandInput, ListIdentitiesCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListIdentitiesCommandInput): import("@smithy/smithy-client").CommandImpl<ListIdentitiesCommandInput, ListIdentitiesCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the identities in an identity pool.</p>
|
|
30
30
|
* <p>You must use AWS Developer credentials to call this API.</p>
|
|
31
31
|
* @example
|
|
@@ -84,6 +84,7 @@ declare const ListIdentitiesCommand_base: {
|
|
|
84
84
|
* @throws {@link CognitoIdentityServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
86
86
|
*
|
|
87
|
+
* @public
|
|
87
88
|
*/
|
|
88
89
|
export declare class ListIdentitiesCommand extends ListIdentitiesCommand_base {
|
|
89
90
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListIdentityPoolsCommandOutput extends ListIdentityPoolsRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListIdentityPoolsCommand_base: {
|
|
24
24
|
new (input: ListIdentityPoolsCommandInput): import("@smithy/smithy-client").CommandImpl<ListIdentityPoolsCommandInput, ListIdentityPoolsCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListIdentityPoolsCommandInput): import("@smithy/smithy-client").CommandImpl<ListIdentityPoolsCommandInput, ListIdentityPoolsCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all of the Cognito identity pools registered for your account.</p>
|
|
30
30
|
* <p>You must use AWS Developer credentials to call this API.</p>
|
|
31
31
|
* @example
|
|
@@ -77,6 +77,7 @@ declare const ListIdentityPoolsCommand_base: {
|
|
|
77
77
|
* @throws {@link CognitoIdentityServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
79
79
|
*
|
|
80
|
+
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class ListIdentityPoolsCommand extends ListIdentityPoolsCommand_base {
|
|
82
83
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the tags that are assigned to an Amazon Cognito identity pool.</p>
|
|
30
30
|
* <p>A tag is a label that you can apply to identity pools to categorize and manage them in
|
|
31
31
|
* different ways, such as by purpose, owner, environment, or other criteria.</p>
|
|
@@ -74,6 +74,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
74
74
|
* @throws {@link CognitoIdentityServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
76
76
|
*
|
|
77
|
+
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
79
80
|
}
|
|
@@ -22,10 +22,10 @@ export interface LookupDeveloperIdentityCommandOutput extends LookupDeveloperIde
|
|
|
22
22
|
}
|
|
23
23
|
declare const LookupDeveloperIdentityCommand_base: {
|
|
24
24
|
new (input: LookupDeveloperIdentityCommandInput): import("@smithy/smithy-client").CommandImpl<LookupDeveloperIdentityCommandInput, LookupDeveloperIdentityCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: LookupDeveloperIdentityCommandInput): import("@smithy/smithy-client").CommandImpl<LookupDeveloperIdentityCommandInput, LookupDeveloperIdentityCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieves the <code>IdentityID</code> associated with a
|
|
30
30
|
* <code>DeveloperUserIdentifier</code> or the list of <code>DeveloperUserIdentifier</code>
|
|
31
31
|
* values associated with an <code>IdentityId</code> for an existing identity. Either
|
|
@@ -97,6 +97,7 @@ declare const LookupDeveloperIdentityCommand_base: {
|
|
|
97
97
|
* @throws {@link CognitoIdentityServiceException}
|
|
98
98
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
99
99
|
*
|
|
100
|
+
* @public
|
|
100
101
|
*/
|
|
101
102
|
export declare class LookupDeveloperIdentityCommand extends LookupDeveloperIdentityCommand_base {
|
|
102
103
|
}
|
|
@@ -22,10 +22,10 @@ export interface MergeDeveloperIdentitiesCommandOutput extends MergeDeveloperIde
|
|
|
22
22
|
}
|
|
23
23
|
declare const MergeDeveloperIdentitiesCommand_base: {
|
|
24
24
|
new (input: MergeDeveloperIdentitiesCommandInput): import("@smithy/smithy-client").CommandImpl<MergeDeveloperIdentitiesCommandInput, MergeDeveloperIdentitiesCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: MergeDeveloperIdentitiesCommandInput): import("@smithy/smithy-client").CommandImpl<MergeDeveloperIdentitiesCommandInput, MergeDeveloperIdentitiesCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Merges two users having different <code>IdentityId</code>s, existing in the same
|
|
30
30
|
* identity pool, and identified by the same developer provider. You can use this action to
|
|
31
31
|
* request that discrete users be merged and identified as a single user in the Cognito
|
|
@@ -88,6 +88,7 @@ declare const MergeDeveloperIdentitiesCommand_base: {
|
|
|
88
88
|
* @throws {@link CognitoIdentityServiceException}
|
|
89
89
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
90
90
|
*
|
|
91
|
+
* @public
|
|
91
92
|
*/
|
|
92
93
|
export declare class MergeDeveloperIdentitiesCommand extends MergeDeveloperIdentitiesCommand_base {
|
|
93
94
|
}
|
|
@@ -22,10 +22,10 @@ export interface SetIdentityPoolRolesCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const SetIdentityPoolRolesCommand_base: {
|
|
24
24
|
new (input: SetIdentityPoolRolesCommandInput): import("@smithy/smithy-client").CommandImpl<SetIdentityPoolRolesCommandInput, SetIdentityPoolRolesCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: SetIdentityPoolRolesCommandInput): import("@smithy/smithy-client").CommandImpl<SetIdentityPoolRolesCommandInput, SetIdentityPoolRolesCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Sets the roles for an identity pool. These roles are used when making calls to <a>GetCredentialsForIdentity</a> action.</p>
|
|
30
30
|
* <p>You must use AWS Developer credentials to call this API.</p>
|
|
31
31
|
* @example
|
|
@@ -94,6 +94,7 @@ declare const SetIdentityPoolRolesCommand_base: {
|
|
|
94
94
|
* @throws {@link CognitoIdentityServiceException}
|
|
95
95
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
96
96
|
*
|
|
97
|
+
* @public
|
|
97
98
|
*/
|
|
98
99
|
export declare class SetIdentityPoolRolesCommand extends SetIdentityPoolRolesCommand_base {
|
|
99
100
|
}
|
|
@@ -22,10 +22,10 @@ export interface SetPrincipalTagAttributeMapCommandOutput extends SetPrincipalTa
|
|
|
22
22
|
}
|
|
23
23
|
declare const SetPrincipalTagAttributeMapCommand_base: {
|
|
24
24
|
new (input: SetPrincipalTagAttributeMapCommandInput): import("@smithy/smithy-client").CommandImpl<SetPrincipalTagAttributeMapCommandInput, SetPrincipalTagAttributeMapCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: SetPrincipalTagAttributeMapCommandInput): import("@smithy/smithy-client").CommandImpl<SetPrincipalTagAttributeMapCommandInput, SetPrincipalTagAttributeMapCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>You can use this operation to use default (username and clientID) attribute or custom attribute mappings.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -79,6 +79,7 @@ declare const SetPrincipalTagAttributeMapCommand_base: {
|
|
|
79
79
|
* @throws {@link CognitoIdentityServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class SetPrincipalTagAttributeMapCommand extends SetPrincipalTagAttributeMapCommand_base {
|
|
84
85
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Assigns a set of tags to the specified Amazon Cognito identity pool. A tag is a label
|
|
30
30
|
* that you can use to categorize and manage identity pools in different ways, such as by
|
|
31
31
|
* purpose, owner, environment, or other criteria.</p>
|
|
@@ -84,6 +84,7 @@ declare const TagResourceCommand_base: {
|
|
|
84
84
|
* @throws {@link CognitoIdentityServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
86
86
|
*
|
|
87
|
+
* @public
|
|
87
88
|
*/
|
|
88
89
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
89
90
|
}
|
|
@@ -22,10 +22,10 @@ export interface UnlinkDeveloperIdentityCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const UnlinkDeveloperIdentityCommand_base: {
|
|
24
24
|
new (input: UnlinkDeveloperIdentityCommandInput): import("@smithy/smithy-client").CommandImpl<UnlinkDeveloperIdentityCommandInput, UnlinkDeveloperIdentityCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UnlinkDeveloperIdentityCommandInput): import("@smithy/smithy-client").CommandImpl<UnlinkDeveloperIdentityCommandInput, UnlinkDeveloperIdentityCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Unlinks a <code>DeveloperUserIdentifier</code> from an existing identity. Unlinked
|
|
30
30
|
* developer users will be considered new identities next time they are seen. If, for a given
|
|
31
31
|
* Cognito identity, you remove all federated identities as well as the developer user
|
|
@@ -78,6 +78,7 @@ declare const UnlinkDeveloperIdentityCommand_base: {
|
|
|
78
78
|
* @throws {@link CognitoIdentityServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
80
80
|
*
|
|
81
|
+
* @public
|
|
81
82
|
*/
|
|
82
83
|
export declare class UnlinkDeveloperIdentityCommand extends UnlinkDeveloperIdentityCommand_base {
|
|
83
84
|
}
|
|
@@ -22,10 +22,10 @@ export interface UnlinkIdentityCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const UnlinkIdentityCommand_base: {
|
|
24
24
|
new (input: UnlinkIdentityCommandInput): import("@smithy/smithy-client").CommandImpl<UnlinkIdentityCommandInput, UnlinkIdentityCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UnlinkIdentityCommandInput): import("@smithy/smithy-client").CommandImpl<UnlinkIdentityCommandInput, UnlinkIdentityCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Unlinks a federated identity from an existing account. Unlinked logins will be
|
|
30
30
|
* considered new identities next time they are seen. Removing the last linked login will make
|
|
31
31
|
* this identity inaccessible.</p>
|
|
@@ -84,6 +84,7 @@ declare const UnlinkIdentityCommand_base: {
|
|
|
84
84
|
* @throws {@link CognitoIdentityServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
86
86
|
*
|
|
87
|
+
* @public
|
|
87
88
|
*/
|
|
88
89
|
export declare class UnlinkIdentityCommand extends UnlinkIdentityCommand_base {
|
|
89
90
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes the specified tags from the specified Amazon Cognito identity pool. You can use
|
|
30
30
|
* this action up to 5 times per second, per account</p>
|
|
31
31
|
* @example
|
|
@@ -71,6 +71,7 @@ declare const UntagResourceCommand_base: {
|
|
|
71
71
|
* @throws {@link CognitoIdentityServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
73
73
|
*
|
|
74
|
+
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
76
77
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateIdentityPoolCommandOutput extends IdentityPool, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateIdentityPoolCommand_base: {
|
|
24
24
|
new (input: UpdateIdentityPoolCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateIdentityPoolCommandInput, UpdateIdentityPoolCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateIdentityPoolCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateIdentityPoolCommandInput, UpdateIdentityPoolCommandOutput, CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates an identity pool.</p>
|
|
30
30
|
* <p>You must use AWS Developer credentials to call this API.</p>
|
|
31
31
|
* @example
|
|
@@ -126,6 +126,7 @@ declare const UpdateIdentityPoolCommand_base: {
|
|
|
126
126
|
* @throws {@link CognitoIdentityServiceException}
|
|
127
127
|
* <p>Base exception class for all service exceptions from CognitoIdentity service.</p>
|
|
128
128
|
*
|
|
129
|
+
* @public
|
|
129
130
|
*/
|
|
130
131
|
export declare class UpdateIdentityPoolCommand extends UpdateIdentityPoolCommand_base {
|
|
131
132
|
}
|