44 lines
1010 B
C++
44 lines
1010 B
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/sms/model/DeleteAppValidationConfigurationRequest.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::SMS::Model;
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
DeleteAppValidationConfigurationRequest::DeleteAppValidationConfigurationRequest() :
|
|
m_appIdHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Aws::String DeleteAppValidationConfigurationRequest::SerializePayload() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_appIdHasBeenSet)
|
|
{
|
|
payload.WithString("appId", m_appId);
|
|
|
|
}
|
|
|
|
return payload.View().WriteReadable();
|
|
}
|
|
|
|
Aws::Http::HeaderValueCollection DeleteAppValidationConfigurationRequest::GetRequestSpecificHeaders() const
|
|
{
|
|
Aws::Http::HeaderValueCollection headers;
|
|
headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "AWSServerMigrationService_V2016_10_24.DeleteAppValidationConfiguration"));
|
|
return headers;
|
|
|
|
}
|
|
|
|
|
|
|
|
|