/** * 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 MedicalImaging { namespace Model { /** *

Information about the image frame (pixel data) identifier.

See * Also:

AWS * API Reference

*/ class ImageFrameInformation { public: AWS_MEDICALIMAGING_API ImageFrameInformation(); AWS_MEDICALIMAGING_API ImageFrameInformation(Aws::Utils::Json::JsonView jsonValue); AWS_MEDICALIMAGING_API ImageFrameInformation& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_MEDICALIMAGING_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The image frame (pixel data) identifier.

*/ inline const Aws::String& GetImageFrameId() const{ return m_imageFrameId; } /** *

The image frame (pixel data) identifier.

*/ inline bool ImageFrameIdHasBeenSet() const { return m_imageFrameIdHasBeenSet; } /** *

The image frame (pixel data) identifier.

*/ inline void SetImageFrameId(const Aws::String& value) { m_imageFrameIdHasBeenSet = true; m_imageFrameId = value; } /** *

The image frame (pixel data) identifier.

*/ inline void SetImageFrameId(Aws::String&& value) { m_imageFrameIdHasBeenSet = true; m_imageFrameId = std::move(value); } /** *

The image frame (pixel data) identifier.

*/ inline void SetImageFrameId(const char* value) { m_imageFrameIdHasBeenSet = true; m_imageFrameId.assign(value); } /** *

The image frame (pixel data) identifier.

*/ inline ImageFrameInformation& WithImageFrameId(const Aws::String& value) { SetImageFrameId(value); return *this;} /** *

The image frame (pixel data) identifier.

*/ inline ImageFrameInformation& WithImageFrameId(Aws::String&& value) { SetImageFrameId(std::move(value)); return *this;} /** *

The image frame (pixel data) identifier.

*/ inline ImageFrameInformation& WithImageFrameId(const char* value) { SetImageFrameId(value); return *this;} private: Aws::String m_imageFrameId; bool m_imageFrameIdHasBeenSet = false; }; } // namespace Model } // namespace MedicalImaging } // namespace Aws