Interface CfnApplicationReferenceDataSourceV2.S3ReferenceDataSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationReferenceDataSourceV2.S3ReferenceDataSourceProperty.Jsii$Proxy
- Enclosing class:
CfnApplicationReferenceDataSourceV2
@Stability(Stable)
public static interface CfnApplicationReferenceDataSourceV2.S3ReferenceDataSourceProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.kinesisanalytics.*; S3ReferenceDataSourceProperty s3ReferenceDataSourceProperty = S3ReferenceDataSourceProperty.builder() .bucketArn("bucketArn") .fileKey("fileKey") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnApplicationReferenceDataSourceV2.S3ReferenceDataSourceProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The Amazon Resource Name (ARN) of the S3 bucket.The object key name containing the reference data.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketArn
The Amazon Resource Name (ARN) of the S3 bucket.- See Also:
-
getFileKey
The object key name containing the reference data.- See Also:
-
builder
@Stability(Stable) static CfnApplicationReferenceDataSourceV2.S3ReferenceDataSourceProperty.Builder builder()
-