/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include using namespace Aws::Lambda::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws::Http; ListFunctionUrlConfigsRequest::ListFunctionUrlConfigsRequest() : m_functionNameHasBeenSet(false), m_markerHasBeenSet(false), m_maxItems(0), m_maxItemsHasBeenSet(false) { } Aws::String ListFunctionUrlConfigsRequest::SerializePayload() const { return {}; } void ListFunctionUrlConfigsRequest::AddQueryStringParameters(URI& uri) const { Aws::StringStream ss; if(m_markerHasBeenSet) { ss << m_marker; uri.AddQueryStringParameter("Marker", ss.str()); ss.str(""); } if(m_maxItemsHasBeenSet) { ss << m_maxItems; uri.AddQueryStringParameter("MaxItems", ss.str()); ss.str(""); } }