/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include #include using namespace Aws::Route53::Model; using namespace Aws::Utils::Xml; using namespace Aws::Utils; using namespace Aws::Http; ListReusableDelegationSetsRequest::ListReusableDelegationSetsRequest() : m_markerHasBeenSet(false), m_maxItemsHasBeenSet(false) { } Aws::String ListReusableDelegationSetsRequest::SerializePayload() const { return {}; } void ListReusableDelegationSetsRequest::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(""); } }