You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// The deployment stage of the API request (for example, Beta or Prod).
156
158
pubstage:String,
159
+
/// The full domain name used to invoke the API. This should be the same as the incoming Host header.
160
+
pubdomain_name:Option<String>,
161
+
/// The first label of the $context.domainName. This is often used as a caller/customer identifier.
162
+
pubdomain_prefix:Option<String>,
157
163
/// The ID that API Gateway assigns to the API request.
158
164
pubrequest_id:String,
159
165
/// The path to your resource. For example, for the non-proxy request URI of `https://{rest-api-id.execute-api.{region}.amazonaws.com/{stage}/root/child`, The $context.resourcePath value is /root/child.
160
166
pubresource_path:String,
167
+
/// The request protocol, for example, HTTP/1.1.
168
+
pubprotocol:Option<String>,
169
+
/// The CLF-formatted request time (dd/MMM/yyyy:HH:mm:ss +-hhmm).
170
+
pubrequest_time:Option<String>,
171
+
/// The Epoch-formatted request time, in milliseconds.
172
+
pubrequest_time_epoch:i64,
173
+
/// The identifier API Gateway assigns to your API.
174
+
pubapiid:Option<String>,
161
175
/// The HTTP method used. Valid values include: DELETE, GET, HEAD, OPTIONS, PATCH, POST, and PUT.
162
176
pubhttp_method:String,
163
177
/// The stringified value of the specified key-value pair of the context map returned from an API Gateway Lambda authorizer function.
0 commit comments