AWS Fundamentals Logo
AWS Fundamentals
L1 ConstructAWS::KinesisAnalytics::ApplicationReferenceDataSource

CfnApplicationReferenceDataSource

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](https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html) . For the limits on data sources you can add to your application, see [Limits](https://docs.aws.amazon.com/kinesisanalytics/latest/dev/limits.html) . This operation requires permissions to perform the `kinesisanalytics:AddApplicationOutput` action.

Import

import { CfnApplicationReferenceDataSource } from 'aws-cdk-lib/aws-kinesisanalytics';

Or use the module namespace:

import * as kinesisanalytics from 'aws-cdk-lib/aws-kinesisanalytics';
// kinesisanalytics.CfnApplicationReferenceDataSource

Properties

Configuration passed to the constructor as CfnApplicationReferenceDataSourceProps.

applicationNameRequired
string

Name of an existing application.

referenceDataSourceRequired
IResolvable | ReferenceDataSourceProperty

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.

CloudFormation Resource

This L1 construct maps directly to the following CloudFormation resource type.

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

LevelL1 (CloudFormation)
Moduleaws-kinesisanalytics
CFN TypeAWS::KinesisAnalytics::ApplicationReferenceDataSource
Properties2

External Links