![JAR search and dependency download from the Maven repository](/logo.png)
io.cloudshiftdev.awscdk.services.kinesisanalytics.CfnApplicationReferenceDataSourceV2Props.kt Maven / Gradle / Ivy
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package io.cloudshiftdev.awscdk.services.kinesisanalytics
import io.cloudshiftdev.awscdk.IResolvable
import io.cloudshiftdev.awscdk.common.CdkDslMarker
import io.cloudshiftdev.awscdk.common.CdkObject
import io.cloudshiftdev.awscdk.common.CdkObjectWrappers
import kotlin.Any
import kotlin.String
import kotlin.Unit
import kotlin.jvm.JvmName
/**
* Properties for defining a `CfnApplicationReferenceDataSource`.
*
* Example:
*
* ```
* // The code below shows an example of how to instantiate this type.
* // The values are placeholders you should change.
* import io.cloudshiftdev.awscdk.services.kinesisanalytics.*;
* CfnApplicationReferenceDataSourceV2Props cfnApplicationReferenceDataSourceV2Props =
* CfnApplicationReferenceDataSourceV2Props.builder()
* .applicationName("applicationName")
* .referenceDataSource(ReferenceDataSourceProperty.builder()
* .referenceSchema(ReferenceSchemaProperty.builder()
* .recordColumns(List.of(RecordColumnProperty.builder()
* .name("name")
* .sqlType("sqlType")
* // the properties below are optional
* .mapping("mapping")
* .build()))
* .recordFormat(RecordFormatProperty.builder()
* .recordFormatType("recordFormatType")
* // the properties below are optional
* .mappingParameters(MappingParametersProperty.builder()
* .csvMappingParameters(CSVMappingParametersProperty.builder()
* .recordColumnDelimiter("recordColumnDelimiter")
* .recordRowDelimiter("recordRowDelimiter")
* .build())
* .jsonMappingParameters(JSONMappingParametersProperty.builder()
* .recordRowPath("recordRowPath")
* .build())
* .build())
* .build())
* // the properties below are optional
* .recordEncoding("recordEncoding")
* .build())
* // the properties below are optional
* .s3ReferenceDataSource(S3ReferenceDataSourceProperty.builder()
* .bucketArn("bucketArn")
* .fileKey("fileKey")
* .build())
* .tableName("tableName")
* .build())
* .build();
* ```
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html)
*/
public interface CfnApplicationReferenceDataSourceV2Props {
/**
* The name of the application.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname)
*/
public fun applicationName(): String
/**
* For a SQL-based 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.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource)
*/
public fun referenceDataSource(): Any
/**
* A builder for [CfnApplicationReferenceDataSourceV2Props]
*/
@CdkDslMarker
public interface Builder {
/**
* @param applicationName The name of the application.
*/
public fun applicationName(applicationName: String)
/**
* @param referenceDataSource For a SQL-based 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.
*/
public fun referenceDataSource(referenceDataSource: IResolvable)
/**
* @param referenceDataSource For a SQL-based 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.
*/
public
fun referenceDataSource(referenceDataSource: CfnApplicationReferenceDataSourceV2.ReferenceDataSourceProperty)
/**
* @param referenceDataSource For a SQL-based 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.
*/
@kotlin.Suppress("INAPPLICABLE_JVM_NAME")
@JvmName("508c0325757aaa27b6e4ab6c3a27227cdb015d60745a26988b93b7c74ac8dc98")
public
fun referenceDataSource(referenceDataSource: CfnApplicationReferenceDataSourceV2.ReferenceDataSourceProperty.Builder.() -> Unit)
}
private class BuilderImpl : Builder {
private val cdkBuilder:
software.amazon.awscdk.services.kinesisanalytics.CfnApplicationReferenceDataSourceV2Props.Builder
=
software.amazon.awscdk.services.kinesisanalytics.CfnApplicationReferenceDataSourceV2Props.builder()
/**
* @param applicationName The name of the application.
*/
override fun applicationName(applicationName: String) {
cdkBuilder.applicationName(applicationName)
}
/**
* @param referenceDataSource For a SQL-based 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.
*/
override fun referenceDataSource(referenceDataSource: IResolvable) {
cdkBuilder.referenceDataSource(referenceDataSource.let(IResolvable.Companion::unwrap))
}
/**
* @param referenceDataSource For a SQL-based 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.
*/
override
fun referenceDataSource(referenceDataSource: CfnApplicationReferenceDataSourceV2.ReferenceDataSourceProperty) {
cdkBuilder.referenceDataSource(referenceDataSource.let(CfnApplicationReferenceDataSourceV2.ReferenceDataSourceProperty.Companion::unwrap))
}
/**
* @param referenceDataSource For a SQL-based 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.
*/
@kotlin.Suppress("INAPPLICABLE_JVM_NAME")
@JvmName("508c0325757aaa27b6e4ab6c3a27227cdb015d60745a26988b93b7c74ac8dc98")
override
fun referenceDataSource(referenceDataSource: CfnApplicationReferenceDataSourceV2.ReferenceDataSourceProperty.Builder.() -> Unit):
Unit =
referenceDataSource(CfnApplicationReferenceDataSourceV2.ReferenceDataSourceProperty(referenceDataSource))
public fun build():
software.amazon.awscdk.services.kinesisanalytics.CfnApplicationReferenceDataSourceV2Props =
cdkBuilder.build()
}
private class Wrapper(
cdkObject: software.amazon.awscdk.services.kinesisanalytics.CfnApplicationReferenceDataSourceV2Props,
) : CdkObject(cdkObject),
CfnApplicationReferenceDataSourceV2Props {
/**
* The name of the application.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname)
*/
override fun applicationName(): String = unwrap(this).getApplicationName()
/**
* For a SQL-based 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.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource)
*/
override fun referenceDataSource(): Any = unwrap(this).getReferenceDataSource()
}
public companion object {
public operator fun invoke(block: Builder.() -> Unit = {}):
CfnApplicationReferenceDataSourceV2Props {
val builderImpl = BuilderImpl()
return Wrapper(builderImpl.apply(block).build())
}
internal
fun wrap(cdkObject: software.amazon.awscdk.services.kinesisanalytics.CfnApplicationReferenceDataSourceV2Props):
CfnApplicationReferenceDataSourceV2Props = CdkObjectWrappers.wrap(cdkObject) as?
CfnApplicationReferenceDataSourceV2Props ?: Wrapper(cdkObject)
internal fun unwrap(wrapped: CfnApplicationReferenceDataSourceV2Props):
software.amazon.awscdk.services.kinesisanalytics.CfnApplicationReferenceDataSourceV2Props =
(wrapped as CdkObject).cdkObject as
software.amazon.awscdk.services.kinesisanalytics.CfnApplicationReferenceDataSourceV2Props
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy