/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::SNS::Model; using namespace Aws::Utils; GetPlatformApplicationAttributesRequest::GetPlatformApplicationAttributesRequest() : m_platformApplicationArnHasBeenSet(false) { } Aws::String GetPlatformApplicationAttributesRequest::SerializePayload() const { Aws::StringStream ss; ss << "Action=GetPlatformApplicationAttributes&"; if(m_platformApplicationArnHasBeenSet) { ss << "PlatformApplicationArn=" << StringUtils::URLEncode(m_platformApplicationArn.c_str()) << "&"; } ss << "Version=2010-03-31"; return ss.str(); } void GetPlatformApplicationAttributesRequest::DumpBodyToUrl(Aws::Http::URI& uri ) const { uri.SetQueryString(SerializePayload()); }