#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 namespace Aws { namespace Iotjobs { /** * Data needed to subscribe to NextJobExecutionChanged events. * */ class AWS_IOTJOBS_API NextJobExecutionChangedSubscriptionRequest final { public: NextJobExecutionChangedSubscriptionRequest() = default; NextJobExecutionChangedSubscriptionRequest(const Crt::JsonView &doc); NextJobExecutionChangedSubscriptionRequest &operator=(const Crt::JsonView &doc); void SerializeToObject(Crt::JsonObject &doc) const; /** * Name of the IoT Thing that you want to subscribe to NextJobExecutionChanged events for. * */ Aws::Crt::Optional ThingName; private: static void LoadFromObject(NextJobExecutionChangedSubscriptionRequest &obj, const Crt::JsonView &doc); }; } // namespace Iotjobs } // namespace Aws