Skip to main content
Go to Latest
class PutObjectCommand
extends $Command<PutObjectCommandInput, PutObjectCommandOutput, S3ClientResolvedConfig>
import { PutObjectCommand } from "https://deno.land/x/darkflare@v6.4.0/s3/mod.ts";

Examples

Use a bare-bones client and the command you need to make an API call.

import { S3Client, PutObjectCommand } from "@aws-sdk/client-s3"; // ES Modules import
// const { S3Client, PutObjectCommand } = require("@aws-sdk/client-s3"); // CommonJS import
const client = new S3Client(config);
const command = new PutObjectCommand(input);
const response = await client.send(command);

Constructors

new
PutObjectCommand(input: PutObjectCommandInput)

Properties

private
deserialize
private
serialize
readonly
input: PutObjectCommandInput

Methods

resolveMiddleware(
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
configuration: S3ClientResolvedConfig,
options?: __HttpHandlerOptions,
): Handler<PutObjectCommandInput, PutObjectCommandOutput>

Static Methods

getEndpointParameterInstructions(): EndpointParameterInstructions