Class CfnApplicationReferenceDataSourcePropsMixin

java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.Mixin
software.amazon.awscdk.cfnpropertymixins.services.kinesisanalytics.CfnApplicationReferenceDataSourcePropsMixin
All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable, software.constructs.IMixin

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:20:00.698Z") @Stability(Stable) public class CfnApplicationReferenceDataSourcePropsMixin extends Mixin implements software.constructs.IMixin
Adds a reference data source to an existing application.

Amazon Kinesis Analytics reads reference data (that is, an Amazon S3 object) and creates an in-application table within your application. In the request, you provide the source (S3 bucket name and object key name), name of the in-application table to create, and the necessary mapping information that describes how data in Amazon S3 object maps to columns in the resulting in-application table.

For conceptual information, see Configuring Application Input . For the limits on data sources you can add to your application, see Limits .

This operation requires permissions to perform the kinesisanalytics:AddApplicationOutput action.

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.*;
 import software.amazon.awscdk.*;
 IMergeStrategy mergeStrategy;
 CfnApplicationReferenceDataSourcePropsMixin cfnApplicationReferenceDataSourcePropsMixin = CfnApplicationReferenceDataSourcePropsMixin.Builder.create(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())
 .strategy(mergeStrategy)
 .build();
 

See Also:
  • Field Details

    • CFN_PROPERTY_KEYS

      @Stability(Stable) protected static final List<String> CFN_PROPERTY_KEYS
  • Constructor Details

    • CfnApplicationReferenceDataSourcePropsMixin

      protected CfnApplicationReferenceDataSourcePropsMixin(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnApplicationReferenceDataSourcePropsMixin

      protected CfnApplicationReferenceDataSourcePropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnApplicationReferenceDataSourcePropsMixin

      @Stability(Stable) public CfnApplicationReferenceDataSourcePropsMixin(@NotNull CfnApplicationReferenceDataSourceMixinProps props, @Nullable CfnPropertyMixinOptions options)
      Create a mixin to apply properties to AWS::KinesisAnalytics::ApplicationReferenceDataSource.

      Parameters:
      props - L1 properties to apply. This parameter is required.
      options - Mixin options.
    • CfnApplicationReferenceDataSourcePropsMixin

      @Stability(Stable) public CfnApplicationReferenceDataSourcePropsMixin(@NotNull CfnApplicationReferenceDataSourceMixinProps props)
      Create a mixin to apply properties to AWS::KinesisAnalytics::ApplicationReferenceDataSource.

      Parameters:
      props - L1 properties to apply. This parameter is required.
  • Method Details

    • applyTo

      @Stability(Stable) public void applyTo(@NotNull software.constructs.IConstruct construct)
      Apply the mixin properties to the construct.

      Specified by:
      applyTo in interface software.constructs.IMixin
      Specified by:
      applyTo in class Mixin
      Parameters:
      construct - This parameter is required.
    • supports

      @Stability(Stable) @NotNull public Boolean supports(@NotNull software.constructs.IConstruct construct)
      Check if this mixin supports the given construct.

      Specified by:
      supports in interface software.constructs.IMixin
      Overrides:
      supports in class Mixin
      Parameters:
      construct - This parameter is required.
    • getProps

      @Stability(Stable) @NotNull protected CfnApplicationReferenceDataSourceMixinProps getProps()
    • getStrategy

      @Stability(Stable) @NotNull protected IMergeStrategy getStrategy()