116 lines
3.1 KiB
C++
116 lines
3.1 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/macie2/Macie2_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 Macie2
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_MACIE2_API CreateClassificationJobResult
|
|
{
|
|
public:
|
|
CreateClassificationJobResult();
|
|
CreateClassificationJobResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
CreateClassificationJobResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the job.</p>
|
|
*/
|
|
inline const Aws::String& GetJobArn() const{ return m_jobArn; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the job.</p>
|
|
*/
|
|
inline void SetJobArn(const Aws::String& value) { m_jobArn = value; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the job.</p>
|
|
*/
|
|
inline void SetJobArn(Aws::String&& value) { m_jobArn = std::move(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the job.</p>
|
|
*/
|
|
inline void SetJobArn(const char* value) { m_jobArn.assign(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the job.</p>
|
|
*/
|
|
inline CreateClassificationJobResult& WithJobArn(const Aws::String& value) { SetJobArn(value); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the job.</p>
|
|
*/
|
|
inline CreateClassificationJobResult& WithJobArn(Aws::String&& value) { SetJobArn(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the job.</p>
|
|
*/
|
|
inline CreateClassificationJobResult& WithJobArn(const char* value) { SetJobArn(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The unique identifier for the job.</p>
|
|
*/
|
|
inline const Aws::String& GetJobId() const{ return m_jobId; }
|
|
|
|
/**
|
|
* <p>The unique identifier for the job.</p>
|
|
*/
|
|
inline void SetJobId(const Aws::String& value) { m_jobId = value; }
|
|
|
|
/**
|
|
* <p>The unique identifier for the job.</p>
|
|
*/
|
|
inline void SetJobId(Aws::String&& value) { m_jobId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The unique identifier for the job.</p>
|
|
*/
|
|
inline void SetJobId(const char* value) { m_jobId.assign(value); }
|
|
|
|
/**
|
|
* <p>The unique identifier for the job.</p>
|
|
*/
|
|
inline CreateClassificationJobResult& WithJobId(const Aws::String& value) { SetJobId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The unique identifier for the job.</p>
|
|
*/
|
|
inline CreateClassificationJobResult& WithJobId(Aws::String&& value) { SetJobId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The unique identifier for the job.</p>
|
|
*/
|
|
inline CreateClassificationJobResult& WithJobId(const char* value) { SetJobId(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_jobArn;
|
|
|
|
Aws::String m_jobId;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Macie2
|
|
} // namespace Aws
|