/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents an API resource.See Also:
AWS
* API Reference
The resource's identifier.
*/ inline const Aws::String& GetId() const{ return m_id; } inline void SetId(const Aws::String& value) { m_id = value; } inline void SetId(Aws::String&& value) { m_id = std::move(value); } inline void SetId(const char* value) { m_id.assign(value); } inline GetResourceResult& WithId(const Aws::String& value) { SetId(value); return *this;} inline GetResourceResult& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} inline GetResourceResult& WithId(const char* value) { SetId(value); return *this;} ///@} ///@{ /** *The parent resource's identifier.
*/ inline const Aws::String& GetParentId() const{ return m_parentId; } inline void SetParentId(const Aws::String& value) { m_parentId = value; } inline void SetParentId(Aws::String&& value) { m_parentId = std::move(value); } inline void SetParentId(const char* value) { m_parentId.assign(value); } inline GetResourceResult& WithParentId(const Aws::String& value) { SetParentId(value); return *this;} inline GetResourceResult& WithParentId(Aws::String&& value) { SetParentId(std::move(value)); return *this;} inline GetResourceResult& WithParentId(const char* value) { SetParentId(value); return *this;} ///@} ///@{ /** *The last path segment for this resource.
*/ inline const Aws::String& GetPathPart() const{ return m_pathPart; } inline void SetPathPart(const Aws::String& value) { m_pathPart = value; } inline void SetPathPart(Aws::String&& value) { m_pathPart = std::move(value); } inline void SetPathPart(const char* value) { m_pathPart.assign(value); } inline GetResourceResult& WithPathPart(const Aws::String& value) { SetPathPart(value); return *this;} inline GetResourceResult& WithPathPart(Aws::String&& value) { SetPathPart(std::move(value)); return *this;} inline GetResourceResult& WithPathPart(const char* value) { SetPathPart(value); return *this;} ///@} ///@{ /** *The full path for this resource.
*/ inline const Aws::String& GetPath() const{ return m_path; } inline void SetPath(const Aws::String& value) { m_path = value; } inline void SetPath(Aws::String&& value) { m_path = std::move(value); } inline void SetPath(const char* value) { m_path.assign(value); } inline GetResourceResult& WithPath(const Aws::String& value) { SetPath(value); return *this;} inline GetResourceResult& WithPath(Aws::String&& value) { SetPath(std::move(value)); return *this;} inline GetResourceResult& WithPath(const char* value) { SetPath(value); return *this;} ///@} ///@{ /** *Gets an API resource's method of a given HTTP verb.
*/ inline const Aws::Map