90 lines
1.5 KiB
C++
90 lines
1.5 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/iot/model/KinesisAction.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace IoT
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
KinesisAction::KinesisAction() :
|
|
m_roleArnHasBeenSet(false),
|
|
m_streamNameHasBeenSet(false),
|
|
m_partitionKeyHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
KinesisAction::KinesisAction(JsonView jsonValue) :
|
|
m_roleArnHasBeenSet(false),
|
|
m_streamNameHasBeenSet(false),
|
|
m_partitionKeyHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
KinesisAction& KinesisAction::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("roleArn"))
|
|
{
|
|
m_roleArn = jsonValue.GetString("roleArn");
|
|
|
|
m_roleArnHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("streamName"))
|
|
{
|
|
m_streamName = jsonValue.GetString("streamName");
|
|
|
|
m_streamNameHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("partitionKey"))
|
|
{
|
|
m_partitionKey = jsonValue.GetString("partitionKey");
|
|
|
|
m_partitionKeyHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue KinesisAction::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_roleArnHasBeenSet)
|
|
{
|
|
payload.WithString("roleArn", m_roleArn);
|
|
|
|
}
|
|
|
|
if(m_streamNameHasBeenSet)
|
|
{
|
|
payload.WithString("streamName", m_streamName);
|
|
|
|
}
|
|
|
|
if(m_partitionKeyHasBeenSet)
|
|
{
|
|
payload.WithString("partitionKey", m_partitionKey);
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace IoT
|
|
} // namespace Aws
|