/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/dms/DatabaseMigrationService_EXPORTS.h> #include <aws/dms/DatabaseMigrationServiceRequest.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { namespace DatabaseMigrationService { namespace Model { /** */ class DescribeFleetAdvisorLsaAnalysisRequest : public DatabaseMigrationServiceRequest { public: AWS_DATABASEMIGRATIONSERVICE_API DescribeFleetAdvisorLsaAnalysisRequest(); // 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 "DescribeFleetAdvisorLsaAnalysis"; } AWS_DATABASEMIGRATIONSERVICE_API Aws::String SerializePayload() const override; AWS_DATABASEMIGRATIONSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** * <p>Sets the maximum number of records returned in the response.</p> */ inline int GetMaxRecords() const{ return m_maxRecords; } /** * <p>Sets the maximum number of records returned in the response.</p> */ inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; } /** * <p>Sets the maximum number of records returned in the response.</p> */ inline void SetMaxRecords(int value) { m_maxRecordsHasBeenSet = true; m_maxRecords = value; } /** * <p>Sets the maximum number of records returned in the response.</p> */ inline DescribeFleetAdvisorLsaAnalysisRequest& WithMaxRecords(int value) { SetMaxRecords(value); return *this;} /** * <p>If <code>NextToken</code> is returned by a previous response, there are more * results available. The value of <code>NextToken</code> is a unique pagination * token for each page. Make the call again using the returned token to retrieve * the next page. Keep all other arguments unchanged. </p> */ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** * <p>If <code>NextToken</code> is returned by a previous response, there are more * results available. The value of <code>NextToken</code> is a unique pagination * token for each page. Make the call again using the returned token to retrieve * the next page. Keep all other arguments unchanged. </p> */ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** * <p>If <code>NextToken</code> is returned by a previous response, there are more * results available. The value of <code>NextToken</code> is a unique pagination * token for each page. Make the call again using the returned token to retrieve * the next page. Keep all other arguments unchanged. </p> */ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** * <p>If <code>NextToken</code> is returned by a previous response, there are more * results available. The value of <code>NextToken</code> is a unique pagination * token for each page. Make the call again using the returned token to retrieve * the next page. Keep all other arguments unchanged. </p> */ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** * <p>If <code>NextToken</code> is returned by a previous response, there are more * results available. The value of <code>NextToken</code> is a unique pagination * token for each page. Make the call again using the returned token to retrieve * the next page. Keep all other arguments unchanged. </p> */ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** * <p>If <code>NextToken</code> is returned by a previous response, there are more * results available. The value of <code>NextToken</code> is a unique pagination * token for each page. Make the call again using the returned token to retrieve * the next page. Keep all other arguments unchanged. </p> */ inline DescribeFleetAdvisorLsaAnalysisRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** * <p>If <code>NextToken</code> is returned by a previous response, there are more * results available. The value of <code>NextToken</code> is a unique pagination * token for each page. Make the call again using the returned token to retrieve * the next page. Keep all other arguments unchanged. </p> */ inline DescribeFleetAdvisorLsaAnalysisRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** * <p>If <code>NextToken</code> is returned by a previous response, there are more * results available. The value of <code>NextToken</code> is a unique pagination * token for each page. Make the call again using the returned token to retrieve * the next page. Keep all other arguments unchanged. </p> */ inline DescribeFleetAdvisorLsaAnalysisRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: int m_maxRecords; bool m_maxRecordsHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws