/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace CodePipeline { namespace Model { /** *

Represents the input of an AcknowledgeJob action.

See Also:

* AWS * API Reference

*/ class AcknowledgeJobRequest : public CodePipelineRequest { public: AWS_CODEPIPELINE_API AcknowledgeJobRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "AcknowledgeJob"; } AWS_CODEPIPELINE_API Aws::String SerializePayload() const override; AWS_CODEPIPELINE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The unique system-generated ID of the job for which you want to confirm * receipt.

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

The unique system-generated ID of the job for which you want to confirm * receipt.

*/ inline bool JobIdHasBeenSet() const { return m_jobIdHasBeenSet; } /** *

The unique system-generated ID of the job for which you want to confirm * receipt.

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

The unique system-generated ID of the job for which you want to confirm * receipt.

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

The unique system-generated ID of the job for which you want to confirm * receipt.

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

The unique system-generated ID of the job for which you want to confirm * receipt.

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

The unique system-generated ID of the job for which you want to confirm * receipt.

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

The unique system-generated ID of the job for which you want to confirm * receipt.

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

A system-generated random number that CodePipeline uses to ensure that the * job is being worked on by only one job worker. Get this number from the response * of the PollForJobs request that returned this job.

*/ inline const Aws::String& GetNonce() const{ return m_nonce; } /** *

A system-generated random number that CodePipeline uses to ensure that the * job is being worked on by only one job worker. Get this number from the response * of the PollForJobs request that returned this job.

*/ inline bool NonceHasBeenSet() const { return m_nonceHasBeenSet; } /** *

A system-generated random number that CodePipeline uses to ensure that the * job is being worked on by only one job worker. Get this number from the response * of the PollForJobs request that returned this job.

*/ inline void SetNonce(const Aws::String& value) { m_nonceHasBeenSet = true; m_nonce = value; } /** *

A system-generated random number that CodePipeline uses to ensure that the * job is being worked on by only one job worker. Get this number from the response * of the PollForJobs request that returned this job.

*/ inline void SetNonce(Aws::String&& value) { m_nonceHasBeenSet = true; m_nonce = std::move(value); } /** *

A system-generated random number that CodePipeline uses to ensure that the * job is being worked on by only one job worker. Get this number from the response * of the PollForJobs request that returned this job.

*/ inline void SetNonce(const char* value) { m_nonceHasBeenSet = true; m_nonce.assign(value); } /** *

A system-generated random number that CodePipeline uses to ensure that the * job is being worked on by only one job worker. Get this number from the response * of the PollForJobs request that returned this job.

*/ inline AcknowledgeJobRequest& WithNonce(const Aws::String& value) { SetNonce(value); return *this;} /** *

A system-generated random number that CodePipeline uses to ensure that the * job is being worked on by only one job worker. Get this number from the response * of the PollForJobs request that returned this job.

*/ inline AcknowledgeJobRequest& WithNonce(Aws::String&& value) { SetNonce(std::move(value)); return *this;} /** *

A system-generated random number that CodePipeline uses to ensure that the * job is being worked on by only one job worker. Get this number from the response * of the PollForJobs request that returned this job.

*/ inline AcknowledgeJobRequest& WithNonce(const char* value) { SetNonce(value); return *this;} private: Aws::String m_jobId; bool m_jobIdHasBeenSet = false; Aws::String m_nonce; bool m_nonceHasBeenSet = false; }; } // namespace Model } // namespace CodePipeline } // namespace Aws