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

The name of the project to be acted upon.

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

The name of the project to be acted upon.

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

The name of the project to be acted upon.

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

The name of the project to be acted upon.

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

The name of the project to be acted upon.

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

The name of the project to be acted upon.

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

The name of the project to be acted upon.

*/ inline StartProjectSessionResult& WithName(const char* value) { SetName(value); return *this;} /** *

A system-generated identifier for the session.

*/ inline const Aws::String& GetClientSessionId() const{ return m_clientSessionId; } /** *

A system-generated identifier for the session.

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

A system-generated identifier for the session.

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

A system-generated identifier for the session.

*/ inline void SetClientSessionId(const char* value) { m_clientSessionId.assign(value); } /** *

A system-generated identifier for the session.

*/ inline StartProjectSessionResult& WithClientSessionId(const Aws::String& value) { SetClientSessionId(value); return *this;} /** *

A system-generated identifier for the session.

*/ inline StartProjectSessionResult& WithClientSessionId(Aws::String&& value) { SetClientSessionId(std::move(value)); return *this;} /** *

A system-generated identifier for the session.

*/ inline StartProjectSessionResult& WithClientSessionId(const char* value) { SetClientSessionId(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 StartProjectSessionResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline StartProjectSessionResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline StartProjectSessionResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_name; Aws::String m_clientSessionId; Aws::String m_requestId; }; } // namespace Model } // namespace GlueDataBrew } // namespace Aws