This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-glue/include/aws/glue/model/UpdateJobResult.h

78 lines
1.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/glue/Glue_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
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<Aws::Utils::Json::JsonValue>& result);
UpdateJobResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>Returns the name of the updated job definition.</p>
*/
inline const Aws::String& GetJobName() const{ return m_jobName; }
/**
* <p>Returns the name of the updated job definition.</p>
*/
inline void SetJobName(const Aws::String& value) { m_jobName = value; }
/**
* <p>Returns the name of the updated job definition.</p>
*/
inline void SetJobName(Aws::String&& value) { m_jobName = std::move(value); }
/**
* <p>Returns the name of the updated job definition.</p>
*/
inline void SetJobName(const char* value) { m_jobName.assign(value); }
/**
* <p>Returns the name of the updated job definition.</p>
*/
inline UpdateJobResult& WithJobName(const Aws::String& value) { SetJobName(value); return *this;}
/**
* <p>Returns the name of the updated job definition.</p>
*/
inline UpdateJobResult& WithJobName(Aws::String&& value) { SetJobName(std::move(value)); return *this;}
/**
* <p>Returns the name of the updated job definition.</p>
*/
inline UpdateJobResult& WithJobName(const char* value) { SetJobName(value); return *this;}
private:
Aws::String m_jobName;
};
} // namespace Model
} // namespace Glue
} // namespace Aws