@aws-sdk/client-account
Version:
AWS SDK for JavaScript Account Client for Node.js, Browser and React Native
47 lines (46 loc) • 1.55 kB
TypeScript
import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
AccountClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes,
} from "../AccountClient";
import { PutContactInformationRequest } from "../models/models_0";
export { __MetadataBearer };
export { $Command };
export interface PutContactInformationCommandInput
extends PutContactInformationRequest {}
export interface PutContactInformationCommandOutput extends __MetadataBearer {}
declare const PutContactInformationCommand_base: {
new (
input: PutContactInformationCommandInput
): import("@smithy/smithy-client").CommandImpl<
PutContactInformationCommandInput,
PutContactInformationCommandOutput,
AccountClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
__0_0: PutContactInformationCommandInput
): import("@smithy/smithy-client").CommandImpl<
PutContactInformationCommandInput,
PutContactInformationCommandOutput,
AccountClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class PutContactInformationCommand extends PutContactInformationCommand_base {
protected static __types: {
api: {
input: PutContactInformationRequest;
output: {};
};
sdk: {
input: PutContactInformationCommandInput;
output: PutContactInformationCommandOutput;
};
};
}