/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include using namespace Aws::WorkSpacesWeb::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws::Http; AssociateTrustStoreRequest::AssociateTrustStoreRequest() : m_portalArnHasBeenSet(false), m_trustStoreArnHasBeenSet(false) { } Aws::String AssociateTrustStoreRequest::SerializePayload() const { return {}; } void AssociateTrustStoreRequest::AddQueryStringParameters(URI& uri) const { Aws::StringStream ss; if(m_trustStoreArnHasBeenSet) { ss << m_trustStoreArn; uri.AddQueryStringParameter("trustStoreArn", ss.str()); ss.str(""); } }