/** * 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 { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace mgn { namespace Model { /** *

The request could not be completed due to a conflict with the current state * of the target resource.

See Also:

AWS * API Reference

*/ class ConflictException { public: AWS_MGN_API ConflictException(); AWS_MGN_API ConflictException(Aws::Utils::Json::JsonView jsonValue); AWS_MGN_API ConflictException& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_MGN_API Aws::Utils::Json::JsonValue Jsonize() const; inline const Aws::String& GetCode() const{ return m_code; } inline bool CodeHasBeenSet() const { return m_codeHasBeenSet; } inline void SetCode(const Aws::String& value) { m_codeHasBeenSet = true; m_code = value; } inline void SetCode(Aws::String&& value) { m_codeHasBeenSet = true; m_code = std::move(value); } inline void SetCode(const char* value) { m_codeHasBeenSet = true; m_code.assign(value); } inline ConflictException& WithCode(const Aws::String& value) { SetCode(value); return *this;} inline ConflictException& WithCode(Aws::String&& value) { SetCode(std::move(value)); return *this;} inline ConflictException& WithCode(const char* value) { SetCode(value); return *this;} /** *

Conflict Exception specific errors.

*/ inline const Aws::Vector& GetErrors() const{ return m_errors; } /** *

Conflict Exception specific errors.

*/ inline bool ErrorsHasBeenSet() const { return m_errorsHasBeenSet; } /** *

Conflict Exception specific errors.

*/ inline void SetErrors(const Aws::Vector& value) { m_errorsHasBeenSet = true; m_errors = value; } /** *

Conflict Exception specific errors.

*/ inline void SetErrors(Aws::Vector&& value) { m_errorsHasBeenSet = true; m_errors = std::move(value); } /** *

Conflict Exception specific errors.

*/ inline ConflictException& WithErrors(const Aws::Vector& value) { SetErrors(value); return *this;} /** *

Conflict Exception specific errors.

*/ inline ConflictException& WithErrors(Aws::Vector&& value) { SetErrors(std::move(value)); return *this;} /** *

Conflict Exception specific errors.

*/ inline ConflictException& AddErrors(const ErrorDetails& value) { m_errorsHasBeenSet = true; m_errors.push_back(value); return *this; } /** *

Conflict Exception specific errors.

*/ inline ConflictException& AddErrors(ErrorDetails&& value) { m_errorsHasBeenSet = true; m_errors.push_back(std::move(value)); return *this; } inline const Aws::String& GetMessage() const{ return m_message; } inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; } inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; } inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); } inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); } inline ConflictException& WithMessage(const Aws::String& value) { SetMessage(value); return *this;} inline ConflictException& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;} inline ConflictException& WithMessage(const char* value) { SetMessage(value); return *this;} /** *

A conflict occurred when prompting for the Resource ID.

*/ inline const Aws::String& GetResourceId() const{ return m_resourceId; } /** *

A conflict occurred when prompting for the Resource ID.

*/ inline bool ResourceIdHasBeenSet() const { return m_resourceIdHasBeenSet; } /** *

A conflict occurred when prompting for the Resource ID.

*/ inline void SetResourceId(const Aws::String& value) { m_resourceIdHasBeenSet = true; m_resourceId = value; } /** *

A conflict occurred when prompting for the Resource ID.

*/ inline void SetResourceId(Aws::String&& value) { m_resourceIdHasBeenSet = true; m_resourceId = std::move(value); } /** *

A conflict occurred when prompting for the Resource ID.

*/ inline void SetResourceId(const char* value) { m_resourceIdHasBeenSet = true; m_resourceId.assign(value); } /** *

A conflict occurred when prompting for the Resource ID.

*/ inline ConflictException& WithResourceId(const Aws::String& value) { SetResourceId(value); return *this;} /** *

A conflict occurred when prompting for the Resource ID.

*/ inline ConflictException& WithResourceId(Aws::String&& value) { SetResourceId(std::move(value)); return *this;} /** *

A conflict occurred when prompting for the Resource ID.

*/ inline ConflictException& WithResourceId(const char* value) { SetResourceId(value); return *this;} /** *

A conflict occurred when prompting for resource type.

*/ inline const Aws::String& GetResourceType() const{ return m_resourceType; } /** *

A conflict occurred when prompting for resource type.

*/ inline bool ResourceTypeHasBeenSet() const { return m_resourceTypeHasBeenSet; } /** *

A conflict occurred when prompting for resource type.

*/ inline void SetResourceType(const Aws::String& value) { m_resourceTypeHasBeenSet = true; m_resourceType = value; } /** *

A conflict occurred when prompting for resource type.

*/ inline void SetResourceType(Aws::String&& value) { m_resourceTypeHasBeenSet = true; m_resourceType = std::move(value); } /** *

A conflict occurred when prompting for resource type.

*/ inline void SetResourceType(const char* value) { m_resourceTypeHasBeenSet = true; m_resourceType.assign(value); } /** *

A conflict occurred when prompting for resource type.

*/ inline ConflictException& WithResourceType(const Aws::String& value) { SetResourceType(value); return *this;} /** *

A conflict occurred when prompting for resource type.

*/ inline ConflictException& WithResourceType(Aws::String&& value) { SetResourceType(std::move(value)); return *this;} /** *

A conflict occurred when prompting for resource type.

*/ inline ConflictException& WithResourceType(const char* value) { SetResourceType(value); return *this;} private: Aws::String m_code; bool m_codeHasBeenSet = false; Aws::Vector m_errors; bool m_errorsHasBeenSet = false; Aws::String m_message; bool m_messageHasBeenSet = false; Aws::String m_resourceId; bool m_resourceIdHasBeenSet = false; Aws::String m_resourceType; bool m_resourceTypeHasBeenSet = false; }; } // namespace Model } // namespace mgn } // namespace Aws