/** * 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 AcknowledgeThirdPartyJob action.

See * Also:

AWS * API Reference

*/ class AcknowledgeThirdPartyJobRequest : public CodePipelineRequest { public: AWS_CODEPIPELINE_API AcknowledgeThirdPartyJobRequest(); // 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 "AcknowledgeThirdPartyJob"; } 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.

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

The unique system-generated ID of the job.

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

The unique system-generated ID of the job.

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

The unique system-generated ID of the job.

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

The unique system-generated ID of the job.

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

The unique system-generated ID of the job.

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

The unique system-generated ID of the job.

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

The unique system-generated ID of the job.

*/ inline AcknowledgeThirdPartyJobRequest& 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 * to a GetThirdPartyJobDetails request.

*/ 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 * to a GetThirdPartyJobDetails request.

*/ 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 * to a GetThirdPartyJobDetails request.

*/ 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 * to a GetThirdPartyJobDetails request.

*/ 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 * to a GetThirdPartyJobDetails request.

*/ 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 * to a GetThirdPartyJobDetails request.

*/ inline AcknowledgeThirdPartyJobRequest& 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 * to a GetThirdPartyJobDetails request.

*/ inline AcknowledgeThirdPartyJobRequest& 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 * to a GetThirdPartyJobDetails request.

*/ inline AcknowledgeThirdPartyJobRequest& WithNonce(const char* value) { SetNonce(value); return *this;} /** *

The clientToken portion of the clientId and clientToken pair used to verify * that the calling entity is allowed access to the job and its details.

*/ inline const Aws::String& GetClientToken() const{ return m_clientToken; } /** *

The clientToken portion of the clientId and clientToken pair used to verify * that the calling entity is allowed access to the job and its details.

*/ inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; } /** *

The clientToken portion of the clientId and clientToken pair used to verify * that the calling entity is allowed access to the job and its details.

*/ inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; } /** *

The clientToken portion of the clientId and clientToken pair used to verify * that the calling entity is allowed access to the job and its details.

*/ inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); } /** *

The clientToken portion of the clientId and clientToken pair used to verify * that the calling entity is allowed access to the job and its details.

*/ inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); } /** *

The clientToken portion of the clientId and clientToken pair used to verify * that the calling entity is allowed access to the job and its details.

*/ inline AcknowledgeThirdPartyJobRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;} /** *

The clientToken portion of the clientId and clientToken pair used to verify * that the calling entity is allowed access to the job and its details.

*/ inline AcknowledgeThirdPartyJobRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;} /** *

The clientToken portion of the clientId and clientToken pair used to verify * that the calling entity is allowed access to the job and its details.

*/ inline AcknowledgeThirdPartyJobRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;} private: Aws::String m_jobId; bool m_jobIdHasBeenSet = false; Aws::String m_nonce; bool m_nonceHasBeenSet = false; Aws::String m_clientToken; bool m_clientTokenHasBeenSet = false; }; } // namespace Model } // namespace CodePipeline } // namespace Aws