@aws-sdk/client-s3-control
Version:
AWS SDK for JavaScript S3 Control Client for Node.js, Browser and React Native
48 lines (47 loc) • 1.42 kB
TypeScript
import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import { GetBucketRequest, GetBucketResult } from "../models/models_0";
import {
S3ControlClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes,
} from "../S3ControlClient";
export { __MetadataBearer };
export { $Command };
export interface GetBucketCommandInput extends GetBucketRequest {}
export interface GetBucketCommandOutput
extends GetBucketResult,
__MetadataBearer {}
declare const GetBucketCommand_base: {
new (
input: GetBucketCommandInput
): import("@smithy/smithy-client").CommandImpl<
GetBucketCommandInput,
GetBucketCommandOutput,
S3ControlClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
__0_0: GetBucketCommandInput
): import("@smithy/smithy-client").CommandImpl<
GetBucketCommandInput,
GetBucketCommandOutput,
S3ControlClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class GetBucketCommand extends GetBucketCommand_base {
protected static __types: {
api: {
input: GetBucketRequest;
output: GetBucketResult;
};
sdk: {
input: GetBucketCommandInput;
output: GetBucketCommandOutput;
};
};
}