Skip to main content
Go to Latest
class GetObjectCommand
extends $Command<GetObjectCommandInput, GetObjectCommandOutput, S3ClientResolvedConfig>
import { GetObjectCommand } 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, GetObjectCommand } from "@aws-sdk/client-s3"; // ES Modules import
// const { S3Client, GetObjectCommand } = require("@aws-sdk/client-s3"); // CommonJS import
const client = new S3Client(config);
const command = new GetObjectCommand(input);
const response = await client.send(command);

Constructors

new
GetObjectCommand(input: GetObjectCommandInput)

Properties

private
deserialize
private
serialize
readonly
input: GetObjectCommandInput

Methods

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

Static Methods

getEndpointParameterInstructions(): EndpointParameterInstructions