interface S3ReferenceDataSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisAnalyticsV2.Mixins.CfnApplicationReferenceDataSourcePropsMixin.S3ReferenceDataSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisanalyticsv2/mixins#CfnApplicationReferenceDataSourcePropsMixin_S3ReferenceDataSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisanalyticsv2.mixins.CfnApplicationReferenceDataSourcePropsMixin.S3ReferenceDataSourceProperty |
Python | aws_cdk.mixins_preview.aws_kinesisanalyticsv2.mixins.CfnApplicationReferenceDataSourcePropsMixin.S3ReferenceDataSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisanalyticsv2 » mixins » CfnApplicationReferenceDataSourcePropsMixin » 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 { mixins as kinesisanalyticsv2_mixins } from '@aws-cdk/mixins-preview/aws-kinesisanalyticsv2';
const s3ReferenceDataSourceProperty: kinesisanalyticsv2_mixins.CfnApplicationReferenceDataSourcePropsMixin.S3ReferenceDataSourceProperty = {
bucketArn: 'bucketArn',
fileKey: 'fileKey',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The Amazon Resource Name (ARN) of the S3 bucket. |
| file | string | The object key name containing the reference data. |
bucketArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the S3 bucket.
fileKey?
Type:
string
(optional)
The object key name containing the reference data.

.NET
Go
Java
Python
TypeScript