<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Arvind Sridharan</title>
    <description>The latest articles on DEV Community by Arvind Sridharan (@arvsr1988).</description>
    <link>https://dev.to/arvsr1988</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F245892%2Fc1fa7dcc-3dc1-4634-90fa-6cac6d511eff.jpeg</url>
      <title>DEV Community: Arvind Sridharan</title>
      <link>https://dev.to/arvsr1988</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/arvsr1988"/>
    <language>en</language>
    <item>
      <title>swagger definition for a http proxy integration on the AWS api gateway.</title>
      <dc:creator>Arvind Sridharan</dc:creator>
      <pubDate>Wed, 09 Oct 2019 05:57:04 +0000</pubDate>
      <link>https://dev.to/arvsr1988/swagger-definition-for-a-http-proxy-integration-on-the-aws-api-gateway-2ke7</link>
      <guid>https://dev.to/arvsr1988/swagger-definition-for-a-http-proxy-integration-on-the-aws-api-gateway-2ke7</guid>
      <description>&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;{
  "/{proxy+}": {
    "x-amazon-apigateway-any-method": {
      "produces": [
        "application/json"
      ],
      "parameters": [
        {
          "name": "proxy",
          "in": "path",
          "required": true,
          "type": "string"
        }
      ],
      "security": [],
      "responses": {},
      "x-amazon-apigateway-integration": {
        "responses": {
          "default": {
            "statusCode": "200"
          }
        },
        "requestParameters": {
          "integration.request.path.proxy": "method.request.path.proxy"
        },
        "uri": "http://endpoint-you-want-for-host-header.com/{proxy}",
        "httpMethod": "ANY",
        "passthroughBehavior": "when_no_match",
        "type": "http_proxy",
        "connectionType": "VPC_LINK",
        "connectionId": "$${stageVariables.vpcLinkId}"
      }
    }
  }
}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



</description>
      <category>aws</category>
    </item>
  </channel>
</rss>
