/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about the position of the asset in a rack. See
* Also:
AWS
* API Reference
The position of an asset in a rack measured in rack units.
*/ inline double GetRackElevation() const{ return m_rackElevation; } /** *The position of an asset in a rack measured in rack units.
*/ inline bool RackElevationHasBeenSet() const { return m_rackElevationHasBeenSet; } /** *The position of an asset in a rack measured in rack units.
*/ inline void SetRackElevation(double value) { m_rackElevationHasBeenSet = true; m_rackElevation = value; } /** *The position of an asset in a rack measured in rack units.
*/ inline AssetLocation& WithRackElevation(double value) { SetRackElevation(value); return *this;} private: double m_rackElevation; bool m_rackElevationHasBeenSet = false; }; } // namespace Model } // namespace Outposts } // namespace Aws