/** * 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 KinesisAnalytics { namespace Model { LambdaOutput::LambdaOutput() : m_resourceARNHasBeenSet(false), m_roleARNHasBeenSet(false) { } LambdaOutput::LambdaOutput(JsonView jsonValue) : m_resourceARNHasBeenSet(false), m_roleARNHasBeenSet(false) { *this = jsonValue; } LambdaOutput& LambdaOutput::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("ResourceARN")) { m_resourceARN = jsonValue.GetString("ResourceARN"); m_resourceARNHasBeenSet = true; } if(jsonValue.ValueExists("RoleARN")) { m_roleARN = jsonValue.GetString("RoleARN"); m_roleARNHasBeenSet = true; } return *this; } JsonValue LambdaOutput::Jsonize() const { JsonValue payload; if(m_resourceARNHasBeenSet) { payload.WithString("ResourceARN", m_resourceARN); } if(m_roleARNHasBeenSet) { payload.WithString("RoleARN", m_roleARN); } return payload; } } // namespace Model } // namespace KinesisAnalytics } // namespace Aws