/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::Appflow::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; StopFlowRequest::StopFlowRequest() : m_flowNameHasBeenSet(false) { } Aws::String StopFlowRequest::SerializePayload() const { JsonValue payload; if(m_flowNameHasBeenSet) { payload.WithString("flowName", m_flowName); } return payload.View().WriteReadable(); }