Interface CfnApplicationReferenceDataSourceMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationReferenceDataSourceMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:27.569Z")
@Stability(Stable)
public interface CfnApplicationReferenceDataSourceMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnApplicationReferenceDataSourcePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.kinesisanalyticsv2.mixins.*;
CfnApplicationReferenceDataSourceMixinProps cfnApplicationReferenceDataSourceMixinProps = CfnApplicationReferenceDataSourceMixinProps.builder()
.applicationName("applicationName")
.referenceDataSource(ReferenceDataSourceProperty.builder()
.referenceSchema(ReferenceSchemaProperty.builder()
.recordColumns(List.of(RecordColumnProperty.builder()
.mapping("mapping")
.name("name")
.sqlType("sqlType")
.build()))
.recordEncoding("recordEncoding")
.recordFormat(RecordFormatProperty.builder()
.mappingParameters(MappingParametersProperty.builder()
.csvMappingParameters(CSVMappingParametersProperty.builder()
.recordColumnDelimiter("recordColumnDelimiter")
.recordRowDelimiter("recordRowDelimiter")
.build())
.jsonMappingParameters(JSONMappingParametersProperty.builder()
.recordRowPath("recordRowPath")
.build())
.build())
.recordFormatType("recordFormatType")
.build())
.build())
.s3ReferenceDataSource(S3ReferenceDataSourceProperty.builder()
.bucketArn("bucketArn")
.fileKey("fileKey")
.build())
.tableName("tableName")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationReferenceDataSourceMixinPropsstatic final classAn implementation forCfnApplicationReferenceDataSourceMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the application.default ObjectFor 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.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationName
The name of the application.- See Also:
-
getReferenceDataSource
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.Returns union: either
IResolvableorCfnApplicationReferenceDataSourcePropsMixin.ReferenceDataSourceProperty- See Also:
-
builder
-