aws-cdk-lib.aws_kinesisanalyticsv2.CfnApplicationReferenceDataSource.S3ReferenceDataSourceProperty

interface S3ReferenceDataSourceProperty

LanguageType name
.NETAmazon.CDK.AWS.KinesisAnalyticsV2.CfnApplicationReferenceDataSource.S3ReferenceDataSourceProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskinesisanalyticsv2#CfnApplicationReferenceDataSource_S3ReferenceDataSourceProperty
Javasoftware.amazon.awscdk.services.kinesisanalyticsv2.CfnApplicationReferenceDataSource.S3ReferenceDataSourceProperty
Pythonaws_cdk.aws_kinesisanalyticsv2.CfnApplicationReferenceDataSource.S3ReferenceDataSourceProperty
TypeScript aws-cdk-lib » aws_kinesisanalyticsv2 » CfnApplicationReferenceDataSource » S3ReferenceDataSourceProperty

For an SQL-based Amazon Kinesis Data Analytics application, identifies the Amazon S3 bucket and object that contains the reference data.

A Kinesis Data Analytics application loads reference data only once. If the data changes, you call the UpdateApplication operation to trigger reloading of data into your application.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kinesisanalyticsv2 as kinesisanalyticsv2 } from 'aws-cdk-lib';
const s3ReferenceDataSourceProperty: kinesisanalyticsv2.CfnApplicationReferenceDataSource.S3ReferenceDataSourceProperty = {
  bucketArn: 'bucketArn',
  fileKey: 'fileKey',
};

Properties

NameTypeDescription
bucketArnstringThe Amazon Resource Name (ARN) of the S3 bucket.
fileKeystringThe object key name containing the reference data.

bucketArn

Type: string

The Amazon Resource Name (ARN) of the S3 bucket.


fileKey

Type: string

The object key name containing the reference data.