/** * 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 namespace Aws { namespace EC2 { namespace Model { /** */ class DescribeNetworkInsightsAnalysesRequest : public EC2Request { public: AWS_EC2_API DescribeNetworkInsightsAnalysesRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DescribeNetworkInsightsAnalyses"; } AWS_EC2_API Aws::String SerializePayload() const override; protected: AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

The ID of the network insights analyses. You must specify either analysis IDs * or a path ID.

*/ inline const Aws::Vector& GetNetworkInsightsAnalysisIds() const{ return m_networkInsightsAnalysisIds; } /** *

The ID of the network insights analyses. You must specify either analysis IDs * or a path ID.

*/ inline bool NetworkInsightsAnalysisIdsHasBeenSet() const { return m_networkInsightsAnalysisIdsHasBeenSet; } /** *

The ID of the network insights analyses. You must specify either analysis IDs * or a path ID.

*/ inline void SetNetworkInsightsAnalysisIds(const Aws::Vector& value) { m_networkInsightsAnalysisIdsHasBeenSet = true; m_networkInsightsAnalysisIds = value; } /** *

The ID of the network insights analyses. You must specify either analysis IDs * or a path ID.

*/ inline void SetNetworkInsightsAnalysisIds(Aws::Vector&& value) { m_networkInsightsAnalysisIdsHasBeenSet = true; m_networkInsightsAnalysisIds = std::move(value); } /** *

The ID of the network insights analyses. You must specify either analysis IDs * or a path ID.

*/ inline DescribeNetworkInsightsAnalysesRequest& WithNetworkInsightsAnalysisIds(const Aws::Vector& value) { SetNetworkInsightsAnalysisIds(value); return *this;} /** *

The ID of the network insights analyses. You must specify either analysis IDs * or a path ID.

*/ inline DescribeNetworkInsightsAnalysesRequest& WithNetworkInsightsAnalysisIds(Aws::Vector&& value) { SetNetworkInsightsAnalysisIds(std::move(value)); return *this;} /** *

The ID of the network insights analyses. You must specify either analysis IDs * or a path ID.

*/ inline DescribeNetworkInsightsAnalysesRequest& AddNetworkInsightsAnalysisIds(const Aws::String& value) { m_networkInsightsAnalysisIdsHasBeenSet = true; m_networkInsightsAnalysisIds.push_back(value); return *this; } /** *

The ID of the network insights analyses. You must specify either analysis IDs * or a path ID.

*/ inline DescribeNetworkInsightsAnalysesRequest& AddNetworkInsightsAnalysisIds(Aws::String&& value) { m_networkInsightsAnalysisIdsHasBeenSet = true; m_networkInsightsAnalysisIds.push_back(std::move(value)); return *this; } /** *

The ID of the network insights analyses. You must specify either analysis IDs * or a path ID.

*/ inline DescribeNetworkInsightsAnalysesRequest& AddNetworkInsightsAnalysisIds(const char* value) { m_networkInsightsAnalysisIdsHasBeenSet = true; m_networkInsightsAnalysisIds.push_back(value); return *this; } /** *

The ID of the path. You must specify either a path ID or analysis IDs.

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

The ID of the path. You must specify either a path ID or analysis IDs.

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

The ID of the path. You must specify either a path ID or analysis IDs.

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

The ID of the path. You must specify either a path ID or analysis IDs.

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

The ID of the path. You must specify either a path ID or analysis IDs.

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

The ID of the path. You must specify either a path ID or analysis IDs.

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

The ID of the path. You must specify either a path ID or analysis IDs.

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

The ID of the path. You must specify either a path ID or analysis IDs.

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

The time when the network insights analyses started.

*/ inline const Aws::Utils::DateTime& GetAnalysisStartTime() const{ return m_analysisStartTime; } /** *

The time when the network insights analyses started.

*/ inline bool AnalysisStartTimeHasBeenSet() const { return m_analysisStartTimeHasBeenSet; } /** *

The time when the network insights analyses started.

*/ inline void SetAnalysisStartTime(const Aws::Utils::DateTime& value) { m_analysisStartTimeHasBeenSet = true; m_analysisStartTime = value; } /** *

The time when the network insights analyses started.

*/ inline void SetAnalysisStartTime(Aws::Utils::DateTime&& value) { m_analysisStartTimeHasBeenSet = true; m_analysisStartTime = std::move(value); } /** *

The time when the network insights analyses started.

*/ inline DescribeNetworkInsightsAnalysesRequest& WithAnalysisStartTime(const Aws::Utils::DateTime& value) { SetAnalysisStartTime(value); return *this;} /** *

The time when the network insights analyses started.

*/ inline DescribeNetworkInsightsAnalysesRequest& WithAnalysisStartTime(Aws::Utils::DateTime&& value) { SetAnalysisStartTime(std::move(value)); return *this;} /** *

The time when the network insights analyses ended.

*/ inline const Aws::Utils::DateTime& GetAnalysisEndTime() const{ return m_analysisEndTime; } /** *

The time when the network insights analyses ended.

*/ inline bool AnalysisEndTimeHasBeenSet() const { return m_analysisEndTimeHasBeenSet; } /** *

The time when the network insights analyses ended.

*/ inline void SetAnalysisEndTime(const Aws::Utils::DateTime& value) { m_analysisEndTimeHasBeenSet = true; m_analysisEndTime = value; } /** *

The time when the network insights analyses ended.

*/ inline void SetAnalysisEndTime(Aws::Utils::DateTime&& value) { m_analysisEndTimeHasBeenSet = true; m_analysisEndTime = std::move(value); } /** *

The time when the network insights analyses ended.

*/ inline DescribeNetworkInsightsAnalysesRequest& WithAnalysisEndTime(const Aws::Utils::DateTime& value) { SetAnalysisEndTime(value); return *this;} /** *

The time when the network insights analyses ended.

*/ inline DescribeNetworkInsightsAnalysesRequest& WithAnalysisEndTime(Aws::Utils::DateTime&& value) { SetAnalysisEndTime(std::move(value)); return *this;} /** *

The filters. The following are the possible values:

  • *

    path-found - A Boolean value that indicates whether a feasible path is * found.

  • status - The status of the analysis (running | * succeeded | failed).

*/ inline const Aws::Vector& GetFilters() const{ return m_filters; } /** *

The filters. The following are the possible values:

  • *

    path-found - A Boolean value that indicates whether a feasible path is * found.

  • status - The status of the analysis (running | * succeeded | failed).

*/ inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; } /** *

The filters. The following are the possible values:

  • *

    path-found - A Boolean value that indicates whether a feasible path is * found.

  • status - The status of the analysis (running | * succeeded | failed).

*/ inline void SetFilters(const Aws::Vector& value) { m_filtersHasBeenSet = true; m_filters = value; } /** *

The filters. The following are the possible values:

  • *

    path-found - A Boolean value that indicates whether a feasible path is * found.

  • status - The status of the analysis (running | * succeeded | failed).

*/ inline void SetFilters(Aws::Vector&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); } /** *

The filters. The following are the possible values:

  • *

    path-found - A Boolean value that indicates whether a feasible path is * found.

  • status - The status of the analysis (running | * succeeded | failed).

*/ inline DescribeNetworkInsightsAnalysesRequest& WithFilters(const Aws::Vector& value) { SetFilters(value); return *this;} /** *

The filters. The following are the possible values:

  • *

    path-found - A Boolean value that indicates whether a feasible path is * found.

  • status - The status of the analysis (running | * succeeded | failed).

*/ inline DescribeNetworkInsightsAnalysesRequest& WithFilters(Aws::Vector&& value) { SetFilters(std::move(value)); return *this;} /** *

The filters. The following are the possible values:

  • *

    path-found - A Boolean value that indicates whether a feasible path is * found.

  • status - The status of the analysis (running | * succeeded | failed).

*/ inline DescribeNetworkInsightsAnalysesRequest& AddFilters(const Filter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; } /** *

The filters. The following are the possible values:

  • *

    path-found - A Boolean value that indicates whether a feasible path is * found.

  • status - The status of the analysis (running | * succeeded | failed).

*/ inline DescribeNetworkInsightsAnalysesRequest& AddFilters(Filter&& value) { m_filtersHasBeenSet = true; m_filters.push_back(std::move(value)); return *this; } /** *

The maximum number of results to return with a single call. To retrieve the * remaining results, make another call with the returned nextToken * value.

*/ inline int GetMaxResults() const{ return m_maxResults; } /** *

The maximum number of results to return with a single call. To retrieve the * remaining results, make another call with the returned nextToken * value.

*/ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** *

The maximum number of results to return with a single call. To retrieve the * remaining results, make another call with the returned nextToken * value.

*/ inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** *

The maximum number of results to return with a single call. To retrieve the * remaining results, make another call with the returned nextToken * value.

*/ inline DescribeNetworkInsightsAnalysesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline bool GetDryRun() const{ return m_dryRun; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline DescribeNetworkInsightsAnalysesRequest& WithDryRun(bool value) { SetDryRun(value); return *this;} /** *

The token for the next page of results.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

The token for the next page of results.

*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *

The token for the next page of results.

*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *

The token for the next page of results.

*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *

The token for the next page of results.

*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *

The token for the next page of results.

*/ inline DescribeNetworkInsightsAnalysesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

The token for the next page of results.

*/ inline DescribeNetworkInsightsAnalysesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

The token for the next page of results.

*/ inline DescribeNetworkInsightsAnalysesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::Vector m_networkInsightsAnalysisIds; bool m_networkInsightsAnalysisIdsHasBeenSet = false; Aws::String m_networkInsightsPathId; bool m_networkInsightsPathIdHasBeenSet = false; Aws::Utils::DateTime m_analysisStartTime; bool m_analysisStartTimeHasBeenSet = false; Aws::Utils::DateTime m_analysisEndTime; bool m_analysisEndTimeHasBeenSet = false; Aws::Vector m_filters; bool m_filtersHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; bool m_dryRun; bool m_dryRunHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws