#pragma once /* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. * * This file is generated */ #include #include #include #include #include namespace Aws { namespace Iotjobs { /** * Response payload to a GetPendingJobExecutions request. * */ class AWS_IOTJOBS_API GetPendingJobExecutionsResponse final { public: GetPendingJobExecutionsResponse() = default; GetPendingJobExecutionsResponse(const Crt::JsonView &doc); GetPendingJobExecutionsResponse &operator=(const Crt::JsonView &doc); void SerializeToObject(Crt::JsonObject &doc) const; /** * A list of JobExecutionSummary objects with status QUEUED. * */ Aws::Crt::Optional> QueuedJobs; /** * The time when the message was sent. * */ Aws::Crt::Optional Timestamp; /** * A client token used to correlate requests and responses. * */ Aws::Crt::Optional ClientToken; /** * A list of JobExecutionSummary objects with status IN_PROGRESS. * */ Aws::Crt::Optional> InProgressJobs; private: static void LoadFromObject(GetPendingJobExecutionsResponse &obj, const Crt::JsonView &doc); }; } // namespace Iotjobs } // namespace Aws