cdk-encrypted-secret
Version:
CDK Construct that creates an AWS Secret Manager Secret and sets the value from an encrypted Ciphertext.
11 lines (10 loc) • 313 B
TypeScript
import type { HttpRequest as IHttpRequest, QueryParameterBag } from "@smithy/types";
/**
* @internal
*/
export declare const moveHeadersToQuery: (request: IHttpRequest, options?: {
unhoistableHeaders?: Set<string>;
hoistableHeaders?: Set<string>;
}) => IHttpRequest & {
query: QueryParameterBag;
};