25 lines
1 KiB
JavaScript
25 lines
1 KiB
JavaScript
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
||
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
||
|
import { Command as $Command } from "@smithy/smithy-client";
|
||
|
import { commonParams } from "../endpoint/EndpointParameters";
|
||
|
import { de_GetOpenIdTokenForDeveloperIdentityCommand, se_GetOpenIdTokenForDeveloperIdentityCommand, } from "../protocols/Aws_json1_1";
|
||
|
export { $Command };
|
||
|
export class GetOpenIdTokenForDeveloperIdentityCommand extends $Command
|
||
|
.classBuilder()
|
||
|
.ep({
|
||
|
...commonParams,
|
||
|
})
|
||
|
.m(function (Command, cs, config, o) {
|
||
|
return [
|
||
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
||
|
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
||
|
];
|
||
|
})
|
||
|
.s("AWSCognitoIdentityService", "GetOpenIdTokenForDeveloperIdentity", {})
|
||
|
.n("CognitoIdentityClient", "GetOpenIdTokenForDeveloperIdentityCommand")
|
||
|
.f(void 0, void 0)
|
||
|
.ser(se_GetOpenIdTokenForDeveloperIdentityCommand)
|
||
|
.de(de_GetOpenIdTokenForDeveloperIdentityCommand)
|
||
|
.build() {
|
||
|
}
|