/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies the HTTP context to use for the test authorizer
* request.See Also:
AWS API
* Reference
The header keys and values in an HTTP authorization request.
*/ inline const Aws::MapThe header keys and values in an HTTP authorization request.
*/ inline bool HeadersHasBeenSet() const { return m_headersHasBeenSet; } /** *The header keys and values in an HTTP authorization request.
*/ inline void SetHeaders(const Aws::MapThe header keys and values in an HTTP authorization request.
*/ inline void SetHeaders(Aws::MapThe header keys and values in an HTTP authorization request.
*/ inline HttpContext& WithHeaders(const Aws::MapThe header keys and values in an HTTP authorization request.
*/ inline HttpContext& WithHeaders(Aws::MapThe header keys and values in an HTTP authorization request.
*/ inline HttpContext& AddHeaders(const Aws::String& key, const Aws::String& value) { m_headersHasBeenSet = true; m_headers.emplace(key, value); return *this; } /** *The header keys and values in an HTTP authorization request.
*/ inline HttpContext& AddHeaders(Aws::String&& key, const Aws::String& value) { m_headersHasBeenSet = true; m_headers.emplace(std::move(key), value); return *this; } /** *The header keys and values in an HTTP authorization request.
*/ inline HttpContext& AddHeaders(const Aws::String& key, Aws::String&& value) { m_headersHasBeenSet = true; m_headers.emplace(key, std::move(value)); return *this; } /** *The header keys and values in an HTTP authorization request.
*/ inline HttpContext& AddHeaders(Aws::String&& key, Aws::String&& value) { m_headersHasBeenSet = true; m_headers.emplace(std::move(key), std::move(value)); return *this; } /** *The header keys and values in an HTTP authorization request.
*/ inline HttpContext& AddHeaders(const char* key, Aws::String&& value) { m_headersHasBeenSet = true; m_headers.emplace(key, std::move(value)); return *this; } /** *The header keys and values in an HTTP authorization request.
*/ inline HttpContext& AddHeaders(Aws::String&& key, const char* value) { m_headersHasBeenSet = true; m_headers.emplace(std::move(key), value); return *this; } /** *The header keys and values in an HTTP authorization request.
*/ inline HttpContext& AddHeaders(const char* key, const char* value) { m_headersHasBeenSet = true; m_headers.emplace(key, value); return *this; } /** *The query string keys and values in an HTTP authorization request.
*/ inline const Aws::String& GetQueryString() const{ return m_queryString; } /** *The query string keys and values in an HTTP authorization request.
*/ inline bool QueryStringHasBeenSet() const { return m_queryStringHasBeenSet; } /** *The query string keys and values in an HTTP authorization request.
*/ inline void SetQueryString(const Aws::String& value) { m_queryStringHasBeenSet = true; m_queryString = value; } /** *The query string keys and values in an HTTP authorization request.
*/ inline void SetQueryString(Aws::String&& value) { m_queryStringHasBeenSet = true; m_queryString = std::move(value); } /** *The query string keys and values in an HTTP authorization request.
*/ inline void SetQueryString(const char* value) { m_queryStringHasBeenSet = true; m_queryString.assign(value); } /** *The query string keys and values in an HTTP authorization request.
*/ inline HttpContext& WithQueryString(const Aws::String& value) { SetQueryString(value); return *this;} /** *The query string keys and values in an HTTP authorization request.
*/ inline HttpContext& WithQueryString(Aws::String&& value) { SetQueryString(std::move(value)); return *this;} /** *The query string keys and values in an HTTP authorization request.
*/ inline HttpContext& WithQueryString(const char* value) { SetQueryString(value); return *this;} private: Aws::Map