/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Details about a beta appliance software update.See Also:
AWS
* API Reference
The appliance software version.
*/ inline const Aws::String& GetVersion() const{ return m_version; } /** *The appliance software version.
*/ inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; } /** *The appliance software version.
*/ inline void SetVersion(const Aws::String& value) { m_versionHasBeenSet = true; m_version = value; } /** *The appliance software version.
*/ inline void SetVersion(Aws::String&& value) { m_versionHasBeenSet = true; m_version = std::move(value); } /** *The appliance software version.
*/ inline void SetVersion(const char* value) { m_versionHasBeenSet = true; m_version.assign(value); } /** *The appliance software version.
*/ inline AlternateSoftwareMetadata& WithVersion(const Aws::String& value) { SetVersion(value); return *this;} /** *The appliance software version.
*/ inline AlternateSoftwareMetadata& WithVersion(Aws::String&& value) { SetVersion(std::move(value)); return *this;} /** *The appliance software version.
*/ inline AlternateSoftwareMetadata& WithVersion(const char* value) { SetVersion(value); return *this;} private: Aws::String m_version; bool m_versionHasBeenSet = false; }; } // namespace Model } // namespace Panorama } // namespace Aws