513 lines
16 KiB
C++
513 lines
16 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/apigateway/APIGateway_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/core/utils/DateTime.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/core/utils/memory/stl/AWSMap.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace APIGateway
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>A resource that can be distributed to callers for executing <a>Method</a>
|
|
* resources that require an API key. API keys can be mapped to any <a>Stage</a> on
|
|
* any <a>RestApi</a>, which indicates that the callers with the API key can make
|
|
* requests to that stage.</p> <div class="seeAlso"> <a
|
|
* href="https://docs.aws.amazon.com/apigateway/latest/developerguide/how-to-api-keys.html">Use
|
|
* API Keys</a> </div><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/apigateway-2015-07-09/ApiKey">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_APIGATEWAY_API ApiKey
|
|
{
|
|
public:
|
|
ApiKey();
|
|
ApiKey(Aws::Utils::Json::JsonView jsonValue);
|
|
ApiKey& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>The identifier of the API Key.</p>
|
|
*/
|
|
inline const Aws::String& GetId() const{ return m_id; }
|
|
|
|
/**
|
|
* <p>The identifier of the API Key.</p>
|
|
*/
|
|
inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The identifier of the API Key.</p>
|
|
*/
|
|
inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
|
|
|
|
/**
|
|
* <p>The identifier of the API Key.</p>
|
|
*/
|
|
inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
|
|
|
|
/**
|
|
* <p>The identifier of the API Key.</p>
|
|
*/
|
|
inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
|
|
|
|
/**
|
|
* <p>The identifier of the API Key.</p>
|
|
*/
|
|
inline ApiKey& WithId(const Aws::String& value) { SetId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The identifier of the API Key.</p>
|
|
*/
|
|
inline ApiKey& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The identifier of the API Key.</p>
|
|
*/
|
|
inline ApiKey& WithId(const char* value) { SetId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The value of the API Key.</p>
|
|
*/
|
|
inline const Aws::String& GetValue() const{ return m_value; }
|
|
|
|
/**
|
|
* <p>The value of the API Key.</p>
|
|
*/
|
|
inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The value of the API Key.</p>
|
|
*/
|
|
inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; }
|
|
|
|
/**
|
|
* <p>The value of the API Key.</p>
|
|
*/
|
|
inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); }
|
|
|
|
/**
|
|
* <p>The value of the API Key.</p>
|
|
*/
|
|
inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); }
|
|
|
|
/**
|
|
* <p>The value of the API Key.</p>
|
|
*/
|
|
inline ApiKey& WithValue(const Aws::String& value) { SetValue(value); return *this;}
|
|
|
|
/**
|
|
* <p>The value of the API Key.</p>
|
|
*/
|
|
inline ApiKey& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The value of the API Key.</p>
|
|
*/
|
|
inline ApiKey& WithValue(const char* value) { SetValue(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The name of the API Key.</p>
|
|
*/
|
|
inline const Aws::String& GetName() const{ return m_name; }
|
|
|
|
/**
|
|
* <p>The name of the API Key.</p>
|
|
*/
|
|
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the API Key.</p>
|
|
*/
|
|
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
|
|
|
|
/**
|
|
* <p>The name of the API Key.</p>
|
|
*/
|
|
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the API Key.</p>
|
|
*/
|
|
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the API Key.</p>
|
|
*/
|
|
inline ApiKey& WithName(const Aws::String& value) { SetName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the API Key.</p>
|
|
*/
|
|
inline ApiKey& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the API Key.</p>
|
|
*/
|
|
inline ApiKey& WithName(const char* value) { SetName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>An AWS Marketplace customer identifier , when integrating with the AWS SaaS
|
|
* Marketplace.</p>
|
|
*/
|
|
inline const Aws::String& GetCustomerId() const{ return m_customerId; }
|
|
|
|
/**
|
|
* <p>An AWS Marketplace customer identifier , when integrating with the AWS SaaS
|
|
* Marketplace.</p>
|
|
*/
|
|
inline bool CustomerIdHasBeenSet() const { return m_customerIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>An AWS Marketplace customer identifier , when integrating with the AWS SaaS
|
|
* Marketplace.</p>
|
|
*/
|
|
inline void SetCustomerId(const Aws::String& value) { m_customerIdHasBeenSet = true; m_customerId = value; }
|
|
|
|
/**
|
|
* <p>An AWS Marketplace customer identifier , when integrating with the AWS SaaS
|
|
* Marketplace.</p>
|
|
*/
|
|
inline void SetCustomerId(Aws::String&& value) { m_customerIdHasBeenSet = true; m_customerId = std::move(value); }
|
|
|
|
/**
|
|
* <p>An AWS Marketplace customer identifier , when integrating with the AWS SaaS
|
|
* Marketplace.</p>
|
|
*/
|
|
inline void SetCustomerId(const char* value) { m_customerIdHasBeenSet = true; m_customerId.assign(value); }
|
|
|
|
/**
|
|
* <p>An AWS Marketplace customer identifier , when integrating with the AWS SaaS
|
|
* Marketplace.</p>
|
|
*/
|
|
inline ApiKey& WithCustomerId(const Aws::String& value) { SetCustomerId(value); return *this;}
|
|
|
|
/**
|
|
* <p>An AWS Marketplace customer identifier , when integrating with the AWS SaaS
|
|
* Marketplace.</p>
|
|
*/
|
|
inline ApiKey& WithCustomerId(Aws::String&& value) { SetCustomerId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>An AWS Marketplace customer identifier , when integrating with the AWS SaaS
|
|
* Marketplace.</p>
|
|
*/
|
|
inline ApiKey& WithCustomerId(const char* value) { SetCustomerId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The description of the API Key.</p>
|
|
*/
|
|
inline const Aws::String& GetDescription() const{ return m_description; }
|
|
|
|
/**
|
|
* <p>The description of the API Key.</p>
|
|
*/
|
|
inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The description of the API Key.</p>
|
|
*/
|
|
inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
|
|
|
|
/**
|
|
* <p>The description of the API Key.</p>
|
|
*/
|
|
inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
|
|
|
|
/**
|
|
* <p>The description of the API Key.</p>
|
|
*/
|
|
inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
|
|
|
|
/**
|
|
* <p>The description of the API Key.</p>
|
|
*/
|
|
inline ApiKey& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
|
|
|
|
/**
|
|
* <p>The description of the API Key.</p>
|
|
*/
|
|
inline ApiKey& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The description of the API Key.</p>
|
|
*/
|
|
inline ApiKey& WithDescription(const char* value) { SetDescription(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Specifies whether the API Key can be used by callers.</p>
|
|
*/
|
|
inline bool GetEnabled() const{ return m_enabled; }
|
|
|
|
/**
|
|
* <p>Specifies whether the API Key can be used by callers.</p>
|
|
*/
|
|
inline bool EnabledHasBeenSet() const { return m_enabledHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Specifies whether the API Key can be used by callers.</p>
|
|
*/
|
|
inline void SetEnabled(bool value) { m_enabledHasBeenSet = true; m_enabled = value; }
|
|
|
|
/**
|
|
* <p>Specifies whether the API Key can be used by callers.</p>
|
|
*/
|
|
inline ApiKey& WithEnabled(bool value) { SetEnabled(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The timestamp when the API Key was created.</p>
|
|
*/
|
|
inline const Aws::Utils::DateTime& GetCreatedDate() const{ return m_createdDate; }
|
|
|
|
/**
|
|
* <p>The timestamp when the API Key was created.</p>
|
|
*/
|
|
inline bool CreatedDateHasBeenSet() const { return m_createdDateHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The timestamp when the API Key was created.</p>
|
|
*/
|
|
inline void SetCreatedDate(const Aws::Utils::DateTime& value) { m_createdDateHasBeenSet = true; m_createdDate = value; }
|
|
|
|
/**
|
|
* <p>The timestamp when the API Key was created.</p>
|
|
*/
|
|
inline void SetCreatedDate(Aws::Utils::DateTime&& value) { m_createdDateHasBeenSet = true; m_createdDate = std::move(value); }
|
|
|
|
/**
|
|
* <p>The timestamp when the API Key was created.</p>
|
|
*/
|
|
inline ApiKey& WithCreatedDate(const Aws::Utils::DateTime& value) { SetCreatedDate(value); return *this;}
|
|
|
|
/**
|
|
* <p>The timestamp when the API Key was created.</p>
|
|
*/
|
|
inline ApiKey& WithCreatedDate(Aws::Utils::DateTime&& value) { SetCreatedDate(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The timestamp when the API Key was last updated.</p>
|
|
*/
|
|
inline const Aws::Utils::DateTime& GetLastUpdatedDate() const{ return m_lastUpdatedDate; }
|
|
|
|
/**
|
|
* <p>The timestamp when the API Key was last updated.</p>
|
|
*/
|
|
inline bool LastUpdatedDateHasBeenSet() const { return m_lastUpdatedDateHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The timestamp when the API Key was last updated.</p>
|
|
*/
|
|
inline void SetLastUpdatedDate(const Aws::Utils::DateTime& value) { m_lastUpdatedDateHasBeenSet = true; m_lastUpdatedDate = value; }
|
|
|
|
/**
|
|
* <p>The timestamp when the API Key was last updated.</p>
|
|
*/
|
|
inline void SetLastUpdatedDate(Aws::Utils::DateTime&& value) { m_lastUpdatedDateHasBeenSet = true; m_lastUpdatedDate = std::move(value); }
|
|
|
|
/**
|
|
* <p>The timestamp when the API Key was last updated.</p>
|
|
*/
|
|
inline ApiKey& WithLastUpdatedDate(const Aws::Utils::DateTime& value) { SetLastUpdatedDate(value); return *this;}
|
|
|
|
/**
|
|
* <p>The timestamp when the API Key was last updated.</p>
|
|
*/
|
|
inline ApiKey& WithLastUpdatedDate(Aws::Utils::DateTime&& value) { SetLastUpdatedDate(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>A list of <a>Stage</a> resources that are associated with the <a>ApiKey</a>
|
|
* resource.</p>
|
|
*/
|
|
inline const Aws::Vector<Aws::String>& GetStageKeys() const{ return m_stageKeys; }
|
|
|
|
/**
|
|
* <p>A list of <a>Stage</a> resources that are associated with the <a>ApiKey</a>
|
|
* resource.</p>
|
|
*/
|
|
inline bool StageKeysHasBeenSet() const { return m_stageKeysHasBeenSet; }
|
|
|
|
/**
|
|
* <p>A list of <a>Stage</a> resources that are associated with the <a>ApiKey</a>
|
|
* resource.</p>
|
|
*/
|
|
inline void SetStageKeys(const Aws::Vector<Aws::String>& value) { m_stageKeysHasBeenSet = true; m_stageKeys = value; }
|
|
|
|
/**
|
|
* <p>A list of <a>Stage</a> resources that are associated with the <a>ApiKey</a>
|
|
* resource.</p>
|
|
*/
|
|
inline void SetStageKeys(Aws::Vector<Aws::String>&& value) { m_stageKeysHasBeenSet = true; m_stageKeys = std::move(value); }
|
|
|
|
/**
|
|
* <p>A list of <a>Stage</a> resources that are associated with the <a>ApiKey</a>
|
|
* resource.</p>
|
|
*/
|
|
inline ApiKey& WithStageKeys(const Aws::Vector<Aws::String>& value) { SetStageKeys(value); return *this;}
|
|
|
|
/**
|
|
* <p>A list of <a>Stage</a> resources that are associated with the <a>ApiKey</a>
|
|
* resource.</p>
|
|
*/
|
|
inline ApiKey& WithStageKeys(Aws::Vector<Aws::String>&& value) { SetStageKeys(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>A list of <a>Stage</a> resources that are associated with the <a>ApiKey</a>
|
|
* resource.</p>
|
|
*/
|
|
inline ApiKey& AddStageKeys(const Aws::String& value) { m_stageKeysHasBeenSet = true; m_stageKeys.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>A list of <a>Stage</a> resources that are associated with the <a>ApiKey</a>
|
|
* resource.</p>
|
|
*/
|
|
inline ApiKey& AddStageKeys(Aws::String&& value) { m_stageKeysHasBeenSet = true; m_stageKeys.push_back(std::move(value)); return *this; }
|
|
|
|
/**
|
|
* <p>A list of <a>Stage</a> resources that are associated with the <a>ApiKey</a>
|
|
* resource.</p>
|
|
*/
|
|
inline ApiKey& AddStageKeys(const char* value) { m_stageKeysHasBeenSet = true; m_stageKeys.push_back(value); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>The collection of tags. Each tag element is associated with a given
|
|
* resource.</p>
|
|
*/
|
|
inline const Aws::Map<Aws::String, Aws::String>& GetTags() const{ return m_tags; }
|
|
|
|
/**
|
|
* <p>The collection of tags. Each tag element is associated with a given
|
|
* resource.</p>
|
|
*/
|
|
inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The collection of tags. Each tag element is associated with a given
|
|
* resource.</p>
|
|
*/
|
|
inline void SetTags(const Aws::Map<Aws::String, Aws::String>& value) { m_tagsHasBeenSet = true; m_tags = value; }
|
|
|
|
/**
|
|
* <p>The collection of tags. Each tag element is associated with a given
|
|
* resource.</p>
|
|
*/
|
|
inline void SetTags(Aws::Map<Aws::String, Aws::String>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
|
|
|
|
/**
|
|
* <p>The collection of tags. Each tag element is associated with a given
|
|
* resource.</p>
|
|
*/
|
|
inline ApiKey& WithTags(const Aws::Map<Aws::String, Aws::String>& value) { SetTags(value); return *this;}
|
|
|
|
/**
|
|
* <p>The collection of tags. Each tag element is associated with a given
|
|
* resource.</p>
|
|
*/
|
|
inline ApiKey& WithTags(Aws::Map<Aws::String, Aws::String>&& value) { SetTags(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The collection of tags. Each tag element is associated with a given
|
|
* resource.</p>
|
|
*/
|
|
inline ApiKey& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; }
|
|
|
|
/**
|
|
* <p>The collection of tags. Each tag element is associated with a given
|
|
* resource.</p>
|
|
*/
|
|
inline ApiKey& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
|
|
|
|
/**
|
|
* <p>The collection of tags. Each tag element is associated with a given
|
|
* resource.</p>
|
|
*/
|
|
inline ApiKey& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
|
|
|
|
/**
|
|
* <p>The collection of tags. Each tag element is associated with a given
|
|
* resource.</p>
|
|
*/
|
|
inline ApiKey& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; }
|
|
|
|
/**
|
|
* <p>The collection of tags. Each tag element is associated with a given
|
|
* resource.</p>
|
|
*/
|
|
inline ApiKey& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
|
|
|
|
/**
|
|
* <p>The collection of tags. Each tag element is associated with a given
|
|
* resource.</p>
|
|
*/
|
|
inline ApiKey& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
|
|
|
|
/**
|
|
* <p>The collection of tags. Each tag element is associated with a given
|
|
* resource.</p>
|
|
*/
|
|
inline ApiKey& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; }
|
|
|
|
private:
|
|
|
|
Aws::String m_id;
|
|
bool m_idHasBeenSet;
|
|
|
|
Aws::String m_value;
|
|
bool m_valueHasBeenSet;
|
|
|
|
Aws::String m_name;
|
|
bool m_nameHasBeenSet;
|
|
|
|
Aws::String m_customerId;
|
|
bool m_customerIdHasBeenSet;
|
|
|
|
Aws::String m_description;
|
|
bool m_descriptionHasBeenSet;
|
|
|
|
bool m_enabled;
|
|
bool m_enabledHasBeenSet;
|
|
|
|
Aws::Utils::DateTime m_createdDate;
|
|
bool m_createdDateHasBeenSet;
|
|
|
|
Aws::Utils::DateTime m_lastUpdatedDate;
|
|
bool m_lastUpdatedDateHasBeenSet;
|
|
|
|
Aws::Vector<Aws::String> m_stageKeys;
|
|
bool m_stageKeysHasBeenSet;
|
|
|
|
Aws::Map<Aws::String, Aws::String> m_tags;
|
|
bool m_tagsHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace APIGateway
|
|
} // namespace Aws
|