36 lines
762 B
C++
36 lines
762 B
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/macie2/model/PutClassificationExportConfigurationRequest.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Macie2::Model;
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
PutClassificationExportConfigurationRequest::PutClassificationExportConfigurationRequest() :
|
|
m_configurationHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Aws::String PutClassificationExportConfigurationRequest::SerializePayload() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_configurationHasBeenSet)
|
|
{
|
|
payload.WithObject("configuration", m_configuration.Jsonize());
|
|
|
|
}
|
|
|
|
return payload.View().WriteReadable();
|
|
}
|
|
|
|
|
|
|
|
|