[][src]Struct rusoto_kinesisanalytics::S3ReferenceDataSource

pub struct S3ReferenceDataSource {
    pub bucket_arn: String,
    pub file_key: String,
    pub reference_role_arn: String,
}

Identifies the S3 bucket and object that contains the reference data. 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.

Fields

bucket_arn: String

Amazon Resource Name (ARN) of the S3 bucket.

file_key: String

Object key name containing reference data.

reference_role_arn: String

ARN of the IAM role that the service can assume to read data on your behalf. 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.

Trait Implementations

impl Clone for S3ReferenceDataSource[src]

impl Debug for S3ReferenceDataSource[src]

impl Default for S3ReferenceDataSource[src]

impl PartialEq<S3ReferenceDataSource> for S3ReferenceDataSource[src]

impl Serialize for S3ReferenceDataSource[src]

impl StructuralPartialEq for S3ReferenceDataSource[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.