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

Describes a network insights analysis.

See Also:

AWS * API Reference

*/ class NetworkInsightsAnalysis { public: AWS_EC2_API NetworkInsightsAnalysis(); AWS_EC2_API NetworkInsightsAnalysis(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API NetworkInsightsAnalysis& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

The ID of the network insights analysis.

*/ inline const Aws::String& GetNetworkInsightsAnalysisId() const{ return m_networkInsightsAnalysisId; } /** *

The ID of the network insights analysis.

*/ inline bool NetworkInsightsAnalysisIdHasBeenSet() const { return m_networkInsightsAnalysisIdHasBeenSet; } /** *

The ID of the network insights analysis.

*/ inline void SetNetworkInsightsAnalysisId(const Aws::String& value) { m_networkInsightsAnalysisIdHasBeenSet = true; m_networkInsightsAnalysisId = value; } /** *

The ID of the network insights analysis.

*/ inline void SetNetworkInsightsAnalysisId(Aws::String&& value) { m_networkInsightsAnalysisIdHasBeenSet = true; m_networkInsightsAnalysisId = std::move(value); } /** *

The ID of the network insights analysis.

*/ inline void SetNetworkInsightsAnalysisId(const char* value) { m_networkInsightsAnalysisIdHasBeenSet = true; m_networkInsightsAnalysisId.assign(value); } /** *

The ID of the network insights analysis.

*/ inline NetworkInsightsAnalysis& WithNetworkInsightsAnalysisId(const Aws::String& value) { SetNetworkInsightsAnalysisId(value); return *this;} /** *

The ID of the network insights analysis.

*/ inline NetworkInsightsAnalysis& WithNetworkInsightsAnalysisId(Aws::String&& value) { SetNetworkInsightsAnalysisId(std::move(value)); return *this;} /** *

The ID of the network insights analysis.

*/ inline NetworkInsightsAnalysis& WithNetworkInsightsAnalysisId(const char* value) { SetNetworkInsightsAnalysisId(value); return *this;} /** *

The Amazon Resource Name (ARN) of the network insights analysis.

*/ inline const Aws::String& GetNetworkInsightsAnalysisArn() const{ return m_networkInsightsAnalysisArn; } /** *

The Amazon Resource Name (ARN) of the network insights analysis.

*/ inline bool NetworkInsightsAnalysisArnHasBeenSet() const { return m_networkInsightsAnalysisArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the network insights analysis.

*/ inline void SetNetworkInsightsAnalysisArn(const Aws::String& value) { m_networkInsightsAnalysisArnHasBeenSet = true; m_networkInsightsAnalysisArn = value; } /** *

The Amazon Resource Name (ARN) of the network insights analysis.

*/ inline void SetNetworkInsightsAnalysisArn(Aws::String&& value) { m_networkInsightsAnalysisArnHasBeenSet = true; m_networkInsightsAnalysisArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the network insights analysis.

*/ inline void SetNetworkInsightsAnalysisArn(const char* value) { m_networkInsightsAnalysisArnHasBeenSet = true; m_networkInsightsAnalysisArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the network insights analysis.

*/ inline NetworkInsightsAnalysis& WithNetworkInsightsAnalysisArn(const Aws::String& value) { SetNetworkInsightsAnalysisArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the network insights analysis.

*/ inline NetworkInsightsAnalysis& WithNetworkInsightsAnalysisArn(Aws::String&& value) { SetNetworkInsightsAnalysisArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the network insights analysis.

*/ inline NetworkInsightsAnalysis& WithNetworkInsightsAnalysisArn(const char* value) { SetNetworkInsightsAnalysisArn(value); return *this;} /** *

The ID of the path.

*/ inline const Aws::String& GetNetworkInsightsPathId() const{ return m_networkInsightsPathId; } /** *

The ID of the path.

*/ inline bool NetworkInsightsPathIdHasBeenSet() const { return m_networkInsightsPathIdHasBeenSet; } /** *

The ID of the path.

*/ inline void SetNetworkInsightsPathId(const Aws::String& value) { m_networkInsightsPathIdHasBeenSet = true; m_networkInsightsPathId = value; } /** *

The ID of the path.

*/ inline void SetNetworkInsightsPathId(Aws::String&& value) { m_networkInsightsPathIdHasBeenSet = true; m_networkInsightsPathId = std::move(value); } /** *

The ID of the path.

*/ inline void SetNetworkInsightsPathId(const char* value) { m_networkInsightsPathIdHasBeenSet = true; m_networkInsightsPathId.assign(value); } /** *

The ID of the path.

*/ inline NetworkInsightsAnalysis& WithNetworkInsightsPathId(const Aws::String& value) { SetNetworkInsightsPathId(value); return *this;} /** *

The ID of the path.

*/ inline NetworkInsightsAnalysis& WithNetworkInsightsPathId(Aws::String&& value) { SetNetworkInsightsPathId(std::move(value)); return *this;} /** *

The ID of the path.

*/ inline NetworkInsightsAnalysis& WithNetworkInsightsPathId(const char* value) { SetNetworkInsightsPathId(value); return *this;} /** *

The member accounts that contain resources that the path can traverse.

*/ inline const Aws::Vector& GetAdditionalAccounts() const{ return m_additionalAccounts; } /** *

The member accounts that contain resources that the path can traverse.

*/ inline bool AdditionalAccountsHasBeenSet() const { return m_additionalAccountsHasBeenSet; } /** *

The member accounts that contain resources that the path can traverse.

*/ inline void SetAdditionalAccounts(const Aws::Vector& value) { m_additionalAccountsHasBeenSet = true; m_additionalAccounts = value; } /** *

The member accounts that contain resources that the path can traverse.

*/ inline void SetAdditionalAccounts(Aws::Vector&& value) { m_additionalAccountsHasBeenSet = true; m_additionalAccounts = std::move(value); } /** *

The member accounts that contain resources that the path can traverse.

*/ inline NetworkInsightsAnalysis& WithAdditionalAccounts(const Aws::Vector& value) { SetAdditionalAccounts(value); return *this;} /** *

The member accounts that contain resources that the path can traverse.

*/ inline NetworkInsightsAnalysis& WithAdditionalAccounts(Aws::Vector&& value) { SetAdditionalAccounts(std::move(value)); return *this;} /** *

The member accounts that contain resources that the path can traverse.

*/ inline NetworkInsightsAnalysis& AddAdditionalAccounts(const Aws::String& value) { m_additionalAccountsHasBeenSet = true; m_additionalAccounts.push_back(value); return *this; } /** *

The member accounts that contain resources that the path can traverse.

*/ inline NetworkInsightsAnalysis& AddAdditionalAccounts(Aws::String&& value) { m_additionalAccountsHasBeenSet = true; m_additionalAccounts.push_back(std::move(value)); return *this; } /** *

The member accounts that contain resources that the path can traverse.

*/ inline NetworkInsightsAnalysis& AddAdditionalAccounts(const char* value) { m_additionalAccountsHasBeenSet = true; m_additionalAccounts.push_back(value); return *this; } /** *

The Amazon Resource Names (ARN) of the resources that the path must * traverse.

*/ inline const Aws::Vector& GetFilterInArns() const{ return m_filterInArns; } /** *

The Amazon Resource Names (ARN) of the resources that the path must * traverse.

*/ inline bool FilterInArnsHasBeenSet() const { return m_filterInArnsHasBeenSet; } /** *

The Amazon Resource Names (ARN) of the resources that the path must * traverse.

*/ inline void SetFilterInArns(const Aws::Vector& value) { m_filterInArnsHasBeenSet = true; m_filterInArns = value; } /** *

The Amazon Resource Names (ARN) of the resources that the path must * traverse.

*/ inline void SetFilterInArns(Aws::Vector&& value) { m_filterInArnsHasBeenSet = true; m_filterInArns = std::move(value); } /** *

The Amazon Resource Names (ARN) of the resources that the path must * traverse.

*/ inline NetworkInsightsAnalysis& WithFilterInArns(const Aws::Vector& value) { SetFilterInArns(value); return *this;} /** *

The Amazon Resource Names (ARN) of the resources that the path must * traverse.

*/ inline NetworkInsightsAnalysis& WithFilterInArns(Aws::Vector&& value) { SetFilterInArns(std::move(value)); return *this;} /** *

The Amazon Resource Names (ARN) of the resources that the path must * traverse.

*/ inline NetworkInsightsAnalysis& AddFilterInArns(const Aws::String& value) { m_filterInArnsHasBeenSet = true; m_filterInArns.push_back(value); return *this; } /** *

The Amazon Resource Names (ARN) of the resources that the path must * traverse.

*/ inline NetworkInsightsAnalysis& AddFilterInArns(Aws::String&& value) { m_filterInArnsHasBeenSet = true; m_filterInArns.push_back(std::move(value)); return *this; } /** *

The Amazon Resource Names (ARN) of the resources that the path must * traverse.

*/ inline NetworkInsightsAnalysis& AddFilterInArns(const char* value) { m_filterInArnsHasBeenSet = true; m_filterInArns.push_back(value); return *this; } /** *

The time the analysis started.

*/ inline const Aws::Utils::DateTime& GetStartDate() const{ return m_startDate; } /** *

The time the analysis started.

*/ inline bool StartDateHasBeenSet() const { return m_startDateHasBeenSet; } /** *

The time the analysis started.

*/ inline void SetStartDate(const Aws::Utils::DateTime& value) { m_startDateHasBeenSet = true; m_startDate = value; } /** *

The time the analysis started.

*/ inline void SetStartDate(Aws::Utils::DateTime&& value) { m_startDateHasBeenSet = true; m_startDate = std::move(value); } /** *

The time the analysis started.

*/ inline NetworkInsightsAnalysis& WithStartDate(const Aws::Utils::DateTime& value) { SetStartDate(value); return *this;} /** *

The time the analysis started.

*/ inline NetworkInsightsAnalysis& WithStartDate(Aws::Utils::DateTime&& value) { SetStartDate(std::move(value)); return *this;} /** *

The status of the network insights analysis.

*/ inline const AnalysisStatus& GetStatus() const{ return m_status; } /** *

The status of the network insights analysis.

*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *

The status of the network insights analysis.

*/ inline void SetStatus(const AnalysisStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *

The status of the network insights analysis.

*/ inline void SetStatus(AnalysisStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *

The status of the network insights analysis.

*/ inline NetworkInsightsAnalysis& WithStatus(const AnalysisStatus& value) { SetStatus(value); return *this;} /** *

The status of the network insights analysis.

*/ inline NetworkInsightsAnalysis& WithStatus(AnalysisStatus&& value) { SetStatus(std::move(value)); return *this;} /** *

The status message, if the status is failed.

*/ inline const Aws::String& GetStatusMessage() const{ return m_statusMessage; } /** *

The status message, if the status is failed.

*/ inline bool StatusMessageHasBeenSet() const { return m_statusMessageHasBeenSet; } /** *

The status message, if the status is failed.

*/ inline void SetStatusMessage(const Aws::String& value) { m_statusMessageHasBeenSet = true; m_statusMessage = value; } /** *

The status message, if the status is failed.

*/ inline void SetStatusMessage(Aws::String&& value) { m_statusMessageHasBeenSet = true; m_statusMessage = std::move(value); } /** *

The status message, if the status is failed.

*/ inline void SetStatusMessage(const char* value) { m_statusMessageHasBeenSet = true; m_statusMessage.assign(value); } /** *

The status message, if the status is failed.

*/ inline NetworkInsightsAnalysis& WithStatusMessage(const Aws::String& value) { SetStatusMessage(value); return *this;} /** *

The status message, if the status is failed.

*/ inline NetworkInsightsAnalysis& WithStatusMessage(Aws::String&& value) { SetStatusMessage(std::move(value)); return *this;} /** *

The status message, if the status is failed.

*/ inline NetworkInsightsAnalysis& WithStatusMessage(const char* value) { SetStatusMessage(value); return *this;} /** *

The warning message.

*/ inline const Aws::String& GetWarningMessage() const{ return m_warningMessage; } /** *

The warning message.

*/ inline bool WarningMessageHasBeenSet() const { return m_warningMessageHasBeenSet; } /** *

The warning message.

*/ inline void SetWarningMessage(const Aws::String& value) { m_warningMessageHasBeenSet = true; m_warningMessage = value; } /** *

The warning message.

*/ inline void SetWarningMessage(Aws::String&& value) { m_warningMessageHasBeenSet = true; m_warningMessage = std::move(value); } /** *

The warning message.

*/ inline void SetWarningMessage(const char* value) { m_warningMessageHasBeenSet = true; m_warningMessage.assign(value); } /** *

The warning message.

*/ inline NetworkInsightsAnalysis& WithWarningMessage(const Aws::String& value) { SetWarningMessage(value); return *this;} /** *

The warning message.

*/ inline NetworkInsightsAnalysis& WithWarningMessage(Aws::String&& value) { SetWarningMessage(std::move(value)); return *this;} /** *

The warning message.

*/ inline NetworkInsightsAnalysis& WithWarningMessage(const char* value) { SetWarningMessage(value); return *this;} /** *

Indicates whether the destination is reachable from the source.

*/ inline bool GetNetworkPathFound() const{ return m_networkPathFound; } /** *

Indicates whether the destination is reachable from the source.

*/ inline bool NetworkPathFoundHasBeenSet() const { return m_networkPathFoundHasBeenSet; } /** *

Indicates whether the destination is reachable from the source.

*/ inline void SetNetworkPathFound(bool value) { m_networkPathFoundHasBeenSet = true; m_networkPathFound = value; } /** *

Indicates whether the destination is reachable from the source.

*/ inline NetworkInsightsAnalysis& WithNetworkPathFound(bool value) { SetNetworkPathFound(value); return *this;} /** *

The components in the path from source to destination.

*/ inline const Aws::Vector& GetForwardPathComponents() const{ return m_forwardPathComponents; } /** *

The components in the path from source to destination.

*/ inline bool ForwardPathComponentsHasBeenSet() const { return m_forwardPathComponentsHasBeenSet; } /** *

The components in the path from source to destination.

*/ inline void SetForwardPathComponents(const Aws::Vector& value) { m_forwardPathComponentsHasBeenSet = true; m_forwardPathComponents = value; } /** *

The components in the path from source to destination.

*/ inline void SetForwardPathComponents(Aws::Vector&& value) { m_forwardPathComponentsHasBeenSet = true; m_forwardPathComponents = std::move(value); } /** *

The components in the path from source to destination.

*/ inline NetworkInsightsAnalysis& WithForwardPathComponents(const Aws::Vector& value) { SetForwardPathComponents(value); return *this;} /** *

The components in the path from source to destination.

*/ inline NetworkInsightsAnalysis& WithForwardPathComponents(Aws::Vector&& value) { SetForwardPathComponents(std::move(value)); return *this;} /** *

The components in the path from source to destination.

*/ inline NetworkInsightsAnalysis& AddForwardPathComponents(const PathComponent& value) { m_forwardPathComponentsHasBeenSet = true; m_forwardPathComponents.push_back(value); return *this; } /** *

The components in the path from source to destination.

*/ inline NetworkInsightsAnalysis& AddForwardPathComponents(PathComponent&& value) { m_forwardPathComponentsHasBeenSet = true; m_forwardPathComponents.push_back(std::move(value)); return *this; } /** *

The components in the path from destination to source.

*/ inline const Aws::Vector& GetReturnPathComponents() const{ return m_returnPathComponents; } /** *

The components in the path from destination to source.

*/ inline bool ReturnPathComponentsHasBeenSet() const { return m_returnPathComponentsHasBeenSet; } /** *

The components in the path from destination to source.

*/ inline void SetReturnPathComponents(const Aws::Vector& value) { m_returnPathComponentsHasBeenSet = true; m_returnPathComponents = value; } /** *

The components in the path from destination to source.

*/ inline void SetReturnPathComponents(Aws::Vector&& value) { m_returnPathComponentsHasBeenSet = true; m_returnPathComponents = std::move(value); } /** *

The components in the path from destination to source.

*/ inline NetworkInsightsAnalysis& WithReturnPathComponents(const Aws::Vector& value) { SetReturnPathComponents(value); return *this;} /** *

The components in the path from destination to source.

*/ inline NetworkInsightsAnalysis& WithReturnPathComponents(Aws::Vector&& value) { SetReturnPathComponents(std::move(value)); return *this;} /** *

The components in the path from destination to source.

*/ inline NetworkInsightsAnalysis& AddReturnPathComponents(const PathComponent& value) { m_returnPathComponentsHasBeenSet = true; m_returnPathComponents.push_back(value); return *this; } /** *

The components in the path from destination to source.

*/ inline NetworkInsightsAnalysis& AddReturnPathComponents(PathComponent&& value) { m_returnPathComponentsHasBeenSet = true; m_returnPathComponents.push_back(std::move(value)); return *this; } /** *

The explanations. For more information, see Reachability * Analyzer explanation codes.

*/ inline const Aws::Vector& GetExplanations() const{ return m_explanations; } /** *

The explanations. For more information, see Reachability * Analyzer explanation codes.

*/ inline bool ExplanationsHasBeenSet() const { return m_explanationsHasBeenSet; } /** *

The explanations. For more information, see Reachability * Analyzer explanation codes.

*/ inline void SetExplanations(const Aws::Vector& value) { m_explanationsHasBeenSet = true; m_explanations = value; } /** *

The explanations. For more information, see Reachability * Analyzer explanation codes.

*/ inline void SetExplanations(Aws::Vector&& value) { m_explanationsHasBeenSet = true; m_explanations = std::move(value); } /** *

The explanations. For more information, see Reachability * Analyzer explanation codes.

*/ inline NetworkInsightsAnalysis& WithExplanations(const Aws::Vector& value) { SetExplanations(value); return *this;} /** *

The explanations. For more information, see Reachability * Analyzer explanation codes.

*/ inline NetworkInsightsAnalysis& WithExplanations(Aws::Vector&& value) { SetExplanations(std::move(value)); return *this;} /** *

The explanations. For more information, see Reachability * Analyzer explanation codes.

*/ inline NetworkInsightsAnalysis& AddExplanations(const Explanation& value) { m_explanationsHasBeenSet = true; m_explanations.push_back(value); return *this; } /** *

The explanations. For more information, see Reachability * Analyzer explanation codes.

*/ inline NetworkInsightsAnalysis& AddExplanations(Explanation&& value) { m_explanationsHasBeenSet = true; m_explanations.push_back(std::move(value)); return *this; } /** *

Potential intermediate components.

*/ inline const Aws::Vector& GetAlternatePathHints() const{ return m_alternatePathHints; } /** *

Potential intermediate components.

*/ inline bool AlternatePathHintsHasBeenSet() const { return m_alternatePathHintsHasBeenSet; } /** *

Potential intermediate components.

*/ inline void SetAlternatePathHints(const Aws::Vector& value) { m_alternatePathHintsHasBeenSet = true; m_alternatePathHints = value; } /** *

Potential intermediate components.

*/ inline void SetAlternatePathHints(Aws::Vector&& value) { m_alternatePathHintsHasBeenSet = true; m_alternatePathHints = std::move(value); } /** *

Potential intermediate components.

*/ inline NetworkInsightsAnalysis& WithAlternatePathHints(const Aws::Vector& value) { SetAlternatePathHints(value); return *this;} /** *

Potential intermediate components.

*/ inline NetworkInsightsAnalysis& WithAlternatePathHints(Aws::Vector&& value) { SetAlternatePathHints(std::move(value)); return *this;} /** *

Potential intermediate components.

*/ inline NetworkInsightsAnalysis& AddAlternatePathHints(const AlternatePathHint& value) { m_alternatePathHintsHasBeenSet = true; m_alternatePathHints.push_back(value); return *this; } /** *

Potential intermediate components.

*/ inline NetworkInsightsAnalysis& AddAlternatePathHints(AlternatePathHint&& value) { m_alternatePathHintsHasBeenSet = true; m_alternatePathHints.push_back(std::move(value)); return *this; } /** *

Potential intermediate accounts.

*/ inline const Aws::Vector& GetSuggestedAccounts() const{ return m_suggestedAccounts; } /** *

Potential intermediate accounts.

*/ inline bool SuggestedAccountsHasBeenSet() const { return m_suggestedAccountsHasBeenSet; } /** *

Potential intermediate accounts.

*/ inline void SetSuggestedAccounts(const Aws::Vector& value) { m_suggestedAccountsHasBeenSet = true; m_suggestedAccounts = value; } /** *

Potential intermediate accounts.

*/ inline void SetSuggestedAccounts(Aws::Vector&& value) { m_suggestedAccountsHasBeenSet = true; m_suggestedAccounts = std::move(value); } /** *

Potential intermediate accounts.

*/ inline NetworkInsightsAnalysis& WithSuggestedAccounts(const Aws::Vector& value) { SetSuggestedAccounts(value); return *this;} /** *

Potential intermediate accounts.

*/ inline NetworkInsightsAnalysis& WithSuggestedAccounts(Aws::Vector&& value) { SetSuggestedAccounts(std::move(value)); return *this;} /** *

Potential intermediate accounts.

*/ inline NetworkInsightsAnalysis& AddSuggestedAccounts(const Aws::String& value) { m_suggestedAccountsHasBeenSet = true; m_suggestedAccounts.push_back(value); return *this; } /** *

Potential intermediate accounts.

*/ inline NetworkInsightsAnalysis& AddSuggestedAccounts(Aws::String&& value) { m_suggestedAccountsHasBeenSet = true; m_suggestedAccounts.push_back(std::move(value)); return *this; } /** *

Potential intermediate accounts.

*/ inline NetworkInsightsAnalysis& AddSuggestedAccounts(const char* value) { m_suggestedAccountsHasBeenSet = true; m_suggestedAccounts.push_back(value); return *this; } /** *

The tags.

*/ inline const Aws::Vector& GetTags() const{ return m_tags; } /** *

The tags.

*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *

The tags.

*/ inline void SetTags(const Aws::Vector& value) { m_tagsHasBeenSet = true; m_tags = value; } /** *

The tags.

*/ inline void SetTags(Aws::Vector&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); } /** *

The tags.

*/ inline NetworkInsightsAnalysis& WithTags(const Aws::Vector& value) { SetTags(value); return *this;} /** *

The tags.

*/ inline NetworkInsightsAnalysis& WithTags(Aws::Vector&& value) { SetTags(std::move(value)); return *this;} /** *

The tags.

*/ inline NetworkInsightsAnalysis& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; } /** *

The tags.

*/ inline NetworkInsightsAnalysis& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; } private: Aws::String m_networkInsightsAnalysisId; bool m_networkInsightsAnalysisIdHasBeenSet = false; Aws::String m_networkInsightsAnalysisArn; bool m_networkInsightsAnalysisArnHasBeenSet = false; Aws::String m_networkInsightsPathId; bool m_networkInsightsPathIdHasBeenSet = false; Aws::Vector m_additionalAccounts; bool m_additionalAccountsHasBeenSet = false; Aws::Vector m_filterInArns; bool m_filterInArnsHasBeenSet = false; Aws::Utils::DateTime m_startDate; bool m_startDateHasBeenSet = false; AnalysisStatus m_status; bool m_statusHasBeenSet = false; Aws::String m_statusMessage; bool m_statusMessageHasBeenSet = false; Aws::String m_warningMessage; bool m_warningMessageHasBeenSet = false; bool m_networkPathFound; bool m_networkPathFoundHasBeenSet = false; Aws::Vector m_forwardPathComponents; bool m_forwardPathComponentsHasBeenSet = false; Aws::Vector m_returnPathComponents; bool m_returnPathComponentsHasBeenSet = false; Aws::Vector m_explanations; bool m_explanationsHasBeenSet = false; Aws::Vector m_alternatePathHints; bool m_alternatePathHintsHasBeenSet = false; Aws::Vector m_suggestedAccounts; bool m_suggestedAccountsHasBeenSet = false; Aws::Vector m_tags; bool m_tagsHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws