Rocky_Mountain_Vending/.pnpm-store/v10/files/49/d346d3d5f16d9fb565418406d4c5b7a3634387ae73b7c1727ef0882b2ab23bbcf6359f0bcb28eb84c54c61b232a607b6725eaaf0a17bc6419723528fc6a81d
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

77 lines
3.3 KiB
Text

import { Command as $Command } from "@smithy/smithy-client";
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
import type { GetBucketAbacOutput, GetBucketAbacRequest } from "../models/models_0";
import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client";
/**
* @public
*/
export type { __MetadataBearer };
export { $Command };
/**
* @public
*
* The input for {@link GetBucketAbacCommand}.
*/
export interface GetBucketAbacCommandInput extends GetBucketAbacRequest {
}
/**
* @public
*
* The output of {@link GetBucketAbacCommand}.
*/
export interface GetBucketAbacCommandOutput extends GetBucketAbacOutput, __MetadataBearer {
}
declare const GetBucketAbacCommand_base: {
new (input: GetBucketAbacCommandInput): import("@smithy/smithy-client").CommandImpl<GetBucketAbacCommandInput, GetBucketAbacCommandOutput, S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
new (input: GetBucketAbacCommandInput): import("@smithy/smithy-client").CommandImpl<GetBucketAbacCommandInput, GetBucketAbacCommandOutput, S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
/**
* <p>Returns the attribute-based access control (ABAC) property of the general purpose bucket. If ABAC is enabled on your bucket, you can use tags on the bucket for access control. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/buckets-tagging-enable-abac.html">Enabling ABAC in general purpose buckets</a>.</p>
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
* import { S3Client, GetBucketAbacCommand } from "@aws-sdk/client-s3"; // ES Modules import
* // const { S3Client, GetBucketAbacCommand } = require("@aws-sdk/client-s3"); // CommonJS import
* // import type { S3ClientConfig } from "@aws-sdk/client-s3";
* const config = {}; // type is S3ClientConfig
* const client = new S3Client(config);
* const input = { // GetBucketAbacRequest
* Bucket: "STRING_VALUE", // required
* ExpectedBucketOwner: "STRING_VALUE",
* };
* const command = new GetBucketAbacCommand(input);
* const response = await client.send(command);
* // { // GetBucketAbacOutput
* // AbacStatus: { // AbacStatus
* // Status: "Enabled" || "Disabled",
* // },
* // };
*
* ```
*
* @param GetBucketAbacCommandInput - {@link GetBucketAbacCommandInput}
* @returns {@link GetBucketAbacCommandOutput}
* @see {@link GetBucketAbacCommandInput} for command's `input` shape.
* @see {@link GetBucketAbacCommandOutput} for command's `response` shape.
* @see {@link S3ClientResolvedConfig | config} for S3Client's `config` shape.
*
* @throws {@link S3ServiceException}
* <p>Base exception class for all service exceptions from S3 service.</p>
*
*
* @public
*/
export declare class GetBucketAbacCommand extends GetBucketAbacCommand_base {
/** @internal type navigation helper, not in runtime. */
protected static __types: {
api: {
input: GetBucketAbacRequest;
output: GetBucketAbacOutput;
};
sdk: {
input: GetBucketAbacCommandInput;
output: GetBucketAbacCommandOutput;
};
};
}