/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include 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