Interface CfnApplicationReferenceDataSourceMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationReferenceDataSourceMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:00.698Z")
@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.cfnpropertymixins.services.kinesisanalytics.*;
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")
.referenceRoleArn("referenceRoleArn")
.build())
.tableName("tableName")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationReferenceDataSourceMixinPropsstatic final classAn implementation forCfnApplicationReferenceDataSourceMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationName
Name of an existing application.- See Also:
-
getReferenceDataSource
The reference data source can be an object in your Amazon S3 bucket.Amazon Kinesis Analytics reads the object and copies the data into the in-application table that is created. You provide an S3 bucket, object key name, and the resulting in-application table that is created. You must also provide an IAM role with the necessary permissions that Amazon Kinesis Analytics can assume to read the object from your S3 bucket on your behalf.
Returns union: either
IResolvableorCfnApplicationReferenceDataSourcePropsMixin.ReferenceDataSourceProperty- See Also:
-
builder
-