@aws-sdk/client-cognito-identity-provider
Version:
AWS SDK for JavaScript Cognito Identity Provider Client for Node.js, Browser and React Native
52 lines (51 loc) • 1.79 kB
TypeScript
import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
CognitoIdentityProviderClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes,
} from "../CognitoIdentityProviderClient";
import {
AdminDisableProviderForUserRequest,
AdminDisableProviderForUserResponse,
} from "../models/models_0";
export { __MetadataBearer };
export { $Command };
export interface AdminDisableProviderForUserCommandInput
extends AdminDisableProviderForUserRequest {}
export interface AdminDisableProviderForUserCommandOutput
extends AdminDisableProviderForUserResponse,
__MetadataBearer {}
declare const AdminDisableProviderForUserCommand_base: {
new (
input: AdminDisableProviderForUserCommandInput
): import("@smithy/smithy-client").CommandImpl<
AdminDisableProviderForUserCommandInput,
AdminDisableProviderForUserCommandOutput,
CognitoIdentityProviderClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
__0_0: AdminDisableProviderForUserCommandInput
): import("@smithy/smithy-client").CommandImpl<
AdminDisableProviderForUserCommandInput,
AdminDisableProviderForUserCommandOutput,
CognitoIdentityProviderClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class AdminDisableProviderForUserCommand extends AdminDisableProviderForUserCommand_base {
protected static __types: {
api: {
input: AdminDisableProviderForUserRequest;
output: {};
};
sdk: {
input: AdminDisableProviderForUserCommandInput;
output: AdminDisableProviderForUserCommandOutput;
};
};
}