@aws-sdk/client-cognito-identity-provider
Version:
AWS SDK for JavaScript Cognito Identity Provider Client for Node.js, Browser and React Native
48 lines (47 loc) • 1.51 kB
TypeScript
import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
CognitoIdentityProviderClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes,
} from "../CognitoIdentityProviderClient";
import { UpdateGroupRequest, UpdateGroupResponse } from "../models/models_1";
export { __MetadataBearer };
export { $Command };
export interface UpdateGroupCommandInput extends UpdateGroupRequest {}
export interface UpdateGroupCommandOutput
extends UpdateGroupResponse,
__MetadataBearer {}
declare const UpdateGroupCommand_base: {
new (
input: UpdateGroupCommandInput
): import("@smithy/smithy-client").CommandImpl<
UpdateGroupCommandInput,
UpdateGroupCommandOutput,
CognitoIdentityProviderClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
__0_0: UpdateGroupCommandInput
): import("@smithy/smithy-client").CommandImpl<
UpdateGroupCommandInput,
UpdateGroupCommandOutput,
CognitoIdentityProviderClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class UpdateGroupCommand extends UpdateGroupCommand_base {
protected static __types: {
api: {
input: UpdateGroupRequest;
output: UpdateGroupResponse;
};
sdk: {
input: UpdateGroupCommandInput;
output: UpdateGroupCommandOutput;
};
};
}