Rocky_Mountain_Vending/.pnpm-store/v10/files/0b/713ee54ac769582f2b9ade390c12b1af8e8357b8e2f7aab48ff4da5efc203ff7e806651bc8e4c34063645d922b79a9402bdc503dd4fad0703b00a26f13855a
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

168 lines
7.3 KiB
Text

import { Command as $Command } from "@smithy/smithy-client";
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
import type { PutObjectTaggingOutput, PutObjectTaggingRequest } from "../models/models_0";
import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client";
/**
* @public
*/
export type { __MetadataBearer };
export { $Command };
/**
* @public
*
* The input for {@link PutObjectTaggingCommand}.
*/
export interface PutObjectTaggingCommandInput extends PutObjectTaggingRequest {
}
/**
* @public
*
* The output of {@link PutObjectTaggingCommand}.
*/
export interface PutObjectTaggingCommandOutput extends PutObjectTaggingOutput, __MetadataBearer {
}
declare const PutObjectTaggingCommand_base: {
new (input: PutObjectTaggingCommandInput): import("@smithy/smithy-client").CommandImpl<PutObjectTaggingCommandInput, PutObjectTaggingCommandOutput, S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
new (input: PutObjectTaggingCommandInput): import("@smithy/smithy-client").CommandImpl<PutObjectTaggingCommandInput, PutObjectTaggingCommandOutput, S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
/**
* <note>
* <p>This operation is not supported for directory buckets.</p>
* </note>
* <p>Sets the supplied tag-set to an object that already exists in a bucket. A tag is a key-value pair.
* For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-tagging.html">Object Tagging</a>.</p>
* <p>You can associate tags with an object by sending a PUT request against the tagging subresource that
* is associated with the object. You can retrieve tags by sending a GET request. For more information, see
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectTagging.html">GetObjectTagging</a>.</p>
* <p>For tagging-related restrictions related to characters and encodings, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/allocation-tag-restrictions.html">Tag
* Restrictions</a>. Note that Amazon S3 limits the maximum number of tags to 10 tags per object.</p>
* <p>To use this operation, you must have permission to perform the <code>s3:PutObjectTagging</code>
* action. By default, the bucket owner has this permission and can grant this permission to others.</p>
* <p>To put tags of any other version, use the <code>versionId</code> query parameter. You also need
* permission for the <code>s3:PutObjectVersionTagging</code> action.</p>
* <p>
* <code>PutObjectTagging</code> has the following special errors. For more Amazon S3 errors see, <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html">Error Responses</a>.</p>
* <ul>
* <li>
* <p>
* <code>InvalidTag</code> - The tag provided was not a valid tag. This error can occur if
* the tag did not pass input validation. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-tagging.html">Object Tagging</a>.</p>
* </li>
* <li>
* <p>
* <code>MalformedXML</code> - The XML provided does not match the schema.</p>
* </li>
* <li>
* <p>
* <code>OperationAborted</code> - A conflicting conditional action is currently in progress
* against this resource. Please try again.</p>
* </li>
* <li>
* <p>
* <code>InternalError</code> - The service was unable to apply the provided tag to the
* object.</p>
* </li>
* </ul>
* <p>The following operations are related to <code>PutObjectTagging</code>:</p>
* <ul>
* <li>
* <p>
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectTagging.html">GetObjectTagging</a>
* </p>
* </li>
* <li>
* <p>
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObjectTagging.html">DeleteObjectTagging</a>
* </p>
* </li>
* </ul>
* <important>
* <p>You must URL encode any signed header values that contain spaces. For example, if your header value is <code>my file.txt</code>, containing two spaces after <code>my</code>, you must URL encode this value to <code>my%20%20file.txt</code>.</p>
* </important>
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
* import { S3Client, PutObjectTaggingCommand } from "@aws-sdk/client-s3"; // ES Modules import
* // const { S3Client, PutObjectTaggingCommand } = 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 = { // PutObjectTaggingRequest
* Bucket: "STRING_VALUE", // required
* Key: "STRING_VALUE", // required
* VersionId: "STRING_VALUE",
* ContentMD5: "STRING_VALUE",
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
* Tagging: { // Tagging
* TagSet: [ // TagSet // required
* { // Tag
* Key: "STRING_VALUE", // required
* Value: "STRING_VALUE", // required
* },
* ],
* },
* ExpectedBucketOwner: "STRING_VALUE",
* RequestPayer: "requester",
* };
* const command = new PutObjectTaggingCommand(input);
* const response = await client.send(command);
* // { // PutObjectTaggingOutput
* // VersionId: "STRING_VALUE",
* // };
*
* ```
*
* @param PutObjectTaggingCommandInput - {@link PutObjectTaggingCommandInput}
* @returns {@link PutObjectTaggingCommandOutput}
* @see {@link PutObjectTaggingCommandInput} for command's `input` shape.
* @see {@link PutObjectTaggingCommandOutput} 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>
*
*
* @example To add tags to an existing object
* ```javascript
* // The following example adds tags to an existing object.
* const input = {
* Bucket: "examplebucket",
* Key: "HappyFace.jpg",
* Tagging: {
* TagSet: [
* {
* Key: "Key3",
* Value: "Value3"
* },
* {
* Key: "Key4",
* Value: "Value4"
* }
* ]
* }
* };
* const command = new PutObjectTaggingCommand(input);
* const response = await client.send(command);
* /* response is
* {
* VersionId: "null"
* }
* *\/
* ```
*
* @public
*/
export declare class PutObjectTaggingCommand extends PutObjectTaggingCommand_base {
/** @internal type navigation helper, not in runtime. */
protected static __types: {
api: {
input: PutObjectTaggingRequest;
output: PutObjectTaggingOutput;
};
sdk: {
input: PutObjectTaggingCommandInput;
output: PutObjectTaggingCommandOutput;
};
};
}