public static interface CfnApplicationReferenceDataSource.S3ReferenceDataSourceProperty
Also identifies the IAM role Amazon Kinesis Analytics can assume to read this object on your behalf.
An Amazon Kinesis 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") .referenceRoleArn("referenceRoleArn") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnApplicationReferenceDataSource.S3ReferenceDataSourceProperty.Builder
|
static class |
CfnApplicationReferenceDataSource.S3ReferenceDataSourceProperty.Jsii$Proxy
An implementation for
CfnApplicationReferenceDataSource.S3ReferenceDataSourceProperty |
Modifier and Type | Method and Description |
---|---|
static CfnApplicationReferenceDataSource.S3ReferenceDataSourceProperty.Builder |
builder() |
java.lang.String |
getBucketArn()
Amazon Resource Name (ARN) of the S3 bucket.
|
java.lang.String |
getFileKey()
Object key name containing reference data.
|
java.lang.String |
getReferenceRoleArn()
ARN of the IAM role that the service can assume to read data on your behalf.
|
java.lang.String getBucketArn()
java.lang.String getFileKey()
java.lang.String getReferenceRoleArn()
This role must have permission for the s3:GetObject
action on the object and trust policy that allows Amazon Kinesis Analytics service principal to assume this role.