/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace ApplicationInsights { namespace Model { class ListProblemsResult { public: AWS_APPLICATIONINSIGHTS_API ListProblemsResult(); AWS_APPLICATIONINSIGHTS_API ListProblemsResult(const Aws::AmazonWebServiceResult& result); AWS_APPLICATIONINSIGHTS_API ListProblemsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The list of problems.

*/ inline const Aws::Vector& GetProblemList() const{ return m_problemList; } /** *

The list of problems.

*/ inline void SetProblemList(const Aws::Vector& value) { m_problemList = value; } /** *

The list of problems.

*/ inline void SetProblemList(Aws::Vector&& value) { m_problemList = std::move(value); } /** *

The list of problems.

*/ inline ListProblemsResult& WithProblemList(const Aws::Vector& value) { SetProblemList(value); return *this;} /** *

The list of problems.

*/ inline ListProblemsResult& WithProblemList(Aws::Vector&& value) { SetProblemList(std::move(value)); return *this;} /** *

The list of problems.

*/ inline ListProblemsResult& AddProblemList(const Problem& value) { m_problemList.push_back(value); return *this; } /** *

The list of problems.

*/ inline ListProblemsResult& AddProblemList(Problem&& value) { m_problemList.push_back(std::move(value)); return *this; } /** *

The token used to retrieve the next page of results. This value is * null when there are no more results to return.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

The token used to retrieve the next page of results. This value is * null when there are no more results to return.

*/ inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } /** *

The token used to retrieve the next page of results. This value is * null when there are no more results to return.

*/ inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } /** *

The token used to retrieve the next page of results. This value is * null when there are no more results to return.

*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *

The token used to retrieve the next page of results. This value is * null when there are no more results to return.

*/ inline ListProblemsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

The token used to retrieve the next page of results. This value is * null when there are no more results to return.

*/ inline ListProblemsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

The token used to retrieve the next page of results. This value is * null when there are no more results to return.

*/ inline ListProblemsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

The name of the resource group.

*/ inline const Aws::String& GetResourceGroupName() const{ return m_resourceGroupName; } /** *

The name of the resource group.

*/ inline void SetResourceGroupName(const Aws::String& value) { m_resourceGroupName = value; } /** *

The name of the resource group.

*/ inline void SetResourceGroupName(Aws::String&& value) { m_resourceGroupName = std::move(value); } /** *

The name of the resource group.

*/ inline void SetResourceGroupName(const char* value) { m_resourceGroupName.assign(value); } /** *

The name of the resource group.

*/ inline ListProblemsResult& WithResourceGroupName(const Aws::String& value) { SetResourceGroupName(value); return *this;} /** *

The name of the resource group.

*/ inline ListProblemsResult& WithResourceGroupName(Aws::String&& value) { SetResourceGroupName(std::move(value)); return *this;} /** *

The name of the resource group.

*/ inline ListProblemsResult& WithResourceGroupName(const char* value) { SetResourceGroupName(value); return *this;} /** *

The AWS account ID for the resource group owner.

*/ inline const Aws::String& GetAccountId() const{ return m_accountId; } /** *

The AWS account ID for the resource group owner.

*/ inline void SetAccountId(const Aws::String& value) { m_accountId = value; } /** *

The AWS account ID for the resource group owner.

*/ inline void SetAccountId(Aws::String&& value) { m_accountId = std::move(value); } /** *

The AWS account ID for the resource group owner.

*/ inline void SetAccountId(const char* value) { m_accountId.assign(value); } /** *

The AWS account ID for the resource group owner.

*/ inline ListProblemsResult& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;} /** *

The AWS account ID for the resource group owner.

*/ inline ListProblemsResult& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;} /** *

The AWS account ID for the resource group owner.

*/ inline ListProblemsResult& WithAccountId(const char* value) { SetAccountId(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline ListProblemsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListProblemsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListProblemsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_problemList; Aws::String m_nextToken; Aws::String m_resourceGroupName; Aws::String m_accountId; Aws::String m_requestId; }; } // namespace Model } // namespace ApplicationInsights } // namespace Aws