158 lines
3.0 KiB
C++
158 lines
3.0 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/logs/model/LogGroup.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace CloudWatchLogs
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
LogGroup::LogGroup() :
|
|
m_logGroupNameHasBeenSet(false),
|
|
m_creationTime(0),
|
|
m_creationTimeHasBeenSet(false),
|
|
m_retentionInDays(0),
|
|
m_retentionInDaysHasBeenSet(false),
|
|
m_metricFilterCount(0),
|
|
m_metricFilterCountHasBeenSet(false),
|
|
m_arnHasBeenSet(false),
|
|
m_storedBytes(0),
|
|
m_storedBytesHasBeenSet(false),
|
|
m_kmsKeyIdHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
LogGroup::LogGroup(JsonView jsonValue) :
|
|
m_logGroupNameHasBeenSet(false),
|
|
m_creationTime(0),
|
|
m_creationTimeHasBeenSet(false),
|
|
m_retentionInDays(0),
|
|
m_retentionInDaysHasBeenSet(false),
|
|
m_metricFilterCount(0),
|
|
m_metricFilterCountHasBeenSet(false),
|
|
m_arnHasBeenSet(false),
|
|
m_storedBytes(0),
|
|
m_storedBytesHasBeenSet(false),
|
|
m_kmsKeyIdHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
LogGroup& LogGroup::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("logGroupName"))
|
|
{
|
|
m_logGroupName = jsonValue.GetString("logGroupName");
|
|
|
|
m_logGroupNameHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("creationTime"))
|
|
{
|
|
m_creationTime = jsonValue.GetInt64("creationTime");
|
|
|
|
m_creationTimeHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("retentionInDays"))
|
|
{
|
|
m_retentionInDays = jsonValue.GetInteger("retentionInDays");
|
|
|
|
m_retentionInDaysHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("metricFilterCount"))
|
|
{
|
|
m_metricFilterCount = jsonValue.GetInteger("metricFilterCount");
|
|
|
|
m_metricFilterCountHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("arn"))
|
|
{
|
|
m_arn = jsonValue.GetString("arn");
|
|
|
|
m_arnHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("storedBytes"))
|
|
{
|
|
m_storedBytes = jsonValue.GetInt64("storedBytes");
|
|
|
|
m_storedBytesHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("kmsKeyId"))
|
|
{
|
|
m_kmsKeyId = jsonValue.GetString("kmsKeyId");
|
|
|
|
m_kmsKeyIdHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue LogGroup::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_logGroupNameHasBeenSet)
|
|
{
|
|
payload.WithString("logGroupName", m_logGroupName);
|
|
|
|
}
|
|
|
|
if(m_creationTimeHasBeenSet)
|
|
{
|
|
payload.WithInt64("creationTime", m_creationTime);
|
|
|
|
}
|
|
|
|
if(m_retentionInDaysHasBeenSet)
|
|
{
|
|
payload.WithInteger("retentionInDays", m_retentionInDays);
|
|
|
|
}
|
|
|
|
if(m_metricFilterCountHasBeenSet)
|
|
{
|
|
payload.WithInteger("metricFilterCount", m_metricFilterCount);
|
|
|
|
}
|
|
|
|
if(m_arnHasBeenSet)
|
|
{
|
|
payload.WithString("arn", m_arn);
|
|
|
|
}
|
|
|
|
if(m_storedBytesHasBeenSet)
|
|
{
|
|
payload.WithInt64("storedBytes", m_storedBytes);
|
|
|
|
}
|
|
|
|
if(m_kmsKeyIdHasBeenSet)
|
|
{
|
|
payload.WithString("kmsKeyId", m_kmsKeyId);
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace CloudWatchLogs
|
|
} // namespace Aws
|