/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The result of the query.See Also:
AWS API
* Reference
The query ID.
*/ inline const Aws::String& GetId() const{ return m_id; } /** *The query ID.
*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *The query ID.
*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *The query ID.
*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *The query ID.
*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *The query ID.
*/ inline OpsEntity& WithId(const Aws::String& value) { SetId(value); return *this;} /** *The query ID.
*/ inline OpsEntity& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *The query ID.
*/ inline OpsEntity& WithId(const char* value) { SetId(value); return *this;} /** *The data returned by the query.
*/ inline const Aws::MapThe data returned by the query.
*/ inline bool DataHasBeenSet() const { return m_dataHasBeenSet; } /** *The data returned by the query.
*/ inline void SetData(const Aws::MapThe data returned by the query.
*/ inline void SetData(Aws::MapThe data returned by the query.
*/ inline OpsEntity& WithData(const Aws::MapThe data returned by the query.
*/ inline OpsEntity& WithData(Aws::MapThe data returned by the query.
*/ inline OpsEntity& AddData(const Aws::String& key, const OpsEntityItem& value) { m_dataHasBeenSet = true; m_data.emplace(key, value); return *this; } /** *The data returned by the query.
*/ inline OpsEntity& AddData(Aws::String&& key, const OpsEntityItem& value) { m_dataHasBeenSet = true; m_data.emplace(std::move(key), value); return *this; } /** *The data returned by the query.
*/ inline OpsEntity& AddData(const Aws::String& key, OpsEntityItem&& value) { m_dataHasBeenSet = true; m_data.emplace(key, std::move(value)); return *this; } /** *The data returned by the query.
*/ inline OpsEntity& AddData(Aws::String&& key, OpsEntityItem&& value) { m_dataHasBeenSet = true; m_data.emplace(std::move(key), std::move(value)); return *this; } /** *The data returned by the query.
*/ inline OpsEntity& AddData(const char* key, OpsEntityItem&& value) { m_dataHasBeenSet = true; m_data.emplace(key, std::move(value)); return *this; } /** *The data returned by the query.
*/ inline OpsEntity& AddData(const char* key, const OpsEntityItem& value) { m_dataHasBeenSet = true; m_data.emplace(key, value); return *this; } private: Aws::String m_id; bool m_idHasBeenSet = false; Aws::Map