/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input of a GetThirdPartyJobDetails
* action.See Also:
AWS
* API Reference
The unique system-generated ID used for identifying the job.
*/ inline const Aws::String& GetJobId() const{ return m_jobId; } /** *The unique system-generated ID used for identifying the job.
*/ inline bool JobIdHasBeenSet() const { return m_jobIdHasBeenSet; } /** *The unique system-generated ID used for identifying the job.
*/ inline void SetJobId(const Aws::String& value) { m_jobIdHasBeenSet = true; m_jobId = value; } /** *The unique system-generated ID used for identifying the job.
*/ inline void SetJobId(Aws::String&& value) { m_jobIdHasBeenSet = true; m_jobId = std::move(value); } /** *The unique system-generated ID used for identifying the job.
*/ inline void SetJobId(const char* value) { m_jobIdHasBeenSet = true; m_jobId.assign(value); } /** *The unique system-generated ID used for identifying the job.
*/ inline GetThirdPartyJobDetailsRequest& WithJobId(const Aws::String& value) { SetJobId(value); return *this;} /** *The unique system-generated ID used for identifying the job.
*/ inline GetThirdPartyJobDetailsRequest& WithJobId(Aws::String&& value) { SetJobId(std::move(value)); return *this;} /** *The unique system-generated ID used for identifying the job.
*/ inline GetThirdPartyJobDetailsRequest& WithJobId(const char* value) { SetJobId(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 GetThirdPartyJobDetailsRequest& 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 GetThirdPartyJobDetailsRequest& 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 GetThirdPartyJobDetailsRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;} private: Aws::String m_jobId; bool m_jobIdHasBeenSet = false; Aws::String m_clientToken; bool m_clientTokenHasBeenSet = false; }; } // namespace Model } // namespace CodePipeline } // namespace Aws