/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input of a PutThirdPartyJobFailureResult
* action.See Also:
AWS
* API Reference
The ID of the job that failed. This is the same ID returned from
* PollForThirdPartyJobs
.
The ID of the job that failed. This is the same ID returned from
* PollForThirdPartyJobs
.
The ID of the job that failed. This is the same ID returned from
* PollForThirdPartyJobs
.
The ID of the job that failed. This is the same ID returned from
* PollForThirdPartyJobs
.
The ID of the job that failed. This is the same ID returned from
* PollForThirdPartyJobs
.
The ID of the job that failed. This is the same ID returned from
* PollForThirdPartyJobs
.
The ID of the job that failed. This is the same ID returned from
* PollForThirdPartyJobs
.
The ID of the job that failed. This is the same ID returned from
* PollForThirdPartyJobs
.
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 PutThirdPartyJobFailureResultRequest& 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 PutThirdPartyJobFailureResultRequest& 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 PutThirdPartyJobFailureResultRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;} /** *Represents information about failure details.
*/ inline const FailureDetails& GetFailureDetails() const{ return m_failureDetails; } /** *Represents information about failure details.
*/ inline bool FailureDetailsHasBeenSet() const { return m_failureDetailsHasBeenSet; } /** *Represents information about failure details.
*/ inline void SetFailureDetails(const FailureDetails& value) { m_failureDetailsHasBeenSet = true; m_failureDetails = value; } /** *Represents information about failure details.
*/ inline void SetFailureDetails(FailureDetails&& value) { m_failureDetailsHasBeenSet = true; m_failureDetails = std::move(value); } /** *Represents information about failure details.
*/ inline PutThirdPartyJobFailureResultRequest& WithFailureDetails(const FailureDetails& value) { SetFailureDetails(value); return *this;} /** *Represents information about failure details.
*/ inline PutThirdPartyJobFailureResultRequest& WithFailureDetails(FailureDetails&& value) { SetFailureDetails(std::move(value)); return *this;} private: Aws::String m_jobId; bool m_jobIdHasBeenSet = false; Aws::String m_clientToken; bool m_clientTokenHasBeenSet = false; FailureDetails m_failureDetails; bool m_failureDetailsHasBeenSet = false; }; } // namespace Model } // namespace CodePipeline } // namespace Aws