/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::imagebuilder::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; ListImageScanFindingAggregationsRequest::ListImageScanFindingAggregationsRequest() : m_filterHasBeenSet(false), m_nextTokenHasBeenSet(false) { } Aws::String ListImageScanFindingAggregationsRequest::SerializePayload() const { JsonValue payload; if(m_filterHasBeenSet) { payload.WithObject("filter", m_filter.Jsonize()); } if(m_nextTokenHasBeenSet) { payload.WithString("nextToken", m_nextToken); } return payload.View().WriteReadable(); }