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

Represents the input of a PutThirdPartyJobFailureResult * action.

See Also:

AWS * API Reference

*/ class PutThirdPartyJobFailureResultRequest : public CodePipelineRequest { public: AWS_CODEPIPELINE_API PutThirdPartyJobFailureResultRequest(); // 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 "PutThirdPartyJobFailureResult"; } AWS_CODEPIPELINE_API Aws::String SerializePayload() const override; AWS_CODEPIPELINE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The ID of the job that failed. This is the same ID returned from * PollForThirdPartyJobs.

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

The ID of the job that failed. This is the same ID returned from * PollForThirdPartyJobs.

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

The ID of the job that failed. This is the same ID returned from * PollForThirdPartyJobs.

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

The ID of the job that failed. This is the same ID returned from * PollForThirdPartyJobs.

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

The ID of the job that failed. This is the same ID returned from * PollForThirdPartyJobs.

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

The ID of the job that failed. This is the same ID returned from * PollForThirdPartyJobs.

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

The ID of the job that failed. This is the same ID returned from * PollForThirdPartyJobs.

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

The ID of the job that failed. This is the same ID returned from * PollForThirdPartyJobs.

*/ inline PutThirdPartyJobFailureResultRequest& 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 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