/** * 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 signer { namespace Model { class StartSigningJobResult { public: AWS_SIGNER_API StartSigningJobResult(); AWS_SIGNER_API StartSigningJobResult(const Aws::AmazonWebServiceResult& result); AWS_SIGNER_API StartSigningJobResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ID of your signing job.

*/ inline const Aws::String& GetJobId() const{ return m_jobId; } /** *

The ID of your signing job.

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

The ID of your signing job.

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

The ID of your signing job.

*/ inline void SetJobId(const char* value) { m_jobId.assign(value); } /** *

The ID of your signing job.

*/ inline StartSigningJobResult& WithJobId(const Aws::String& value) { SetJobId(value); return *this;} /** *

The ID of your signing job.

*/ inline StartSigningJobResult& WithJobId(Aws::String&& value) { SetJobId(std::move(value)); return *this;} /** *

The ID of your signing job.

*/ inline StartSigningJobResult& WithJobId(const char* value) { SetJobId(value); return *this;} /** *

The AWS account ID of the signing job owner.

*/ inline const Aws::String& GetJobOwner() const{ return m_jobOwner; } /** *

The AWS account ID of the signing job owner.

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

The AWS account ID of the signing job owner.

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

The AWS account ID of the signing job owner.

*/ inline void SetJobOwner(const char* value) { m_jobOwner.assign(value); } /** *

The AWS account ID of the signing job owner.

*/ inline StartSigningJobResult& WithJobOwner(const Aws::String& value) { SetJobOwner(value); return *this;} /** *

The AWS account ID of the signing job owner.

*/ inline StartSigningJobResult& WithJobOwner(Aws::String&& value) { SetJobOwner(std::move(value)); return *this;} /** *

The AWS account ID of the signing job owner.

*/ inline StartSigningJobResult& WithJobOwner(const char* value) { SetJobOwner(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline StartSigningJobResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline StartSigningJobResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline StartSigningJobResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_jobId; Aws::String m_jobOwner; Aws::String m_requestId; }; } // namespace Model } // namespace signer } // namespace Aws