70 lines
1.6 KiB
C++
70 lines
1.6 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/budgets/model/CreateNotificationRequest.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Budgets::Model;
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
CreateNotificationRequest::CreateNotificationRequest() :
|
|
m_accountIdHasBeenSet(false),
|
|
m_budgetNameHasBeenSet(false),
|
|
m_notificationHasBeenSet(false),
|
|
m_subscribersHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Aws::String CreateNotificationRequest::SerializePayload() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_accountIdHasBeenSet)
|
|
{
|
|
payload.WithString("AccountId", m_accountId);
|
|
|
|
}
|
|
|
|
if(m_budgetNameHasBeenSet)
|
|
{
|
|
payload.WithString("BudgetName", m_budgetName);
|
|
|
|
}
|
|
|
|
if(m_notificationHasBeenSet)
|
|
{
|
|
payload.WithObject("Notification", m_notification.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_subscribersHasBeenSet)
|
|
{
|
|
Array<JsonValue> subscribersJsonList(m_subscribers.size());
|
|
for(unsigned subscribersIndex = 0; subscribersIndex < subscribersJsonList.GetLength(); ++subscribersIndex)
|
|
{
|
|
subscribersJsonList[subscribersIndex].AsObject(m_subscribers[subscribersIndex].Jsonize());
|
|
}
|
|
payload.WithArray("Subscribers", std::move(subscribersJsonList));
|
|
|
|
}
|
|
|
|
return payload.View().WriteReadable();
|
|
}
|
|
|
|
Aws::Http::HeaderValueCollection CreateNotificationRequest::GetRequestSpecificHeaders() const
|
|
{
|
|
Aws::Http::HeaderValueCollection headers;
|
|
headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "AWSBudgetServiceGateway.CreateNotification"));
|
|
return headers;
|
|
|
|
}
|
|
|
|
|
|
|
|
|