30 lines
577 B
C++
30 lines
577 B
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/lambda/model/GetLayerVersionRequest.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Lambda::Model;
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
GetLayerVersionRequest::GetLayerVersionRequest() :
|
|
m_layerNameHasBeenSet(false),
|
|
m_versionNumber(0),
|
|
m_versionNumberHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Aws::String GetLayerVersionRequest::SerializePayload() const
|
|
{
|
|
return {};
|
|
}
|
|
|
|
|
|
|
|
|