/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Copy source image set information.See Also:
AWS
* API Reference
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