/** * 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 Glue { namespace Model { class AWS_GLUE_API UpdateJobResult { public: UpdateJobResult(); UpdateJobResult(const Aws::AmazonWebServiceResult& result); UpdateJobResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Returns the name of the updated job definition.

*/ inline const Aws::String& GetJobName() const{ return m_jobName; } /** *

Returns the name of the updated job definition.

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

Returns the name of the updated job definition.

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

Returns the name of the updated job definition.

*/ inline void SetJobName(const char* value) { m_jobName.assign(value); } /** *

Returns the name of the updated job definition.

*/ inline UpdateJobResult& WithJobName(const Aws::String& value) { SetJobName(value); return *this;} /** *

Returns the name of the updated job definition.

*/ inline UpdateJobResult& WithJobName(Aws::String&& value) { SetJobName(std::move(value)); return *this;} /** *

Returns the name of the updated job definition.

*/ inline UpdateJobResult& WithJobName(const char* value) { SetJobName(value); return *this;} private: Aws::String m_jobName; }; } // namespace Model } // namespace Glue } // namespace Aws