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