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