216 lines
5.5 KiB
C++
216 lines
5.5 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/kinesis/model/StreamDescription.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Kinesis
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
StreamDescription::StreamDescription() :
|
|
m_streamNameHasBeenSet(false),
|
|
m_streamARNHasBeenSet(false),
|
|
m_streamStatus(StreamStatus::NOT_SET),
|
|
m_streamStatusHasBeenSet(false),
|
|
m_shardsHasBeenSet(false),
|
|
m_hasMoreShards(false),
|
|
m_hasMoreShardsHasBeenSet(false),
|
|
m_retentionPeriodHours(0),
|
|
m_retentionPeriodHoursHasBeenSet(false),
|
|
m_streamCreationTimestampHasBeenSet(false),
|
|
m_enhancedMonitoringHasBeenSet(false),
|
|
m_encryptionType(EncryptionType::NOT_SET),
|
|
m_encryptionTypeHasBeenSet(false),
|
|
m_keyIdHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
StreamDescription::StreamDescription(JsonView jsonValue) :
|
|
m_streamNameHasBeenSet(false),
|
|
m_streamARNHasBeenSet(false),
|
|
m_streamStatus(StreamStatus::NOT_SET),
|
|
m_streamStatusHasBeenSet(false),
|
|
m_shardsHasBeenSet(false),
|
|
m_hasMoreShards(false),
|
|
m_hasMoreShardsHasBeenSet(false),
|
|
m_retentionPeriodHours(0),
|
|
m_retentionPeriodHoursHasBeenSet(false),
|
|
m_streamCreationTimestampHasBeenSet(false),
|
|
m_enhancedMonitoringHasBeenSet(false),
|
|
m_encryptionType(EncryptionType::NOT_SET),
|
|
m_encryptionTypeHasBeenSet(false),
|
|
m_keyIdHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
StreamDescription& StreamDescription::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("StreamName"))
|
|
{
|
|
m_streamName = jsonValue.GetString("StreamName");
|
|
|
|
m_streamNameHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("StreamARN"))
|
|
{
|
|
m_streamARN = jsonValue.GetString("StreamARN");
|
|
|
|
m_streamARNHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("StreamStatus"))
|
|
{
|
|
m_streamStatus = StreamStatusMapper::GetStreamStatusForName(jsonValue.GetString("StreamStatus"));
|
|
|
|
m_streamStatusHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("Shards"))
|
|
{
|
|
Array<JsonView> shardsJsonList = jsonValue.GetArray("Shards");
|
|
for(unsigned shardsIndex = 0; shardsIndex < shardsJsonList.GetLength(); ++shardsIndex)
|
|
{
|
|
m_shards.push_back(shardsJsonList[shardsIndex].AsObject());
|
|
}
|
|
m_shardsHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("HasMoreShards"))
|
|
{
|
|
m_hasMoreShards = jsonValue.GetBool("HasMoreShards");
|
|
|
|
m_hasMoreShardsHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("RetentionPeriodHours"))
|
|
{
|
|
m_retentionPeriodHours = jsonValue.GetInteger("RetentionPeriodHours");
|
|
|
|
m_retentionPeriodHoursHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("StreamCreationTimestamp"))
|
|
{
|
|
m_streamCreationTimestamp = jsonValue.GetDouble("StreamCreationTimestamp");
|
|
|
|
m_streamCreationTimestampHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("EnhancedMonitoring"))
|
|
{
|
|
Array<JsonView> enhancedMonitoringJsonList = jsonValue.GetArray("EnhancedMonitoring");
|
|
for(unsigned enhancedMonitoringIndex = 0; enhancedMonitoringIndex < enhancedMonitoringJsonList.GetLength(); ++enhancedMonitoringIndex)
|
|
{
|
|
m_enhancedMonitoring.push_back(enhancedMonitoringJsonList[enhancedMonitoringIndex].AsObject());
|
|
}
|
|
m_enhancedMonitoringHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("EncryptionType"))
|
|
{
|
|
m_encryptionType = EncryptionTypeMapper::GetEncryptionTypeForName(jsonValue.GetString("EncryptionType"));
|
|
|
|
m_encryptionTypeHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("KeyId"))
|
|
{
|
|
m_keyId = jsonValue.GetString("KeyId");
|
|
|
|
m_keyIdHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue StreamDescription::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_streamNameHasBeenSet)
|
|
{
|
|
payload.WithString("StreamName", m_streamName);
|
|
|
|
}
|
|
|
|
if(m_streamARNHasBeenSet)
|
|
{
|
|
payload.WithString("StreamARN", m_streamARN);
|
|
|
|
}
|
|
|
|
if(m_streamStatusHasBeenSet)
|
|
{
|
|
payload.WithString("StreamStatus", StreamStatusMapper::GetNameForStreamStatus(m_streamStatus));
|
|
}
|
|
|
|
if(m_shardsHasBeenSet)
|
|
{
|
|
Array<JsonValue> shardsJsonList(m_shards.size());
|
|
for(unsigned shardsIndex = 0; shardsIndex < shardsJsonList.GetLength(); ++shardsIndex)
|
|
{
|
|
shardsJsonList[shardsIndex].AsObject(m_shards[shardsIndex].Jsonize());
|
|
}
|
|
payload.WithArray("Shards", std::move(shardsJsonList));
|
|
|
|
}
|
|
|
|
if(m_hasMoreShardsHasBeenSet)
|
|
{
|
|
payload.WithBool("HasMoreShards", m_hasMoreShards);
|
|
|
|
}
|
|
|
|
if(m_retentionPeriodHoursHasBeenSet)
|
|
{
|
|
payload.WithInteger("RetentionPeriodHours", m_retentionPeriodHours);
|
|
|
|
}
|
|
|
|
if(m_streamCreationTimestampHasBeenSet)
|
|
{
|
|
payload.WithDouble("StreamCreationTimestamp", m_streamCreationTimestamp.SecondsWithMSPrecision());
|
|
}
|
|
|
|
if(m_enhancedMonitoringHasBeenSet)
|
|
{
|
|
Array<JsonValue> enhancedMonitoringJsonList(m_enhancedMonitoring.size());
|
|
for(unsigned enhancedMonitoringIndex = 0; enhancedMonitoringIndex < enhancedMonitoringJsonList.GetLength(); ++enhancedMonitoringIndex)
|
|
{
|
|
enhancedMonitoringJsonList[enhancedMonitoringIndex].AsObject(m_enhancedMonitoring[enhancedMonitoringIndex].Jsonize());
|
|
}
|
|
payload.WithArray("EnhancedMonitoring", std::move(enhancedMonitoringJsonList));
|
|
|
|
}
|
|
|
|
if(m_encryptionTypeHasBeenSet)
|
|
{
|
|
payload.WithString("EncryptionType", EncryptionTypeMapper::GetNameForEncryptionType(m_encryptionType));
|
|
}
|
|
|
|
if(m_keyIdHasBeenSet)
|
|
{
|
|
payload.WithString("KeyId", m_keyId);
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace Kinesis
|
|
} // namespace Aws
|