/** * 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 Http { class URI; } //namespace Http namespace Greengrass { namespace Model { /** */ class ListBulkDeploymentDetailedReportsRequest : public GreengrassRequest { public: AWS_GREENGRASS_API ListBulkDeploymentDetailedReportsRequest(); // 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 "ListBulkDeploymentDetailedReports"; } AWS_GREENGRASS_API Aws::String SerializePayload() const override; AWS_GREENGRASS_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; /** * The ID of the bulk deployment. */ inline const Aws::String& GetBulkDeploymentId() const{ return m_bulkDeploymentId; } /** * The ID of the bulk deployment. */ inline bool BulkDeploymentIdHasBeenSet() const { return m_bulkDeploymentIdHasBeenSet; } /** * The ID of the bulk deployment. */ inline void SetBulkDeploymentId(const Aws::String& value) { m_bulkDeploymentIdHasBeenSet = true; m_bulkDeploymentId = value; } /** * The ID of the bulk deployment. */ inline void SetBulkDeploymentId(Aws::String&& value) { m_bulkDeploymentIdHasBeenSet = true; m_bulkDeploymentId = std::move(value); } /** * The ID of the bulk deployment. */ inline void SetBulkDeploymentId(const char* value) { m_bulkDeploymentIdHasBeenSet = true; m_bulkDeploymentId.assign(value); } /** * The ID of the bulk deployment. */ inline ListBulkDeploymentDetailedReportsRequest& WithBulkDeploymentId(const Aws::String& value) { SetBulkDeploymentId(value); return *this;} /** * The ID of the bulk deployment. */ inline ListBulkDeploymentDetailedReportsRequest& WithBulkDeploymentId(Aws::String&& value) { SetBulkDeploymentId(std::move(value)); return *this;} /** * The ID of the bulk deployment. */ inline ListBulkDeploymentDetailedReportsRequest& WithBulkDeploymentId(const char* value) { SetBulkDeploymentId(value); return *this;} /** * The maximum number of results to be returned per request. */ inline const Aws::String& GetMaxResults() const{ return m_maxResults; } /** * The maximum number of results to be returned per request. */ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** * The maximum number of results to be returned per request. */ inline void SetMaxResults(const Aws::String& value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** * The maximum number of results to be returned per request. */ inline void SetMaxResults(Aws::String&& value) { m_maxResultsHasBeenSet = true; m_maxResults = std::move(value); } /** * The maximum number of results to be returned per request. */ inline void SetMaxResults(const char* value) { m_maxResultsHasBeenSet = true; m_maxResults.assign(value); } /** * The maximum number of results to be returned per request. */ inline ListBulkDeploymentDetailedReportsRequest& WithMaxResults(const Aws::String& value) { SetMaxResults(value); return *this;} /** * The maximum number of results to be returned per request. */ inline ListBulkDeploymentDetailedReportsRequest& WithMaxResults(Aws::String&& value) { SetMaxResults(std::move(value)); return *this;} /** * The maximum number of results to be returned per request. */ inline ListBulkDeploymentDetailedReportsRequest& WithMaxResults(const char* value) { SetMaxResults(value); return *this;} /** * The token for the next set of results, or ''null'' if there are no additional * results. */ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** * The token for the next set of results, or ''null'' if there are no additional * results. */ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** * The token for the next set of results, or ''null'' if there are no additional * results. */ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** * The token for the next set of results, or ''null'' if there are no additional * results. */ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** * The token for the next set of results, or ''null'' if there are no additional * results. */ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** * The token for the next set of results, or ''null'' if there are no additional * results. */ inline ListBulkDeploymentDetailedReportsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** * The token for the next set of results, or ''null'' if there are no additional * results. */ inline ListBulkDeploymentDetailedReportsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** * The token for the next set of results, or ''null'' if there are no additional * results. */ inline ListBulkDeploymentDetailedReportsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::String m_bulkDeploymentId; bool m_bulkDeploymentIdHasBeenSet = false; Aws::String m_maxResults; bool m_maxResultsHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; }; } // namespace Model } // namespace Greengrass } // namespace Aws