/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace MediaLive { namespace Model { /** * Settings for an input device.

See Also:

AWS * API Reference

*/ class InputDeviceRequest { public: AWS_MEDIALIVE_API InputDeviceRequest(); AWS_MEDIALIVE_API InputDeviceRequest(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIALIVE_API InputDeviceRequest& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const; /** * The unique ID for the device. */ inline const Aws::String& GetId() const{ return m_id; } /** * The unique ID for the device. */ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** * The unique ID for the device. */ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** * The unique ID for the device. */ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** * The unique ID for the device. */ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** * The unique ID for the device. */ inline InputDeviceRequest& WithId(const Aws::String& value) { SetId(value); return *this;} /** * The unique ID for the device. */ inline InputDeviceRequest& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** * The unique ID for the device. */ inline InputDeviceRequest& WithId(const char* value) { SetId(value); return *this;} private: Aws::String m_id; bool m_idHasBeenSet = false; }; } // namespace Model } // namespace MediaLive } // namespace Aws