12 lines
474 B
JavaScript
12 lines
474 B
JavaScript
import { createAggregatedClient } from "@smithy/smithy-client";
|
|
import { CognitoIdentityClient } from "./CognitoIdentityClient";
|
|
import { GetCredentialsForIdentityCommand, } from "./commands/GetCredentialsForIdentityCommand";
|
|
import { GetIdCommand } from "./commands/GetIdCommand";
|
|
const commands = {
|
|
GetCredentialsForIdentityCommand,
|
|
GetIdCommand,
|
|
};
|
|
export class CognitoIdentity extends CognitoIdentityClient {
|
|
}
|
|
createAggregatedClient(commands, CognitoIdentity);
|