44 lines
970 B
C++
44 lines
970 B
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/elasticmapreduce/model/ListSecurityConfigurationsRequest.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::EMR::Model;
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
ListSecurityConfigurationsRequest::ListSecurityConfigurationsRequest() :
|
|
m_markerHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Aws::String ListSecurityConfigurationsRequest::SerializePayload() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_markerHasBeenSet)
|
|
{
|
|
payload.WithString("Marker", m_marker);
|
|
|
|
}
|
|
|
|
return payload.View().WriteReadable();
|
|
}
|
|
|
|
Aws::Http::HeaderValueCollection ListSecurityConfigurationsRequest::GetRequestSpecificHeaders() const
|
|
{
|
|
Aws::Http::HeaderValueCollection headers;
|
|
headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "ElasticMapReduce.ListSecurityConfigurations"));
|
|
return headers;
|
|
|
|
}
|
|
|
|
|
|
|
|
|