/** * 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; ListQueryLoggingConfigsRequest::ListQueryLoggingConfigsRequest() : m_hostedZoneIdHasBeenSet(false), m_nextTokenHasBeenSet(false), m_maxResultsHasBeenSet(false) { } Aws::String ListQueryLoggingConfigsRequest::SerializePayload() const { return {}; } void ListQueryLoggingConfigsRequest::AddQueryStringParameters(URI& uri) const { Aws::StringStream ss; if(m_hostedZoneIdHasBeenSet) { ss << m_hostedZoneId; uri.AddQueryStringParameter("hostedzoneid", ss.str()); ss.str(""); } 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(""); } }