UNPKG

open-next-cdk

Version:

Deploy a NextJS app using OpenNext packaging to serverless AWS using CDK

59 lines (58 loc) 2.99 kB
import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getSsecPlugin } from "@aws-sdk/middleware-ssec"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; import { SMITHY_CONTEXT_KEY, } from "@smithy/types"; import { CopyObjectOutputFilterSensitiveLog, CopyObjectRequestFilterSensitiveLog, } from "../models/models_0"; import { de_CopyObjectCommand, se_CopyObjectCommand } from "../protocols/Aws_restXml"; export { $Command }; export class CopyObjectCommand extends $Command { static getEndpointParameterInstructions() { return { Bucket: { type: "contextParams", name: "Bucket" }, ForcePathStyle: { type: "clientContextParams", name: "forcePathStyle" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, DisableMultiRegionAccessPoints: { type: "clientContextParams", name: "disableMultiregionAccessPoints" }, Accelerate: { type: "clientContextParams", name: "useAccelerateEndpoint" }, UseGlobalEndpoint: { type: "builtInParams", name: "useGlobalEndpoint" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, Endpoint: { type: "builtInParams", name: "endpoint" }, Region: { type: "builtInParams", name: "region" }, UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" }, }; } constructor(input) { super(); this.input = input; } resolveMiddleware(clientStack, configuration, options) { this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize)); this.middlewareStack.use(getEndpointPlugin(configuration, CopyObjectCommand.getEndpointParameterInstructions())); this.middlewareStack.use(getThrow200ExceptionsPlugin(configuration)); this.middlewareStack.use(getSsecPlugin(configuration)); const stack = clientStack.concat(this.middlewareStack); const { logger } = configuration; const clientName = "S3Client"; const commandName = "CopyObjectCommand"; const handlerExecutionContext = { logger, clientName, commandName, inputFilterSensitiveLog: CopyObjectRequestFilterSensitiveLog, outputFilterSensitiveLog: CopyObjectOutputFilterSensitiveLog, [SMITHY_CONTEXT_KEY]: { service: "AmazonS3", operation: "CopyObject", }, }; const { requestHandler } = configuration; return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext); } serialize(input, context) { return se_CopyObjectCommand(input, context); } deserialize(output, context) { return de_CopyObjectCommand(output, context); } }