UNPKG

@pulumi/awsx

Version:

[![Actions Status](https://github.com/pulumi/pulumi-awsx/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-awsx/actions) [![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fur

13 lines (12 loc) 478 B
/** Parameter is used to define required path, query or header parameters for * API Gateway. If "ALL" or "PARAMS_ONLY" validator is set then, api gateway * will validate the parameter is included and non-blank for incoming requests. */ export interface Parameter { name: string; /** * in is where the parameter is expected to appear. API Gateway can validate * parameters expected in the path, query or header. */ in: "path" | "query" | "header"; }