/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include using namespace Aws::SecurityHub::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws::Http; DescribeProductsRequest::DescribeProductsRequest() : m_nextTokenHasBeenSet(false), m_maxResults(0), m_maxResultsHasBeenSet(false), m_productArnHasBeenSet(false) { } Aws::String DescribeProductsRequest::SerializePayload() const { return {}; } void DescribeProductsRequest::AddQueryStringParameters(URI& uri) const { Aws::StringStream ss; if(m_nextTokenHasBeenSet) { ss << m_nextToken; uri.AddQueryStringParameter("NextToken", ss.str()); ss.str(""); } if(m_maxResultsHasBeenSet) { ss << m_maxResults; uri.AddQueryStringParameter("MaxResults", ss.str()); ss.str(""); } if(m_productArnHasBeenSet) { ss << m_productArn; uri.AddQueryStringParameter("ProductArn", ss.str()); ss.str(""); } }