#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 DescribeJobExecution request. * */ class AWS_IOTJOBS_API DescribeJobExecutionResponse final { public: DescribeJobExecutionResponse() = default; DescribeJobExecutionResponse(const Crt::JsonView &doc); DescribeJobExecutionResponse &operator=(const Crt::JsonView &doc); void SerializeToObject(Crt::JsonObject &doc) const; /** * Contains data about a job execution. * */ Aws::Crt::Optional Execution; /** * A client token used to correlate requests and responses. * */ Aws::Crt::Optional ClientToken; /** * The time when the message was sent. * */ Aws::Crt::Optional Timestamp; private: static void LoadFromObject(DescribeJobExecutionResponse &obj, const Crt::JsonView &doc); }; } // namespace Iotjobs } // namespace Aws