/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::AmplifyBackend::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; GetBackendAuthRequest::GetBackendAuthRequest() : m_appIdHasBeenSet(false), m_backendEnvironmentNameHasBeenSet(false), m_resourceNameHasBeenSet(false) { } Aws::String GetBackendAuthRequest::SerializePayload() const { JsonValue payload; if(m_resourceNameHasBeenSet) { payload.WithString("resourceName", m_resourceName); } return payload.View().WriteReadable(); }