github.com/aavshr/aws-sdk-go@v1.41.3/models/apis/timestream-query/2018-11-01/api-2.json (about)

     1  {
     2    "version":"2.0",
     3    "metadata":{
     4      "apiVersion":"2018-11-01",
     5      "endpointPrefix":"query.timestream",
     6      "jsonVersion":"1.0",
     7      "protocol":"json",
     8      "serviceAbbreviation":"Timestream Query",
     9      "serviceFullName":"Amazon Timestream Query",
    10      "serviceId":"Timestream Query",
    11      "signatureVersion":"v4",
    12      "signingName":"timestream",
    13      "targetPrefix":"Timestream_20181101",
    14      "uid":"timestream-query-2018-11-01"
    15    },
    16    "operations":{
    17      "CancelQuery":{
    18        "name":"CancelQuery",
    19        "http":{
    20          "method":"POST",
    21          "requestUri":"/"
    22        },
    23        "input":{"shape":"CancelQueryRequest"},
    24        "output":{"shape":"CancelQueryResponse"},
    25        "errors":[
    26          {"shape":"AccessDeniedException"},
    27          {"shape":"InternalServerException"},
    28          {"shape":"ThrottlingException"},
    29          {"shape":"ValidationException"},
    30          {"shape":"InvalidEndpointException"}
    31        ],
    32        "endpointdiscovery":{"required":true},
    33        "idempotent":true
    34      },
    35      "DescribeEndpoints":{
    36        "name":"DescribeEndpoints",
    37        "http":{
    38          "method":"POST",
    39          "requestUri":"/"
    40        },
    41        "input":{"shape":"DescribeEndpointsRequest"},
    42        "output":{"shape":"DescribeEndpointsResponse"},
    43        "errors":[
    44          {"shape":"InternalServerException"},
    45          {"shape":"ValidationException"},
    46          {"shape":"ThrottlingException"}
    47        ],
    48        "endpointoperation":true
    49      },
    50      "Query":{
    51        "name":"Query",
    52        "http":{
    53          "method":"POST",
    54          "requestUri":"/"
    55        },
    56        "input":{"shape":"QueryRequest"},
    57        "output":{"shape":"QueryResponse"},
    58        "errors":[
    59          {"shape":"AccessDeniedException"},
    60          {"shape":"ConflictException"},
    61          {"shape":"InternalServerException"},
    62          {"shape":"QueryExecutionException"},
    63          {"shape":"ThrottlingException"},
    64          {"shape":"ValidationException"},
    65          {"shape":"InvalidEndpointException"}
    66        ],
    67        "endpointdiscovery":{"required":true},
    68        "idempotent":true
    69      }
    70    },
    71    "shapes":{
    72      "AccessDeniedException":{
    73        "type":"structure",
    74        "members":{
    75          "Message":{"shape":"ServiceErrorMessage"}
    76        },
    77        "exception":true,
    78        "synthetic":true
    79      },
    80      "CancelQueryRequest":{
    81        "type":"structure",
    82        "required":["QueryId"],
    83        "members":{
    84          "QueryId":{"shape":"QueryId"}
    85        }
    86      },
    87      "CancelQueryResponse":{
    88        "type":"structure",
    89        "members":{
    90          "CancellationMessage":{"shape":"String"}
    91        }
    92      },
    93      "ClientRequestToken":{
    94        "type":"string",
    95        "max":128,
    96        "min":32,
    97        "sensitive":true
    98      },
    99      "ColumnInfo":{
   100        "type":"structure",
   101        "required":["Type"],
   102        "members":{
   103          "Name":{"shape":"String"},
   104          "Type":{"shape":"Type"}
   105        }
   106      },
   107      "ColumnInfoList":{
   108        "type":"list",
   109        "member":{"shape":"ColumnInfo"}
   110      },
   111      "ConflictException":{
   112        "type":"structure",
   113        "members":{
   114          "Message":{"shape":"ErrorMessage"}
   115        },
   116        "exception":true
   117      },
   118      "Datum":{
   119        "type":"structure",
   120        "members":{
   121          "ScalarValue":{"shape":"ScalarValue"},
   122          "TimeSeriesValue":{"shape":"TimeSeriesDataPointList"},
   123          "ArrayValue":{"shape":"DatumList"},
   124          "RowValue":{"shape":"Row"},
   125          "NullValue":{"shape":"NullableBoolean"}
   126        }
   127      },
   128      "DatumList":{
   129        "type":"list",
   130        "member":{"shape":"Datum"}
   131      },
   132      "DescribeEndpointsRequest":{
   133        "type":"structure",
   134        "members":{
   135        }
   136      },
   137      "DescribeEndpointsResponse":{
   138        "type":"structure",
   139        "required":["Endpoints"],
   140        "members":{
   141          "Endpoints":{"shape":"Endpoints"}
   142        }
   143      },
   144      "Double":{"type":"double"},
   145      "Endpoint":{
   146        "type":"structure",
   147        "required":[
   148          "Address",
   149          "CachePeriodInMinutes"
   150        ],
   151        "members":{
   152          "Address":{"shape":"String"},
   153          "CachePeriodInMinutes":{"shape":"Long"}
   154        }
   155      },
   156      "Endpoints":{
   157        "type":"list",
   158        "member":{"shape":"Endpoint"}
   159      },
   160      "ErrorMessage":{"type":"string"},
   161      "InternalServerException":{
   162        "type":"structure",
   163        "members":{
   164          "Message":{"shape":"ErrorMessage"}
   165        },
   166        "exception":true
   167      },
   168      "InvalidEndpointException":{
   169        "type":"structure",
   170        "members":{
   171          "Message":{"shape":"ErrorMessage"}
   172        },
   173        "exception":true
   174      },
   175      "Long":{"type":"long"},
   176      "MaxQueryResults":{
   177        "type":"integer",
   178        "box":true,
   179        "max":1000,
   180        "min":1
   181      },
   182      "NullableBoolean":{
   183        "type":"boolean",
   184        "box":true
   185      },
   186      "QueryExecutionException":{
   187        "type":"structure",
   188        "members":{
   189          "Message":{"shape":"ErrorMessage"}
   190        },
   191        "exception":true
   192      },
   193      "QueryId":{
   194        "type":"string",
   195        "max":64,
   196        "min":1,
   197        "pattern":"[a-zA-Z0-9]+"
   198      },
   199      "QueryRequest":{
   200        "type":"structure",
   201        "required":["QueryString"],
   202        "members":{
   203          "QueryString":{"shape":"QueryString"},
   204          "ClientToken":{
   205            "shape":"ClientRequestToken",
   206            "idempotencyToken":true
   207          },
   208          "NextToken":{"shape":"String"},
   209          "MaxRows":{"shape":"MaxQueryResults"}
   210        }
   211      },
   212      "QueryResponse":{
   213        "type":"structure",
   214        "required":[
   215          "QueryId",
   216          "Rows",
   217          "ColumnInfo"
   218        ],
   219        "members":{
   220          "QueryId":{"shape":"QueryId"},
   221          "NextToken":{"shape":"String"},
   222          "Rows":{"shape":"RowList"},
   223          "ColumnInfo":{"shape":"ColumnInfoList"},
   224          "QueryStatus":{"shape":"QueryStatus"}
   225        }
   226      },
   227      "QueryStatus":{
   228        "type":"structure",
   229        "members":{
   230          "ProgressPercentage":{"shape":"Double"},
   231          "CumulativeBytesScanned":{"shape":"Long"},
   232          "CumulativeBytesMetered":{"shape":"Long"}
   233        }
   234      },
   235      "QueryString":{
   236        "type":"string",
   237        "sensitive":true
   238      },
   239      "Row":{
   240        "type":"structure",
   241        "required":["Data"],
   242        "members":{
   243          "Data":{"shape":"DatumList"}
   244        }
   245      },
   246      "RowList":{
   247        "type":"list",
   248        "member":{"shape":"Row"}
   249      },
   250      "ScalarType":{
   251        "type":"string",
   252        "enum":[
   253          "VARCHAR",
   254          "BOOLEAN",
   255          "BIGINT",
   256          "DOUBLE",
   257          "TIMESTAMP",
   258          "DATE",
   259          "TIME",
   260          "INTERVAL_DAY_TO_SECOND",
   261          "INTERVAL_YEAR_TO_MONTH",
   262          "UNKNOWN",
   263          "INTEGER"
   264        ]
   265      },
   266      "ScalarValue":{"type":"string"},
   267      "ServiceErrorMessage":{"type":"string"},
   268      "String":{"type":"string"},
   269      "ThrottlingException":{
   270        "type":"structure",
   271        "members":{
   272          "Message":{"shape":"ErrorMessage"}
   273        },
   274        "exception":true
   275      },
   276      "TimeSeriesDataPoint":{
   277        "type":"structure",
   278        "required":[
   279          "Time",
   280          "Value"
   281        ],
   282        "members":{
   283          "Time":{"shape":"Timestamp"},
   284          "Value":{"shape":"Datum"}
   285        }
   286      },
   287      "TimeSeriesDataPointList":{
   288        "type":"list",
   289        "member":{"shape":"TimeSeriesDataPoint"}
   290      },
   291      "Timestamp":{"type":"string"},
   292      "Type":{
   293        "type":"structure",
   294        "members":{
   295          "ScalarType":{"shape":"ScalarType"},
   296          "ArrayColumnInfo":{"shape":"ColumnInfo"},
   297          "TimeSeriesMeasureValueColumnInfo":{"shape":"ColumnInfo"},
   298          "RowColumnInfo":{"shape":"ColumnInfoList"}
   299        }
   300      },
   301      "ValidationException":{
   302        "type":"structure",
   303        "members":{
   304          "Message":{"shape":"ErrorMessage"}
   305        },
   306        "exception":true
   307      }
   308    }
   309  }