/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Request references a resource which doesn't exist. See Also:
* AWS
* API Reference
The identifier for the requested resource
*/ inline const Aws::String& GetResourceIdentifier() const{ return m_resourceIdentifier; } /** *The identifier for the requested resource
*/ inline bool ResourceIdentifierHasBeenSet() const { return m_resourceIdentifierHasBeenSet; } /** *The identifier for the requested resource
*/ inline void SetResourceIdentifier(const Aws::String& value) { m_resourceIdentifierHasBeenSet = true; m_resourceIdentifier = value; } /** *The identifier for the requested resource
*/ inline void SetResourceIdentifier(Aws::String&& value) { m_resourceIdentifierHasBeenSet = true; m_resourceIdentifier = std::move(value); } /** *The identifier for the requested resource
*/ inline void SetResourceIdentifier(const char* value) { m_resourceIdentifierHasBeenSet = true; m_resourceIdentifier.assign(value); } /** *The identifier for the requested resource
*/ inline ResourceNotFoundException& WithResourceIdentifier(const Aws::String& value) { SetResourceIdentifier(value); return *this;} /** *The identifier for the requested resource
*/ inline ResourceNotFoundException& WithResourceIdentifier(Aws::String&& value) { SetResourceIdentifier(std::move(value)); return *this;} /** *The identifier for the requested resource
*/ inline ResourceNotFoundException& WithResourceIdentifier(const char* value) { SetResourceIdentifier(value); return *this;} /** *The resource type
*/ inline const ResourceType& GetResourceType() const{ return m_resourceType; } /** *The resource type
*/ inline bool ResourceTypeHasBeenSet() const { return m_resourceTypeHasBeenSet; } /** *The resource type
*/ inline void SetResourceType(const ResourceType& value) { m_resourceTypeHasBeenSet = true; m_resourceType = value; } /** *The resource type
*/ inline void SetResourceType(ResourceType&& value) { m_resourceTypeHasBeenSet = true; m_resourceType = std::move(value); } /** *The resource type
*/ inline ResourceNotFoundException& WithResourceType(const ResourceType& value) { SetResourceType(value); return *this;} /** *The resource type
*/ inline ResourceNotFoundException& WithResourceType(ResourceType&& value) { SetResourceType(std::move(value)); return *this;} private: Aws::String m_message; bool m_messageHasBeenSet = false; Aws::String m_resourceIdentifier; bool m_resourceIdentifierHasBeenSet = false; ResourceType m_resourceType; bool m_resourceTypeHasBeenSet = false; }; } // namespace Model } // namespace SSMIncidents } // namespace Aws