135 lines
3.0 KiB
C++
135 lines
3.0 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/kinesisanalyticsv2/model/OutputDescription.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace KinesisAnalyticsV2
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
OutputDescription::OutputDescription() :
|
|
m_outputIdHasBeenSet(false),
|
|
m_nameHasBeenSet(false),
|
|
m_kinesisStreamsOutputDescriptionHasBeenSet(false),
|
|
m_kinesisFirehoseOutputDescriptionHasBeenSet(false),
|
|
m_lambdaOutputDescriptionHasBeenSet(false),
|
|
m_destinationSchemaHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
OutputDescription::OutputDescription(JsonView jsonValue) :
|
|
m_outputIdHasBeenSet(false),
|
|
m_nameHasBeenSet(false),
|
|
m_kinesisStreamsOutputDescriptionHasBeenSet(false),
|
|
m_kinesisFirehoseOutputDescriptionHasBeenSet(false),
|
|
m_lambdaOutputDescriptionHasBeenSet(false),
|
|
m_destinationSchemaHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
OutputDescription& OutputDescription::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("OutputId"))
|
|
{
|
|
m_outputId = jsonValue.GetString("OutputId");
|
|
|
|
m_outputIdHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("Name"))
|
|
{
|
|
m_name = jsonValue.GetString("Name");
|
|
|
|
m_nameHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("KinesisStreamsOutputDescription"))
|
|
{
|
|
m_kinesisStreamsOutputDescription = jsonValue.GetObject("KinesisStreamsOutputDescription");
|
|
|
|
m_kinesisStreamsOutputDescriptionHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("KinesisFirehoseOutputDescription"))
|
|
{
|
|
m_kinesisFirehoseOutputDescription = jsonValue.GetObject("KinesisFirehoseOutputDescription");
|
|
|
|
m_kinesisFirehoseOutputDescriptionHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("LambdaOutputDescription"))
|
|
{
|
|
m_lambdaOutputDescription = jsonValue.GetObject("LambdaOutputDescription");
|
|
|
|
m_lambdaOutputDescriptionHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("DestinationSchema"))
|
|
{
|
|
m_destinationSchema = jsonValue.GetObject("DestinationSchema");
|
|
|
|
m_destinationSchemaHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue OutputDescription::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_outputIdHasBeenSet)
|
|
{
|
|
payload.WithString("OutputId", m_outputId);
|
|
|
|
}
|
|
|
|
if(m_nameHasBeenSet)
|
|
{
|
|
payload.WithString("Name", m_name);
|
|
|
|
}
|
|
|
|
if(m_kinesisStreamsOutputDescriptionHasBeenSet)
|
|
{
|
|
payload.WithObject("KinesisStreamsOutputDescription", m_kinesisStreamsOutputDescription.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_kinesisFirehoseOutputDescriptionHasBeenSet)
|
|
{
|
|
payload.WithObject("KinesisFirehoseOutputDescription", m_kinesisFirehoseOutputDescription.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_lambdaOutputDescriptionHasBeenSet)
|
|
{
|
|
payload.WithObject("LambdaOutputDescription", m_lambdaOutputDescription.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_destinationSchemaHasBeenSet)
|
|
{
|
|
payload.WithObject("DestinationSchema", m_destinationSchema.Jsonize());
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace KinesisAnalyticsV2
|
|
} // namespace Aws
|