/** * 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 { /** * Placeholder documentation for CdiInputSpecification

See Also:

AWS * API Reference

*/ class CdiInputSpecification { public: AWS_MEDIALIVE_API CdiInputSpecification(); AWS_MEDIALIVE_API CdiInputSpecification(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIALIVE_API CdiInputSpecification& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const; /** * Maximum CDI input resolution */ inline const CdiInputResolution& GetResolution() const{ return m_resolution; } /** * Maximum CDI input resolution */ inline bool ResolutionHasBeenSet() const { return m_resolutionHasBeenSet; } /** * Maximum CDI input resolution */ inline void SetResolution(const CdiInputResolution& value) { m_resolutionHasBeenSet = true; m_resolution = value; } /** * Maximum CDI input resolution */ inline void SetResolution(CdiInputResolution&& value) { m_resolutionHasBeenSet = true; m_resolution = std::move(value); } /** * Maximum CDI input resolution */ inline CdiInputSpecification& WithResolution(const CdiInputResolution& value) { SetResolution(value); return *this;} /** * Maximum CDI input resolution */ inline CdiInputSpecification& WithResolution(CdiInputResolution&& value) { SetResolution(std::move(value)); return *this;} private: CdiInputResolution m_resolution; bool m_resolutionHasBeenSet = false; }; } // namespace Model } // namespace MediaLive } // namespace Aws