/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::ResilienceHub::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; DescribeAppVersionRequest::DescribeAppVersionRequest() : m_appArnHasBeenSet(false), m_appVersionHasBeenSet(false) { } Aws::String DescribeAppVersionRequest::SerializePayload() const { JsonValue payload; if(m_appArnHasBeenSet) { payload.WithString("appArn", m_appArn); } if(m_appVersionHasBeenSet) { payload.WithString("appVersion", m_appVersion); } return payload.View().WriteReadable(); }