/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Configuration of a machine's license.See Also:
AWS API
* Reference
Whether to enable "Bring your own license" or not.
*/ inline bool GetOsByol() const{ return m_osByol; } /** *Whether to enable "Bring your own license" or not.
*/ inline bool OsByolHasBeenSet() const { return m_osByolHasBeenSet; } /** *Whether to enable "Bring your own license" or not.
*/ inline void SetOsByol(bool value) { m_osByolHasBeenSet = true; m_osByol = value; } /** *Whether to enable "Bring your own license" or not.
*/ inline Licensing& WithOsByol(bool value) { SetOsByol(value); return *this;} private: bool m_osByol; bool m_osByolHasBeenSet = false; }; } // namespace Model } // namespace drs } // namespace Aws