/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A requested resource was not found.See Also:
AWS
* API Reference
Value is the type of resource that was not found.
*/ inline const Aws::String& GetResourceType() const{ return m_resourceType; } /** *Value is the type of resource that was not found.
*/ inline bool ResourceTypeHasBeenSet() const { return m_resourceTypeHasBeenSet; } /** *Value is the type of resource that was not found.
*/ inline void SetResourceType(const Aws::String& value) { m_resourceTypeHasBeenSet = true; m_resourceType = value; } /** *Value is the type of resource that was not found.
*/ inline void SetResourceType(Aws::String&& value) { m_resourceTypeHasBeenSet = true; m_resourceType = std::move(value); } /** *Value is the type of resource that was not found.
*/ inline void SetResourceType(const char* value) { m_resourceTypeHasBeenSet = true; m_resourceType.assign(value); } /** *Value is the type of resource that was not found.
*/ inline ResourceNotFoundException& WithResourceType(const Aws::String& value) { SetResourceType(value); return *this;} /** *Value is the type of resource that was not found.
*/ inline ResourceNotFoundException& WithResourceType(Aws::String&& value) { SetResourceType(std::move(value)); return *this;} /** *Value is the type of resource that was not found.
*/ inline ResourceNotFoundException& WithResourceType(const char* value) { SetResourceType(value); return *this;} /** *Value is a list of resource IDs that were not found.
*/ inline const Aws::VectorValue is a list of resource IDs that were not found.
*/ inline bool ResourceIdsHasBeenSet() const { return m_resourceIdsHasBeenSet; } /** *Value is a list of resource IDs that were not found.
*/ inline void SetResourceIds(const Aws::VectorValue is a list of resource IDs that were not found.
*/ inline void SetResourceIds(Aws::VectorValue is a list of resource IDs that were not found.
*/ inline ResourceNotFoundException& WithResourceIds(const Aws::VectorValue is a list of resource IDs that were not found.
*/ inline ResourceNotFoundException& WithResourceIds(Aws::VectorValue is a list of resource IDs that were not found.
*/ inline ResourceNotFoundException& AddResourceIds(const Aws::String& value) { m_resourceIdsHasBeenSet = true; m_resourceIds.push_back(value); return *this; } /** *Value is a list of resource IDs that were not found.
*/ inline ResourceNotFoundException& AddResourceIds(Aws::String&& value) { m_resourceIdsHasBeenSet = true; m_resourceIds.push_back(std::move(value)); return *this; } /** *Value is a list of resource IDs that were not found.
*/ inline ResourceNotFoundException& AddResourceIds(const char* value) { m_resourceIdsHasBeenSet = true; m_resourceIds.push_back(value); return *this; } private: Aws::String m_message; bool m_messageHasBeenSet = false; Aws::String m_code; bool m_codeHasBeenSet = false; Aws::String m_resourceType; bool m_resourceTypeHasBeenSet = false; Aws::Vector