/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace GlueDataBrew { namespace Model { class UpdateProjectResult { public: AWS_GLUEDATABREW_API UpdateProjectResult(); AWS_GLUEDATABREW_API UpdateProjectResult(const Aws::AmazonWebServiceResult& result); AWS_GLUEDATABREW_API UpdateProjectResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The date and time that the project was last modified.

*/ inline const Aws::Utils::DateTime& GetLastModifiedDate() const{ return m_lastModifiedDate; } /** *

The date and time that the project was last modified.

*/ inline void SetLastModifiedDate(const Aws::Utils::DateTime& value) { m_lastModifiedDate = value; } /** *

The date and time that the project was last modified.

*/ inline void SetLastModifiedDate(Aws::Utils::DateTime&& value) { m_lastModifiedDate = std::move(value); } /** *

The date and time that the project was last modified.

*/ inline UpdateProjectResult& WithLastModifiedDate(const Aws::Utils::DateTime& value) { SetLastModifiedDate(value); return *this;} /** *

The date and time that the project was last modified.

*/ inline UpdateProjectResult& WithLastModifiedDate(Aws::Utils::DateTime&& value) { SetLastModifiedDate(std::move(value)); return *this;} /** *

The name of the project that you updated.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name of the project that you updated.

*/ inline void SetName(const Aws::String& value) { m_name = value; } /** *

The name of the project that you updated.

*/ inline void SetName(Aws::String&& value) { m_name = std::move(value); } /** *

The name of the project that you updated.

*/ inline void SetName(const char* value) { m_name.assign(value); } /** *

The name of the project that you updated.

*/ inline UpdateProjectResult& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name of the project that you updated.

*/ inline UpdateProjectResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name of the project that you updated.

*/ inline UpdateProjectResult& WithName(const char* value) { SetName(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline UpdateProjectResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateProjectResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateProjectResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Utils::DateTime m_lastModifiedDate; Aws::String m_name; Aws::String m_requestId; }; } // namespace Model } // namespace GlueDataBrew } // namespace Aws