/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::CodeBuild::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; ListBuildsForProjectRequest::ListBuildsForProjectRequest() : m_projectNameHasBeenSet(false), m_sortOrder(SortOrderType::NOT_SET), m_sortOrderHasBeenSet(false), m_nextTokenHasBeenSet(false) { } Aws::String ListBuildsForProjectRequest::SerializePayload() const { JsonValue payload; if(m_projectNameHasBeenSet) { payload.WithString("projectName", m_projectName); } if(m_sortOrderHasBeenSet) { payload.WithString("sortOrder", SortOrderTypeMapper::GetNameForSortOrderType(m_sortOrder)); } if(m_nextTokenHasBeenSet) { payload.WithString("nextToken", m_nextToken); } return payload.View().WriteReadable(); } Aws::Http::HeaderValueCollection ListBuildsForProjectRequest::GetRequestSpecificHeaders() const { Aws::Http::HeaderValueCollection headers; headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "CodeBuild_20161006.ListBuildsForProject")); return headers; }