UNPKG

cdk-encrypted-secret

Version:

CDK Construct that creates an AWS Secret Manager Secret and sets the value from an encrypted Ciphertext.

23 lines (22 loc) 867 B
import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; import { commonParams } from "../endpoint/EndpointParameters"; import { de_DeleteSecretCommand, se_DeleteSecretCommand } from "../protocols/Aws_json1_1"; export { $Command }; export class DeleteSecretCommand extends $Command .classBuilder() .ep(commonParams) .m(function (Command, cs, config, o) { return [ getSerdePlugin(config, this.serialize, this.deserialize), getEndpointPlugin(config, Command.getEndpointParameterInstructions()), ]; }) .s("secretsmanager", "DeleteSecret", {}) .n("SecretsManagerClient", "DeleteSecretCommand") .f(void 0, void 0) .ser(se_DeleteSecretCommand) .de(de_DeleteSecretCommand) .build() { }