[][src]Struct rusoto_kinesisanalyticsv2::S3ReferenceDataSource

pub struct S3ReferenceDataSource {
    pub bucket_arn: Option<String>,
    pub file_key: Option<String>,
}

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.

Fields

bucket_arn: Option<String>

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

file_key: Option<String>

The object key name containing the reference data.

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.