/** * 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 Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace CodePipeline { namespace Model { /** *

Represents information about the details of a job.

See Also:

* AWS * API Reference

*/ class JobDetails { public: AWS_CODEPIPELINE_API JobDetails(); AWS_CODEPIPELINE_API JobDetails(Aws::Utils::Json::JsonView jsonValue); AWS_CODEPIPELINE_API JobDetails& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_CODEPIPELINE_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The unique system-generated ID of the job.

*/ inline const Aws::String& GetId() const{ return m_id; } /** *

The unique system-generated ID of the job.

*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *

The unique system-generated ID of the job.

*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *

The unique system-generated ID of the job.

*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *

The unique system-generated ID of the job.

*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *

The unique system-generated ID of the job.

*/ inline JobDetails& WithId(const Aws::String& value) { SetId(value); return *this;} /** *

The unique system-generated ID of the job.

*/ inline JobDetails& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *

The unique system-generated ID of the job.

*/ inline JobDetails& WithId(const char* value) { SetId(value); return *this;} /** *

Represents other information about a job required for a job worker to * complete the job.

*/ inline const JobData& GetData() const{ return m_data; } /** *

Represents other information about a job required for a job worker to * complete the job.

*/ inline bool DataHasBeenSet() const { return m_dataHasBeenSet; } /** *

Represents other information about a job required for a job worker to * complete the job.

*/ inline void SetData(const JobData& value) { m_dataHasBeenSet = true; m_data = value; } /** *

Represents other information about a job required for a job worker to * complete the job.

*/ inline void SetData(JobData&& value) { m_dataHasBeenSet = true; m_data = std::move(value); } /** *

Represents other information about a job required for a job worker to * complete the job.

*/ inline JobDetails& WithData(const JobData& value) { SetData(value); return *this;} /** *

Represents other information about a job required for a job worker to * complete the job.

*/ inline JobDetails& WithData(JobData&& value) { SetData(std::move(value)); return *this;} /** *

The Amazon Web Services account ID associated with the job.

*/ inline const Aws::String& GetAccountId() const{ return m_accountId; } /** *

The Amazon Web Services account ID associated with the job.

*/ inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; } /** *

The Amazon Web Services account ID associated with the job.

*/ inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; } /** *

The Amazon Web Services account ID associated with the job.

*/ inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); } /** *

The Amazon Web Services account ID associated with the job.

*/ inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); } /** *

The Amazon Web Services account ID associated with the job.

*/ inline JobDetails& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;} /** *

The Amazon Web Services account ID associated with the job.

*/ inline JobDetails& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;} /** *

The Amazon Web Services account ID associated with the job.

*/ inline JobDetails& WithAccountId(const char* value) { SetAccountId(value); return *this;} private: Aws::String m_id; bool m_idHasBeenSet = false; JobData m_data; bool m_dataHasBeenSet = false; Aws::String m_accountId; bool m_accountIdHasBeenSet = false; }; } // namespace Model } // namespace CodePipeline } // namespace Aws