/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about the image frame (pixel data) identifier.See
* Also:
AWS
* API Reference
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