/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes a route analysis path.See Also:
AWS
* API Reference
The status of the analysis at completion.
*/ inline const RouteAnalysisCompletion& GetCompletionStatus() const{ return m_completionStatus; } /** *The status of the analysis at completion.
*/ inline bool CompletionStatusHasBeenSet() const { return m_completionStatusHasBeenSet; } /** *The status of the analysis at completion.
*/ inline void SetCompletionStatus(const RouteAnalysisCompletion& value) { m_completionStatusHasBeenSet = true; m_completionStatus = value; } /** *The status of the analysis at completion.
*/ inline void SetCompletionStatus(RouteAnalysisCompletion&& value) { m_completionStatusHasBeenSet = true; m_completionStatus = std::move(value); } /** *The status of the analysis at completion.
*/ inline RouteAnalysisPath& WithCompletionStatus(const RouteAnalysisCompletion& value) { SetCompletionStatus(value); return *this;} /** *The status of the analysis at completion.
*/ inline RouteAnalysisPath& WithCompletionStatus(RouteAnalysisCompletion&& value) { SetCompletionStatus(std::move(value)); return *this;} /** *The route analysis path.
*/ inline const Aws::VectorThe route analysis path.
*/ inline bool PathHasBeenSet() const { return m_pathHasBeenSet; } /** *The route analysis path.
*/ inline void SetPath(const Aws::VectorThe route analysis path.
*/ inline void SetPath(Aws::VectorThe route analysis path.
*/ inline RouteAnalysisPath& WithPath(const Aws::VectorThe route analysis path.
*/ inline RouteAnalysisPath& WithPath(Aws::VectorThe route analysis path.
*/ inline RouteAnalysisPath& AddPath(const PathComponent& value) { m_pathHasBeenSet = true; m_path.push_back(value); return *this; } /** *The route analysis path.
*/ inline RouteAnalysisPath& AddPath(PathComponent&& value) { m_pathHasBeenSet = true; m_path.push_back(std::move(value)); return *this; } private: RouteAnalysisCompletion m_completionStatus; bool m_completionStatusHasBeenSet = false; Aws::Vector