import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint"; import { Command as $Command } from "@aws-sdk/smithy-client"; import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types"; import { GetBucketLocationOutput, GetBucketLocationRequest } from "../models/models_0"; import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; /** * @public * * The input for {@link GetBucketLocationCommand}. */ export interface GetBucketLocationCommandInput extends GetBucketLocationRequest { } /** * @public * * The output of {@link GetBucketLocationCommand}. */ export interface GetBucketLocationCommandOutput extends GetBucketLocationOutput, __MetadataBearer { } /** * @public *

Returns the Region the bucket resides in. You set the bucket's Region using the * LocationConstraint request parameter in a CreateBucket * request. For more information, see CreateBucket.

*

To use this implementation of the operation, you must be the bucket owner.

*

To use this API against an access point, provide the alias of the access point in place of the bucket name.

*

The following operations are related to GetBucketLocation:

* * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { S3Client, GetBucketLocationCommand } from "@aws-sdk/client-s3"; // ES Modules import * // const { S3Client, GetBucketLocationCommand } = require("@aws-sdk/client-s3"); // CommonJS import * const client = new S3Client(config); * const input = { // GetBucketLocationRequest * Bucket: "STRING_VALUE", // required * ExpectedBucketOwner: "STRING_VALUE", * }; * const command = new GetBucketLocationCommand(input); * const response = await client.send(command); * ``` * * @param GetBucketLocationCommandInput - {@link GetBucketLocationCommandInput} * @returns {@link GetBucketLocationCommandOutput} * @see {@link GetBucketLocationCommandInput} for command's `input` shape. * @see {@link GetBucketLocationCommandOutput} for command's `response` shape. * @see {@link S3ClientResolvedConfig | config} for S3Client's `config` shape. * * * @example To get bucket location * ```javascript * // The following example returns bucket location. * const input = { * "Bucket": "examplebucket" * }; * const command = new GetBucketLocationCommand(input); * const response = await client.send(command); * /* response == * { * "LocationConstraint": "us-west-2" * } * *\/ * // example id: to-get-bucket-location-1481594573609 * ``` * */ export declare class GetBucketLocationCommand extends $Command { readonly input: GetBucketLocationCommandInput; static getEndpointParameterInstructions(): EndpointParameterInstructions; /** * @public */ constructor(input: GetBucketLocationCommandInput); /** * @internal */ resolveMiddleware(clientStack: MiddlewareStack, configuration: S3ClientResolvedConfig, options?: __HttpHandlerOptions): Handler; /** * @internal */ private serialize; /** * @internal */ private deserialize; }