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

The unique name that was provided for this job definition.

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

The unique name that was provided for this job definition.

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

The unique name that was provided for this job definition.

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

The unique name that was provided for this job definition.

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

The unique name that was provided for this job definition.

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

The unique name that was provided for this job definition.

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

The unique name that was provided for this job definition.

*/ inline CreateJobResult& WithName(const char* value) { SetName(value); return *this;} private: Aws::String m_name; }; } // namespace Model } // namespace Glue } // namespace Aws