/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Object that determines whether tracking should be used during a contact
* executed with this Config
in the mission profile.See
* Also:
AWS
* API Reference
Current setting for autotrack.
*/ inline const Criticality& GetAutotrack() const{ return m_autotrack; } /** *Current setting for autotrack.
*/ inline bool AutotrackHasBeenSet() const { return m_autotrackHasBeenSet; } /** *Current setting for autotrack.
*/ inline void SetAutotrack(const Criticality& value) { m_autotrackHasBeenSet = true; m_autotrack = value; } /** *Current setting for autotrack.
*/ inline void SetAutotrack(Criticality&& value) { m_autotrackHasBeenSet = true; m_autotrack = std::move(value); } /** *Current setting for autotrack.
*/ inline TrackingConfig& WithAutotrack(const Criticality& value) { SetAutotrack(value); return *this;} /** *Current setting for autotrack.
*/ inline TrackingConfig& WithAutotrack(Criticality&& value) { SetAutotrack(std::move(value)); return *this;} private: Criticality m_autotrack; bool m_autotrackHasBeenSet = false; }; } // namespace Model } // namespace GroundStation } // namespace Aws