/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A collection of one or more problems, grouped by their result.See
* Also:
AWS
* API Reference
A message about the unique problems' result.
*/ inline const Aws::String& GetMessage() const{ return m_message; } /** *A message about the unique problems' result.
*/ inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; } /** *A message about the unique problems' result.
*/ inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; } /** *A message about the unique problems' result.
*/ inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); } /** *A message about the unique problems' result.
*/ inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); } /** *A message about the unique problems' result.
*/ inline UniqueProblem& WithMessage(const Aws::String& value) { SetMessage(value); return *this;} /** *A message about the unique problems' result.
*/ inline UniqueProblem& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;} /** *A message about the unique problems' result.
*/ inline UniqueProblem& WithMessage(const char* value) { SetMessage(value); return *this;} /** *Information about the problems.
*/ inline const Aws::VectorInformation about the problems.
*/ inline bool ProblemsHasBeenSet() const { return m_problemsHasBeenSet; } /** *Information about the problems.
*/ inline void SetProblems(const Aws::VectorInformation about the problems.
*/ inline void SetProblems(Aws::VectorInformation about the problems.
*/ inline UniqueProblem& WithProblems(const Aws::VectorInformation about the problems.
*/ inline UniqueProblem& WithProblems(Aws::VectorInformation about the problems.
*/ inline UniqueProblem& AddProblems(const Problem& value) { m_problemsHasBeenSet = true; m_problems.push_back(value); return *this; } /** *Information about the problems.
*/ inline UniqueProblem& AddProblems(Problem&& value) { m_problemsHasBeenSet = true; m_problems.push_back(std::move(value)); return *this; } private: Aws::String m_message; bool m_messageHasBeenSet = false; Aws::Vector