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

The ID assigned to this job run.

*/ inline const Aws::String& GetJobRunId() const{ return m_jobRunId; } /** *

The ID assigned to this job run.

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

The ID assigned to this job run.

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

The ID assigned to this job run.

*/ inline void SetJobRunId(const char* value) { m_jobRunId.assign(value); } /** *

The ID assigned to this job run.

*/ inline StartJobRunResult& WithJobRunId(const Aws::String& value) { SetJobRunId(value); return *this;} /** *

The ID assigned to this job run.

*/ inline StartJobRunResult& WithJobRunId(Aws::String&& value) { SetJobRunId(std::move(value)); return *this;} /** *

The ID assigned to this job run.

*/ inline StartJobRunResult& WithJobRunId(const char* value) { SetJobRunId(value); return *this;} private: Aws::String m_jobRunId; }; } // namespace Model } // namespace Glue } // namespace Aws