UNPKG

@aws-sdk/client-sts

Version:

AWS SDK for JavaScript Sts Client for Node.js, Browser and React Native

37 lines (36 loc) 1.16 kB
import { Command as $Command } from "@aws-sdk/smithy-client"; import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack, } from "@aws-sdk/types"; import { GetCallerIdentityRequest, GetCallerIdentityResponse, } from "../models/models_0"; import { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig, } from "../STSClient"; export interface GetCallerIdentityCommandInput extends GetCallerIdentityRequest {} export interface GetCallerIdentityCommandOutput extends GetCallerIdentityResponse, __MetadataBearer {} export declare class GetCallerIdentityCommand extends $Command< GetCallerIdentityCommandInput, GetCallerIdentityCommandOutput, STSClientResolvedConfig > { readonly input: GetCallerIdentityCommandInput; constructor(input: GetCallerIdentityCommandInput); resolveMiddleware( clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: STSClientResolvedConfig, options?: __HttpHandlerOptions ): Handler<GetCallerIdentityCommandInput, GetCallerIdentityCommandOutput>; private serialize; private deserialize; }