This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-lambda/source/model/DeadLetterConfig.cpp

60 lines
1013 B
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/lambda/model/DeadLetterConfig.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace Lambda
{
namespace Model
{
DeadLetterConfig::DeadLetterConfig() :
m_targetArnHasBeenSet(false)
{
}
DeadLetterConfig::DeadLetterConfig(JsonView jsonValue) :
m_targetArnHasBeenSet(false)
{
*this = jsonValue;
}
DeadLetterConfig& DeadLetterConfig::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("TargetArn"))
{
m_targetArn = jsonValue.GetString("TargetArn");
m_targetArnHasBeenSet = true;
}
return *this;
}
JsonValue DeadLetterConfig::Jsonize() const
{
JsonValue payload;
if(m_targetArnHasBeenSet)
{
payload.WithString("TargetArn", m_targetArn);
}
return payload;
}
} // namespace Model
} // namespace Lambda
} // namespace Aws