/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::ConfigService::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; PutConfigurationAggregatorRequest::PutConfigurationAggregatorRequest() : m_configurationAggregatorNameHasBeenSet(false), m_accountAggregationSourcesHasBeenSet(false), m_organizationAggregationSourceHasBeenSet(false), m_tagsHasBeenSet(false) { } Aws::String PutConfigurationAggregatorRequest::SerializePayload() const { JsonValue payload; if(m_configurationAggregatorNameHasBeenSet) { payload.WithString("ConfigurationAggregatorName", m_configurationAggregatorName); } if(m_accountAggregationSourcesHasBeenSet) { Aws::Utils::Array accountAggregationSourcesJsonList(m_accountAggregationSources.size()); for(unsigned accountAggregationSourcesIndex = 0; accountAggregationSourcesIndex < accountAggregationSourcesJsonList.GetLength(); ++accountAggregationSourcesIndex) { accountAggregationSourcesJsonList[accountAggregationSourcesIndex].AsObject(m_accountAggregationSources[accountAggregationSourcesIndex].Jsonize()); } payload.WithArray("AccountAggregationSources", std::move(accountAggregationSourcesJsonList)); } if(m_organizationAggregationSourceHasBeenSet) { payload.WithObject("OrganizationAggregationSource", m_organizationAggregationSource.Jsonize()); } if(m_tagsHasBeenSet) { Aws::Utils::Array tagsJsonList(m_tags.size()); for(unsigned tagsIndex = 0; tagsIndex < tagsJsonList.GetLength(); ++tagsIndex) { tagsJsonList[tagsIndex].AsObject(m_tags[tagsIndex].Jsonize()); } payload.WithArray("Tags", std::move(tagsJsonList)); } return payload.View().WriteReadable(); } Aws::Http::HeaderValueCollection PutConfigurationAggregatorRequest::GetRequestSpecificHeaders() const { Aws::Http::HeaderValueCollection headers; headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "StarlingDoveService.PutConfigurationAggregator")); return headers; }