[][src]Struct rusoto_kinesisanalyticsv2::CodeContentDescription

pub struct CodeContentDescription {
    pub code_md5: Option<String>,
    pub code_size: Option<i64>,
    pub s3_application_code_location_description: Option<S3ApplicationCodeLocationDescription>,
    pub text_content: Option<String>,
}

Describes details about the application code for a Java-based Kinesis Data Analytics application.

Fields

code_md5: Option<String>

The checksum that can be used to validate zip-format code.

code_size: Option<i64>

The size in bytes of the application code. Can be used to validate zip-format code.

s3_application_code_location_description: Option<S3ApplicationCodeLocationDescription>

The S3 bucket Amazon Resource Name (ARN), file key, and object version of the application code stored in Amazon S3.

text_content: Option<String>

The text-format code

Trait Implementations

impl Clone for CodeContentDescription[src]

impl Debug for CodeContentDescription[src]

impl Default for CodeContentDescription[src]

impl<'de> Deserialize<'de> for CodeContentDescription[src]

impl PartialEq<CodeContentDescription> for CodeContentDescription[src]

impl StructuralPartialEq for CodeContentDescription[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.