[][src]Struct rusoto_kinesisanalyticsv2::CodeContentUpdate

pub struct CodeContentUpdate {
    pub s3_content_location_update: Option<S3ContentLocationUpdate>,
    pub text_content_update: Option<String>,
    pub zip_file_content_update: Option<Bytes>,
}

Describes an update to the code of a Java-based Kinesis Data Analytics application.

Fields

s3_content_location_update: Option<S3ContentLocationUpdate>

Describes an update to the location of code for an application.

text_content_update: Option<String>

Describes an update to the text code for an application.

zip_file_content_update: Option<Bytes>

Describes an update to the zipped code for an application.

Trait Implementations

impl Clone for CodeContentUpdate[src]

impl Debug for CodeContentUpdate[src]

impl Default for CodeContentUpdate[src]

impl PartialEq<CodeContentUpdate> for CodeContentUpdate[src]

impl Serialize for CodeContentUpdate[src]

impl StructuralPartialEq for CodeContentUpdate[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> Instrument for T[src]

impl<T> Instrument 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.