/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace ConfigService { namespace Model { /** *

See Also:

AWS * API Reference

*/ class AWS_CONFIGSERVICE_API PutEvaluationsResult { public: PutEvaluationsResult(); PutEvaluationsResult(const Aws::AmazonWebServiceResult& result); PutEvaluationsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Requests that failed because of a client or server error.

*/ inline const Aws::Vector& GetFailedEvaluations() const{ return m_failedEvaluations; } /** *

Requests that failed because of a client or server error.

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

Requests that failed because of a client or server error.

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

Requests that failed because of a client or server error.

*/ inline PutEvaluationsResult& WithFailedEvaluations(const Aws::Vector& value) { SetFailedEvaluations(value); return *this;} /** *

Requests that failed because of a client or server error.

*/ inline PutEvaluationsResult& WithFailedEvaluations(Aws::Vector&& value) { SetFailedEvaluations(std::move(value)); return *this;} /** *

Requests that failed because of a client or server error.

*/ inline PutEvaluationsResult& AddFailedEvaluations(const Evaluation& value) { m_failedEvaluations.push_back(value); return *this; } /** *

Requests that failed because of a client or server error.

*/ inline PutEvaluationsResult& AddFailedEvaluations(Evaluation&& value) { m_failedEvaluations.push_back(std::move(value)); return *this; } private: Aws::Vector m_failedEvaluations; }; } // namespace Model } // namespace ConfigService } // namespace Aws