/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace MigrationHub { namespace Model { /** */ class ListDiscoveredResourcesRequest : public MigrationHubRequest { public: AWS_MIGRATIONHUB_API ListDiscoveredResourcesRequest(); // 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 "ListDiscoveredResources"; } AWS_MIGRATIONHUB_API Aws::String SerializePayload() const override; AWS_MIGRATIONHUB_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the ProgressUpdateStream.

*/ inline const Aws::String& GetProgressUpdateStream() const{ return m_progressUpdateStream; } /** *

The name of the ProgressUpdateStream.

*/ inline bool ProgressUpdateStreamHasBeenSet() const { return m_progressUpdateStreamHasBeenSet; } /** *

The name of the ProgressUpdateStream.

*/ inline void SetProgressUpdateStream(const Aws::String& value) { m_progressUpdateStreamHasBeenSet = true; m_progressUpdateStream = value; } /** *

The name of the ProgressUpdateStream.

*/ inline void SetProgressUpdateStream(Aws::String&& value) { m_progressUpdateStreamHasBeenSet = true; m_progressUpdateStream = std::move(value); } /** *

The name of the ProgressUpdateStream.

*/ inline void SetProgressUpdateStream(const char* value) { m_progressUpdateStreamHasBeenSet = true; m_progressUpdateStream.assign(value); } /** *

The name of the ProgressUpdateStream.

*/ inline ListDiscoveredResourcesRequest& WithProgressUpdateStream(const Aws::String& value) { SetProgressUpdateStream(value); return *this;} /** *

The name of the ProgressUpdateStream.

*/ inline ListDiscoveredResourcesRequest& WithProgressUpdateStream(Aws::String&& value) { SetProgressUpdateStream(std::move(value)); return *this;} /** *

The name of the ProgressUpdateStream.

*/ inline ListDiscoveredResourcesRequest& WithProgressUpdateStream(const char* value) { SetProgressUpdateStream(value); return *this;} /** *

The name of the MigrationTask. Do not store personal data in this * field.

*/ inline const Aws::String& GetMigrationTaskName() const{ return m_migrationTaskName; } /** *

The name of the MigrationTask. Do not store personal data in this * field.

*/ inline bool MigrationTaskNameHasBeenSet() const { return m_migrationTaskNameHasBeenSet; } /** *

The name of the MigrationTask. Do not store personal data in this * field.

*/ inline void SetMigrationTaskName(const Aws::String& value) { m_migrationTaskNameHasBeenSet = true; m_migrationTaskName = value; } /** *

The name of the MigrationTask. Do not store personal data in this * field.

*/ inline void SetMigrationTaskName(Aws::String&& value) { m_migrationTaskNameHasBeenSet = true; m_migrationTaskName = std::move(value); } /** *

The name of the MigrationTask. Do not store personal data in this * field.

*/ inline void SetMigrationTaskName(const char* value) { m_migrationTaskNameHasBeenSet = true; m_migrationTaskName.assign(value); } /** *

The name of the MigrationTask. Do not store personal data in this * field.

*/ inline ListDiscoveredResourcesRequest& WithMigrationTaskName(const Aws::String& value) { SetMigrationTaskName(value); return *this;} /** *

The name of the MigrationTask. Do not store personal data in this * field.

*/ inline ListDiscoveredResourcesRequest& WithMigrationTaskName(Aws::String&& value) { SetMigrationTaskName(std::move(value)); return *this;} /** *

The name of the MigrationTask. Do not store personal data in this * field.

*/ inline ListDiscoveredResourcesRequest& WithMigrationTaskName(const char* value) { SetMigrationTaskName(value); return *this;} /** *

If a NextToken was returned by a previous call, there are more * results available. To retrieve the next page of results, make the call again * using the returned token in NextToken.

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

If a NextToken was returned by a previous call, there are more * results available. To retrieve the next page of results, make the call again * using the returned token in NextToken.

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

If a NextToken was returned by a previous call, there are more * results available. To retrieve the next page of results, make the call again * using the returned token in NextToken.

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

If a NextToken was returned by a previous call, there are more * results available. To retrieve the next page of results, make the call again * using the returned token in NextToken.

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

If a NextToken was returned by a previous call, there are more * results available. To retrieve the next page of results, make the call again * using the returned token in NextToken.

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

If a NextToken was returned by a previous call, there are more * results available. To retrieve the next page of results, make the call again * using the returned token in NextToken.

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

If a NextToken was returned by a previous call, there are more * results available. To retrieve the next page of results, make the call again * using the returned token in NextToken.

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

If a NextToken was returned by a previous call, there are more * results available. To retrieve the next page of results, make the call again * using the returned token in NextToken.

*/ inline ListDiscoveredResourcesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

The maximum number of results returned per page.

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

The maximum number of results returned per page.

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

The maximum number of results returned per page.

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

The maximum number of results returned per page.

*/ inline ListDiscoveredResourcesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} private: Aws::String m_progressUpdateStream; bool m_progressUpdateStreamHasBeenSet = false; Aws::String m_migrationTaskName; bool m_migrationTaskNameHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; }; } // namespace Model } // namespace MigrationHub } // namespace Aws