/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input of a PutJobFailureResult
* action.See Also:
AWS
* API Reference
The unique system-generated ID of the job that failed. This is the same ID
* returned from PollForJobs
.
The unique system-generated ID of the job that failed. This is the same ID
* returned from PollForJobs
.
The unique system-generated ID of the job that failed. This is the same ID
* returned from PollForJobs
.
The unique system-generated ID of the job that failed. This is the same ID
* returned from PollForJobs
.
The unique system-generated ID of the job that failed. This is the same ID
* returned from PollForJobs
.
The unique system-generated ID of the job that failed. This is the same ID
* returned from PollForJobs
.
The unique system-generated ID of the job that failed. This is the same ID
* returned from PollForJobs
.
The unique system-generated ID of the job that failed. This is the same ID
* returned from PollForJobs
.
The details about the failure of a job.
*/ inline const FailureDetails& GetFailureDetails() const{ return m_failureDetails; } /** *The details about the failure of a job.
*/ inline bool FailureDetailsHasBeenSet() const { return m_failureDetailsHasBeenSet; } /** *The details about the failure of a job.
*/ inline void SetFailureDetails(const FailureDetails& value) { m_failureDetailsHasBeenSet = true; m_failureDetails = value; } /** *The details about the failure of a job.
*/ inline void SetFailureDetails(FailureDetails&& value) { m_failureDetailsHasBeenSet = true; m_failureDetails = std::move(value); } /** *The details about the failure of a job.
*/ inline PutJobFailureResultRequest& WithFailureDetails(const FailureDetails& value) { SetFailureDetails(value); return *this;} /** *The details about the failure of a job.
*/ inline PutJobFailureResultRequest& WithFailureDetails(FailureDetails&& value) { SetFailureDetails(std::move(value)); return *this;} private: Aws::String m_jobId; bool m_jobIdHasBeenSet = false; FailureDetails m_failureDetails; bool m_failureDetailsHasBeenSet = false; }; } // namespace Model } // namespace CodePipeline } // namespace Aws