/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::ComputeOptimizer::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; GetEC2RecommendationProjectedMetricsRequest::GetEC2RecommendationProjectedMetricsRequest() : m_instanceArnHasBeenSet(false), m_stat(MetricStatistic::NOT_SET), m_statHasBeenSet(false), m_period(0), m_periodHasBeenSet(false), m_startTimeHasBeenSet(false), m_endTimeHasBeenSet(false), m_recommendationPreferencesHasBeenSet(false) { } Aws::String GetEC2RecommendationProjectedMetricsRequest::SerializePayload() const { JsonValue payload; if(m_instanceArnHasBeenSet) { payload.WithString("instanceArn", m_instanceArn); } if(m_statHasBeenSet) { payload.WithString("stat", MetricStatisticMapper::GetNameForMetricStatistic(m_stat)); } if(m_periodHasBeenSet) { payload.WithInteger("period", m_period); } if(m_startTimeHasBeenSet) { payload.WithDouble("startTime", m_startTime.SecondsWithMSPrecision()); } if(m_endTimeHasBeenSet) { payload.WithDouble("endTime", m_endTime.SecondsWithMSPrecision()); } if(m_recommendationPreferencesHasBeenSet) { payload.WithObject("recommendationPreferences", m_recommendationPreferences.Jsonize()); } return payload.View().WriteReadable(); } Aws::Http::HeaderValueCollection GetEC2RecommendationProjectedMetricsRequest::GetRequestSpecificHeaders() const { Aws::Http::HeaderValueCollection headers; headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "ComputeOptimizerService.GetEC2RecommendationProjectedMetrics")); return headers; }