/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::Transfer::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; ListProfilesRequest::ListProfilesRequest() : m_maxResults(0), m_maxResultsHasBeenSet(false), m_nextTokenHasBeenSet(false), m_profileType(ProfileType::NOT_SET), m_profileTypeHasBeenSet(false) { } Aws::String ListProfilesRequest::SerializePayload() const { JsonValue payload; if(m_maxResultsHasBeenSet) { payload.WithInteger("MaxResults", m_maxResults); } if(m_nextTokenHasBeenSet) { payload.WithString("NextToken", m_nextToken); } if(m_profileTypeHasBeenSet) { payload.WithString("ProfileType", ProfileTypeMapper::GetNameForProfileType(m_profileType)); } return payload.View().WriteReadable(); } Aws::Http::HeaderValueCollection ListProfilesRequest::GetRequestSpecificHeaders() const { Aws::Http::HeaderValueCollection headers; headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "TransferService.ListProfiles")); return headers; }