/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace GroundStation { namespace Model { /** *

Object that determines whether tracking should be used during a contact * executed with this Config in the mission profile.

See * Also:

AWS * API Reference

*/ class TrackingConfig { public: AWS_GROUNDSTATION_API TrackingConfig(); AWS_GROUNDSTATION_API TrackingConfig(Aws::Utils::Json::JsonView jsonValue); AWS_GROUNDSTATION_API TrackingConfig& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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