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