187 lines
7.5 KiB
C++
187 lines
7.5 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/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/kinesisanalyticsv2/model/S3ReferenceDataSource.h>
|
|
#include <aws/kinesisanalyticsv2/model/SourceSchema.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace KinesisAnalyticsV2
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>For an SQL-based Amazon Kinesis Data Analytics application, describes the
|
|
* reference data source by providing the source information (Amazon S3 bucket name
|
|
* and object key name), the resulting in-application table name that is created,
|
|
* and the necessary schema to map the data elements in the Amazon S3 object to the
|
|
* in-application table.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ReferenceDataSource">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_KINESISANALYTICSV2_API ReferenceDataSource
|
|
{
|
|
public:
|
|
ReferenceDataSource();
|
|
ReferenceDataSource(Aws::Utils::Json::JsonView jsonValue);
|
|
ReferenceDataSource& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>The name of the in-application table to create.</p>
|
|
*/
|
|
inline const Aws::String& GetTableName() const{ return m_tableName; }
|
|
|
|
/**
|
|
* <p>The name of the in-application table to create.</p>
|
|
*/
|
|
inline bool TableNameHasBeenSet() const { return m_tableNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the in-application table to create.</p>
|
|
*/
|
|
inline void SetTableName(const Aws::String& value) { m_tableNameHasBeenSet = true; m_tableName = value; }
|
|
|
|
/**
|
|
* <p>The name of the in-application table to create.</p>
|
|
*/
|
|
inline void SetTableName(Aws::String&& value) { m_tableNameHasBeenSet = true; m_tableName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the in-application table to create.</p>
|
|
*/
|
|
inline void SetTableName(const char* value) { m_tableNameHasBeenSet = true; m_tableName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the in-application table to create.</p>
|
|
*/
|
|
inline ReferenceDataSource& WithTableName(const Aws::String& value) { SetTableName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the in-application table to create.</p>
|
|
*/
|
|
inline ReferenceDataSource& WithTableName(Aws::String&& value) { SetTableName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the in-application table to create.</p>
|
|
*/
|
|
inline ReferenceDataSource& WithTableName(const char* value) { SetTableName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Identifies the S3 bucket and object that contains the reference data. A
|
|
* Kinesis Data Analytics application loads reference data only once. If the data
|
|
* changes, you call the <a>UpdateApplication</a> operation to trigger reloading of
|
|
* data into your application. </p>
|
|
*/
|
|
inline const S3ReferenceDataSource& GetS3ReferenceDataSource() const{ return m_s3ReferenceDataSource; }
|
|
|
|
/**
|
|
* <p>Identifies the S3 bucket and object that contains the reference data. A
|
|
* Kinesis Data Analytics application loads reference data only once. If the data
|
|
* changes, you call the <a>UpdateApplication</a> operation to trigger reloading of
|
|
* data into your application. </p>
|
|
*/
|
|
inline bool S3ReferenceDataSourceHasBeenSet() const { return m_s3ReferenceDataSourceHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Identifies the S3 bucket and object that contains the reference data. A
|
|
* Kinesis Data Analytics application loads reference data only once. If the data
|
|
* changes, you call the <a>UpdateApplication</a> operation to trigger reloading of
|
|
* data into your application. </p>
|
|
*/
|
|
inline void SetS3ReferenceDataSource(const S3ReferenceDataSource& value) { m_s3ReferenceDataSourceHasBeenSet = true; m_s3ReferenceDataSource = value; }
|
|
|
|
/**
|
|
* <p>Identifies the S3 bucket and object that contains the reference data. A
|
|
* Kinesis Data Analytics application loads reference data only once. If the data
|
|
* changes, you call the <a>UpdateApplication</a> operation to trigger reloading of
|
|
* data into your application. </p>
|
|
*/
|
|
inline void SetS3ReferenceDataSource(S3ReferenceDataSource&& value) { m_s3ReferenceDataSourceHasBeenSet = true; m_s3ReferenceDataSource = std::move(value); }
|
|
|
|
/**
|
|
* <p>Identifies the S3 bucket and object that contains the reference data. A
|
|
* Kinesis Data Analytics application loads reference data only once. If the data
|
|
* changes, you call the <a>UpdateApplication</a> operation to trigger reloading of
|
|
* data into your application. </p>
|
|
*/
|
|
inline ReferenceDataSource& WithS3ReferenceDataSource(const S3ReferenceDataSource& value) { SetS3ReferenceDataSource(value); return *this;}
|
|
|
|
/**
|
|
* <p>Identifies the S3 bucket and object that contains the reference data. A
|
|
* Kinesis Data Analytics application loads reference data only once. If the data
|
|
* changes, you call the <a>UpdateApplication</a> operation to trigger reloading of
|
|
* data into your application. </p>
|
|
*/
|
|
inline ReferenceDataSource& WithS3ReferenceDataSource(S3ReferenceDataSource&& value) { SetS3ReferenceDataSource(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Describes the format of the data in the streaming source, and how each data
|
|
* element maps to corresponding columns created in the in-application stream.</p>
|
|
*/
|
|
inline const SourceSchema& GetReferenceSchema() const{ return m_referenceSchema; }
|
|
|
|
/**
|
|
* <p>Describes the format of the data in the streaming source, and how each data
|
|
* element maps to corresponding columns created in the in-application stream.</p>
|
|
*/
|
|
inline bool ReferenceSchemaHasBeenSet() const { return m_referenceSchemaHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Describes the format of the data in the streaming source, and how each data
|
|
* element maps to corresponding columns created in the in-application stream.</p>
|
|
*/
|
|
inline void SetReferenceSchema(const SourceSchema& value) { m_referenceSchemaHasBeenSet = true; m_referenceSchema = value; }
|
|
|
|
/**
|
|
* <p>Describes the format of the data in the streaming source, and how each data
|
|
* element maps to corresponding columns created in the in-application stream.</p>
|
|
*/
|
|
inline void SetReferenceSchema(SourceSchema&& value) { m_referenceSchemaHasBeenSet = true; m_referenceSchema = std::move(value); }
|
|
|
|
/**
|
|
* <p>Describes the format of the data in the streaming source, and how each data
|
|
* element maps to corresponding columns created in the in-application stream.</p>
|
|
*/
|
|
inline ReferenceDataSource& WithReferenceSchema(const SourceSchema& value) { SetReferenceSchema(value); return *this;}
|
|
|
|
/**
|
|
* <p>Describes the format of the data in the streaming source, and how each data
|
|
* element maps to corresponding columns created in the in-application stream.</p>
|
|
*/
|
|
inline ReferenceDataSource& WithReferenceSchema(SourceSchema&& value) { SetReferenceSchema(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_tableName;
|
|
bool m_tableNameHasBeenSet;
|
|
|
|
S3ReferenceDataSource m_s3ReferenceDataSource;
|
|
bool m_s3ReferenceDataSourceHasBeenSet;
|
|
|
|
SourceSchema m_referenceSchema;
|
|
bool m_referenceSchemaHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace KinesisAnalyticsV2
|
|
} // namespace Aws
|