@aws/pdk
Version:
All documentation is located at: https://aws.github.io/aws-pdk
24 lines (23 loc) • 536 B
TypeScript
/*! Copyright [Amazon.com](http://amazon.com/), Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0 */
/**
* HTTP Methods supported by Open API v3
*/
export declare enum HttpMethods {
GET = "get",
PUT = "put",
POST = "post",
DELETE = "delete",
OPTIONS = "options",
HEAD = "head",
PATCH = "patch",
TRACE = "trace"
}
/**
* Default authorizer identifiers
*/
export declare enum DefaultAuthorizerIds {
NONE = "none",
IAM = "aws.auth.sigv4",
API_KEY = "api_key"
}