/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::GameLift::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; UpdateFleetAttributesRequest::UpdateFleetAttributesRequest() : m_fleetIdHasBeenSet(false), m_nameHasBeenSet(false), m_descriptionHasBeenSet(false), m_newGameSessionProtectionPolicy(ProtectionPolicy::NOT_SET), m_newGameSessionProtectionPolicyHasBeenSet(false), m_resourceCreationLimitPolicyHasBeenSet(false), m_metricGroupsHasBeenSet(false), m_anywhereConfigurationHasBeenSet(false) { } Aws::String UpdateFleetAttributesRequest::SerializePayload() const { JsonValue payload; if(m_fleetIdHasBeenSet) { payload.WithString("FleetId", m_fleetId); } if(m_nameHasBeenSet) { payload.WithString("Name", m_name); } if(m_descriptionHasBeenSet) { payload.WithString("Description", m_description); } if(m_newGameSessionProtectionPolicyHasBeenSet) { payload.WithString("NewGameSessionProtectionPolicy", ProtectionPolicyMapper::GetNameForProtectionPolicy(m_newGameSessionProtectionPolicy)); } if(m_resourceCreationLimitPolicyHasBeenSet) { payload.WithObject("ResourceCreationLimitPolicy", m_resourceCreationLimitPolicy.Jsonize()); } if(m_metricGroupsHasBeenSet) { Aws::Utils::Array metricGroupsJsonList(m_metricGroups.size()); for(unsigned metricGroupsIndex = 0; metricGroupsIndex < metricGroupsJsonList.GetLength(); ++metricGroupsIndex) { metricGroupsJsonList[metricGroupsIndex].AsString(m_metricGroups[metricGroupsIndex]); } payload.WithArray("MetricGroups", std::move(metricGroupsJsonList)); } if(m_anywhereConfigurationHasBeenSet) { payload.WithObject("AnywhereConfiguration", m_anywhereConfiguration.Jsonize()); } return payload.View().WriteReadable(); } Aws::Http::HeaderValueCollection UpdateFleetAttributesRequest::GetRequestSpecificHeaders() const { Aws::Http::HeaderValueCollection headers; headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "GameLift.UpdateFleetAttributes")); return headers; }