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-events/source/model/BatchArrayProperties.cpp

62 lines
1.0 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/events/model/BatchArrayProperties.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace CloudWatchEvents
{
namespace Model
{
BatchArrayProperties::BatchArrayProperties() :
m_size(0),
m_sizeHasBeenSet(false)
{
}
BatchArrayProperties::BatchArrayProperties(JsonView jsonValue) :
m_size(0),
m_sizeHasBeenSet(false)
{
*this = jsonValue;
}
BatchArrayProperties& BatchArrayProperties::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("Size"))
{
m_size = jsonValue.GetInteger("Size");
m_sizeHasBeenSet = true;
}
return *this;
}
JsonValue BatchArrayProperties::Jsonize() const
{
JsonValue payload;
if(m_sizeHasBeenSet)
{
payload.WithInteger("Size", m_size);
}
return payload;
}
} // namespace Model
} // namespace CloudWatchEvents
} // namespace Aws