{
  "Resources": {
    "ProxyMethod": {
      "Type": "AWS::ApiGateway::Method",
      "Properties": {
        "AuthorizationType": "NONE",
        "ResourceId": {
          "Fn::GetAtt": [
            "ApiGatewayRestApi",
            "RootResourceId"
          ]
        },
        "RestApiId": {
          "Ref": "ApiGatewayRestApi"
        },
        "HttpMethod": "GET",
        "MethodResponses": [
          {
            "ResponseParameters": {
              "method.response.header.Content-Type": "integration.response.header.Content-Type"
            },
            "StatusCode": 200
          }
        ],
        "Integration": {
          "IntegrationHttpMethod": "GET",
          "Type": "HTTP",
          "Uri": "https://blinkmobile.github.io/server-cli/root-route.html",
          "IntegrationResponses": [
            {
              "ResponseParameters": {
                "method.response.header.Content-Type": "integration.response.header.Content-Type"
              },
              "StatusCode": 200
            }
          ]
        }
      }
    }
  }
}
