/** * 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 IoTFleetWise { namespace Model { /** */ class ListModelManifestsRequest : public IoTFleetWiseRequest { public: AWS_IOTFLEETWISE_API ListModelManifestsRequest(); // 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 "ListModelManifests"; } AWS_IOTFLEETWISE_API Aws::String SerializePayload() const override; AWS_IOTFLEETWISE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The ARN of a signal catalog. If you specify a signal catalog, only the * vehicle models associated with it are returned.

*/ inline const Aws::String& GetSignalCatalogArn() const{ return m_signalCatalogArn; } /** *

The ARN of a signal catalog. If you specify a signal catalog, only the * vehicle models associated with it are returned.

*/ inline bool SignalCatalogArnHasBeenSet() const { return m_signalCatalogArnHasBeenSet; } /** *

The ARN of a signal catalog. If you specify a signal catalog, only the * vehicle models associated with it are returned.

*/ inline void SetSignalCatalogArn(const Aws::String& value) { m_signalCatalogArnHasBeenSet = true; m_signalCatalogArn = value; } /** *

The ARN of a signal catalog. If you specify a signal catalog, only the * vehicle models associated with it are returned.

*/ inline void SetSignalCatalogArn(Aws::String&& value) { m_signalCatalogArnHasBeenSet = true; m_signalCatalogArn = std::move(value); } /** *

The ARN of a signal catalog. If you specify a signal catalog, only the * vehicle models associated with it are returned.

*/ inline void SetSignalCatalogArn(const char* value) { m_signalCatalogArnHasBeenSet = true; m_signalCatalogArn.assign(value); } /** *

The ARN of a signal catalog. If you specify a signal catalog, only the * vehicle models associated with it are returned.

*/ inline ListModelManifestsRequest& WithSignalCatalogArn(const Aws::String& value) { SetSignalCatalogArn(value); return *this;} /** *

The ARN of a signal catalog. If you specify a signal catalog, only the * vehicle models associated with it are returned.

*/ inline ListModelManifestsRequest& WithSignalCatalogArn(Aws::String&& value) { SetSignalCatalogArn(std::move(value)); return *this;} /** *

The ARN of a signal catalog. If you specify a signal catalog, only the * vehicle models associated with it are returned.

*/ inline ListModelManifestsRequest& WithSignalCatalogArn(const char* value) { SetSignalCatalogArn(value); return *this;} /** *

A pagination token for the next set of results.

If the results of a * search are large, only a portion of the results are returned, and a * nextToken pagination token is returned in the response. To retrieve * the next set of results, reissue the search request and include the returned * token. When all results have been returned, the response does not contain a * pagination token value.

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

A pagination token for the next set of results.

If the results of a * search are large, only a portion of the results are returned, and a * nextToken pagination token is returned in the response. To retrieve * the next set of results, reissue the search request and include the returned * token. When all results have been returned, the response does not contain a * pagination token value.

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

A pagination token for the next set of results.

If the results of a * search are large, only a portion of the results are returned, and a * nextToken pagination token is returned in the response. To retrieve * the next set of results, reissue the search request and include the returned * token. When all results have been returned, the response does not contain a * pagination token value.

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

A pagination token for the next set of results.

If the results of a * search are large, only a portion of the results are returned, and a * nextToken pagination token is returned in the response. To retrieve * the next set of results, reissue the search request and include the returned * token. When all results have been returned, the response does not contain a * pagination token value.

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

A pagination token for the next set of results.

If the results of a * search are large, only a portion of the results are returned, and a * nextToken pagination token is returned in the response. To retrieve * the next set of results, reissue the search request and include the returned * token. When all results have been returned, the response does not contain a * pagination token value.

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

A pagination token for the next set of results.

If the results of a * search are large, only a portion of the results are returned, and a * nextToken pagination token is returned in the response. To retrieve * the next set of results, reissue the search request and include the returned * token. When all results have been returned, the response does not contain a * pagination token value.

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

A pagination token for the next set of results.

If the results of a * search are large, only a portion of the results are returned, and a * nextToken pagination token is returned in the response. To retrieve * the next set of results, reissue the search request and include the returned * token. When all results have been returned, the response does not contain a * pagination token value.

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

A pagination token for the next set of results.

If the results of a * search are large, only a portion of the results are returned, and a * nextToken pagination token is returned in the response. To retrieve * the next set of results, reissue the search request and include the returned * token. When all results have been returned, the response does not contain a * pagination token value.

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

The maximum number of items to return, between 1 and 100, inclusive.

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

The maximum number of items to return, between 1 and 100, inclusive.

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

The maximum number of items to return, between 1 and 100, inclusive.

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

The maximum number of items to return, between 1 and 100, inclusive.

*/ inline ListModelManifestsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} private: Aws::String m_signalCatalogArn; bool m_signalCatalogArnHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; }; } // namespace Model } // namespace IoTFleetWise } // namespace Aws