/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include using namespace Aws::WellArchitected::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws::Http; DeleteLensShareRequest::DeleteLensShareRequest() : m_shareIdHasBeenSet(false), m_lensAliasHasBeenSet(false), m_clientRequestToken(Aws::Utils::UUID::PseudoRandomUUID()), m_clientRequestTokenHasBeenSet(true) { } Aws::String DeleteLensShareRequest::SerializePayload() const { return {}; } void DeleteLensShareRequest::AddQueryStringParameters(URI& uri) const { Aws::StringStream ss; if(m_clientRequestTokenHasBeenSet) { ss << m_clientRequestToken; uri.AddQueryStringParameter("ClientRequestToken", ss.str()); ss.str(""); } }