219 lines
9.1 KiB
C++
219 lines
9.1 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/kinesisanalyticsv2/KinesisAnalyticsV2_EXPORTS.h>
|
|
#include <aws/kinesisanalyticsv2/model/SourceSchema.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace KinesisAnalyticsV2
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_KINESISANALYTICSV2_API DiscoverInputSchemaResult
|
|
{
|
|
public:
|
|
DiscoverInputSchemaResult();
|
|
DiscoverInputSchemaResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
DiscoverInputSchemaResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The schema inferred from the streaming source. It identifies the format of
|
|
* the data in the streaming source and how each data element maps to corresponding
|
|
* columns in the in-application stream that you can create.</p>
|
|
*/
|
|
inline const SourceSchema& GetInputSchema() const{ return m_inputSchema; }
|
|
|
|
/**
|
|
* <p>The schema inferred from the streaming source. It identifies the format of
|
|
* the data in the streaming source and how each data element maps to corresponding
|
|
* columns in the in-application stream that you can create.</p>
|
|
*/
|
|
inline void SetInputSchema(const SourceSchema& value) { m_inputSchema = value; }
|
|
|
|
/**
|
|
* <p>The schema inferred from the streaming source. It identifies the format of
|
|
* the data in the streaming source and how each data element maps to corresponding
|
|
* columns in the in-application stream that you can create.</p>
|
|
*/
|
|
inline void SetInputSchema(SourceSchema&& value) { m_inputSchema = std::move(value); }
|
|
|
|
/**
|
|
* <p>The schema inferred from the streaming source. It identifies the format of
|
|
* the data in the streaming source and how each data element maps to corresponding
|
|
* columns in the in-application stream that you can create.</p>
|
|
*/
|
|
inline DiscoverInputSchemaResult& WithInputSchema(const SourceSchema& value) { SetInputSchema(value); return *this;}
|
|
|
|
/**
|
|
* <p>The schema inferred from the streaming source. It identifies the format of
|
|
* the data in the streaming source and how each data element maps to corresponding
|
|
* columns in the in-application stream that you can create.</p>
|
|
*/
|
|
inline DiscoverInputSchemaResult& WithInputSchema(SourceSchema&& value) { SetInputSchema(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>An array of elements, where each element corresponds to a row in a stream
|
|
* record (a stream record can have more than one row).</p>
|
|
*/
|
|
inline const Aws::Vector<Aws::Vector<Aws::String>>& GetParsedInputRecords() const{ return m_parsedInputRecords; }
|
|
|
|
/**
|
|
* <p>An array of elements, where each element corresponds to a row in a stream
|
|
* record (a stream record can have more than one row).</p>
|
|
*/
|
|
inline void SetParsedInputRecords(const Aws::Vector<Aws::Vector<Aws::String>>& value) { m_parsedInputRecords = value; }
|
|
|
|
/**
|
|
* <p>An array of elements, where each element corresponds to a row in a stream
|
|
* record (a stream record can have more than one row).</p>
|
|
*/
|
|
inline void SetParsedInputRecords(Aws::Vector<Aws::Vector<Aws::String>>&& value) { m_parsedInputRecords = std::move(value); }
|
|
|
|
/**
|
|
* <p>An array of elements, where each element corresponds to a row in a stream
|
|
* record (a stream record can have more than one row).</p>
|
|
*/
|
|
inline DiscoverInputSchemaResult& WithParsedInputRecords(const Aws::Vector<Aws::Vector<Aws::String>>& value) { SetParsedInputRecords(value); return *this;}
|
|
|
|
/**
|
|
* <p>An array of elements, where each element corresponds to a row in a stream
|
|
* record (a stream record can have more than one row).</p>
|
|
*/
|
|
inline DiscoverInputSchemaResult& WithParsedInputRecords(Aws::Vector<Aws::Vector<Aws::String>>&& value) { SetParsedInputRecords(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>An array of elements, where each element corresponds to a row in a stream
|
|
* record (a stream record can have more than one row).</p>
|
|
*/
|
|
inline DiscoverInputSchemaResult& AddParsedInputRecords(const Aws::Vector<Aws::String>& value) { m_parsedInputRecords.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>An array of elements, where each element corresponds to a row in a stream
|
|
* record (a stream record can have more than one row).</p>
|
|
*/
|
|
inline DiscoverInputSchemaResult& AddParsedInputRecords(Aws::Vector<Aws::String>&& value) { m_parsedInputRecords.push_back(std::move(value)); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>The stream data that was modified by the processor specified in the
|
|
* <code>InputProcessingConfiguration</code> parameter.</p>
|
|
*/
|
|
inline const Aws::Vector<Aws::String>& GetProcessedInputRecords() const{ return m_processedInputRecords; }
|
|
|
|
/**
|
|
* <p>The stream data that was modified by the processor specified in the
|
|
* <code>InputProcessingConfiguration</code> parameter.</p>
|
|
*/
|
|
inline void SetProcessedInputRecords(const Aws::Vector<Aws::String>& value) { m_processedInputRecords = value; }
|
|
|
|
/**
|
|
* <p>The stream data that was modified by the processor specified in the
|
|
* <code>InputProcessingConfiguration</code> parameter.</p>
|
|
*/
|
|
inline void SetProcessedInputRecords(Aws::Vector<Aws::String>&& value) { m_processedInputRecords = std::move(value); }
|
|
|
|
/**
|
|
* <p>The stream data that was modified by the processor specified in the
|
|
* <code>InputProcessingConfiguration</code> parameter.</p>
|
|
*/
|
|
inline DiscoverInputSchemaResult& WithProcessedInputRecords(const Aws::Vector<Aws::String>& value) { SetProcessedInputRecords(value); return *this;}
|
|
|
|
/**
|
|
* <p>The stream data that was modified by the processor specified in the
|
|
* <code>InputProcessingConfiguration</code> parameter.</p>
|
|
*/
|
|
inline DiscoverInputSchemaResult& WithProcessedInputRecords(Aws::Vector<Aws::String>&& value) { SetProcessedInputRecords(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The stream data that was modified by the processor specified in the
|
|
* <code>InputProcessingConfiguration</code> parameter.</p>
|
|
*/
|
|
inline DiscoverInputSchemaResult& AddProcessedInputRecords(const Aws::String& value) { m_processedInputRecords.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>The stream data that was modified by the processor specified in the
|
|
* <code>InputProcessingConfiguration</code> parameter.</p>
|
|
*/
|
|
inline DiscoverInputSchemaResult& AddProcessedInputRecords(Aws::String&& value) { m_processedInputRecords.push_back(std::move(value)); return *this; }
|
|
|
|
/**
|
|
* <p>The stream data that was modified by the processor specified in the
|
|
* <code>InputProcessingConfiguration</code> parameter.</p>
|
|
*/
|
|
inline DiscoverInputSchemaResult& AddProcessedInputRecords(const char* value) { m_processedInputRecords.push_back(value); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>The raw stream data that was sampled to infer the schema.</p>
|
|
*/
|
|
inline const Aws::Vector<Aws::String>& GetRawInputRecords() const{ return m_rawInputRecords; }
|
|
|
|
/**
|
|
* <p>The raw stream data that was sampled to infer the schema.</p>
|
|
*/
|
|
inline void SetRawInputRecords(const Aws::Vector<Aws::String>& value) { m_rawInputRecords = value; }
|
|
|
|
/**
|
|
* <p>The raw stream data that was sampled to infer the schema.</p>
|
|
*/
|
|
inline void SetRawInputRecords(Aws::Vector<Aws::String>&& value) { m_rawInputRecords = std::move(value); }
|
|
|
|
/**
|
|
* <p>The raw stream data that was sampled to infer the schema.</p>
|
|
*/
|
|
inline DiscoverInputSchemaResult& WithRawInputRecords(const Aws::Vector<Aws::String>& value) { SetRawInputRecords(value); return *this;}
|
|
|
|
/**
|
|
* <p>The raw stream data that was sampled to infer the schema.</p>
|
|
*/
|
|
inline DiscoverInputSchemaResult& WithRawInputRecords(Aws::Vector<Aws::String>&& value) { SetRawInputRecords(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The raw stream data that was sampled to infer the schema.</p>
|
|
*/
|
|
inline DiscoverInputSchemaResult& AddRawInputRecords(const Aws::String& value) { m_rawInputRecords.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>The raw stream data that was sampled to infer the schema.</p>
|
|
*/
|
|
inline DiscoverInputSchemaResult& AddRawInputRecords(Aws::String&& value) { m_rawInputRecords.push_back(std::move(value)); return *this; }
|
|
|
|
/**
|
|
* <p>The raw stream data that was sampled to infer the schema.</p>
|
|
*/
|
|
inline DiscoverInputSchemaResult& AddRawInputRecords(const char* value) { m_rawInputRecords.push_back(value); return *this; }
|
|
|
|
private:
|
|
|
|
SourceSchema m_inputSchema;
|
|
|
|
Aws::Vector<Aws::Vector<Aws::String>> m_parsedInputRecords;
|
|
|
|
Aws::Vector<Aws::String> m_processedInputRecords;
|
|
|
|
Aws::Vector<Aws::String> m_rawInputRecords;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace KinesisAnalyticsV2
|
|
} // namespace Aws
|