/** * 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 DeleteJobResult { public: DeleteJobResult(); DeleteJobResult(const Aws::AmazonWebServiceResult& result); DeleteJobResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The name of the job definition that was deleted.

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

The name of the job definition that was deleted.

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

The name of the job definition that was deleted.

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

The name of the job definition that was deleted.

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

The name of the job definition that was deleted.

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

The name of the job definition that was deleted.

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

The name of the job definition that was deleted.

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