/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A structure containing the schema version information.See
* Also:
AWS
* API Reference
The latest version available for the schema.
*/ inline bool GetLatestVersion() const{ return m_latestVersion; } /** *The latest version available for the schema.
*/ inline bool LatestVersionHasBeenSet() const { return m_latestVersionHasBeenSet; } /** *The latest version available for the schema.
*/ inline void SetLatestVersion(bool value) { m_latestVersionHasBeenSet = true; m_latestVersion = value; } /** *The latest version available for the schema.
*/ inline SchemaVersionNumber& WithLatestVersion(bool value) { SetLatestVersion(value); return *this;} /** *The version number of the schema.
*/ inline long long GetVersionNumber() const{ return m_versionNumber; } /** *The version number of the schema.
*/ inline bool VersionNumberHasBeenSet() const { return m_versionNumberHasBeenSet; } /** *The version number of the schema.
*/ inline void SetVersionNumber(long long value) { m_versionNumberHasBeenSet = true; m_versionNumber = value; } /** *The version number of the schema.
*/ inline SchemaVersionNumber& WithVersionNumber(long long value) { SetVersionNumber(value); return *this;} private: bool m_latestVersion; bool m_latestVersionHasBeenSet = false; long long m_versionNumber; bool m_versionNumberHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws