/** * 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 { /** *

Copy source image set information.

See Also:

AWS * API Reference

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

The latest version identifier for the source image set.

*/ inline const Aws::String& GetLatestVersionId() const{ return m_latestVersionId; } /** *

The latest version identifier for the source image set.

*/ inline bool LatestVersionIdHasBeenSet() const { return m_latestVersionIdHasBeenSet; } /** *

The latest version identifier for the source image set.

*/ inline void SetLatestVersionId(const Aws::String& value) { m_latestVersionIdHasBeenSet = true; m_latestVersionId = value; } /** *

The latest version identifier for the source image set.

*/ inline void SetLatestVersionId(Aws::String&& value) { m_latestVersionIdHasBeenSet = true; m_latestVersionId = std::move(value); } /** *

The latest version identifier for the source image set.

*/ inline void SetLatestVersionId(const char* value) { m_latestVersionIdHasBeenSet = true; m_latestVersionId.assign(value); } /** *

The latest version identifier for the source image set.

*/ inline CopySourceImageSetInformation& WithLatestVersionId(const Aws::String& value) { SetLatestVersionId(value); return *this;} /** *

The latest version identifier for the source image set.

*/ inline CopySourceImageSetInformation& WithLatestVersionId(Aws::String&& value) { SetLatestVersionId(std::move(value)); return *this;} /** *

The latest version identifier for the source image set.

*/ inline CopySourceImageSetInformation& WithLatestVersionId(const char* value) { SetLatestVersionId(value); return *this;} private: Aws::String m_latestVersionId; bool m_latestVersionIdHasBeenSet = false; }; } // namespace Model } // namespace MedicalImaging } // namespace Aws