[][src]Struct rusoto_kinesisanalyticsv2::ApplicationDetail

pub struct ApplicationDetail {
    pub application_arn: String,
    pub application_configuration_description: Option<ApplicationConfigurationDescription>,
    pub application_description: Option<String>,
    pub application_name: String,
    pub application_status: String,
    pub application_version_id: i64,
    pub cloud_watch_logging_option_descriptions: Option<Vec<CloudWatchLoggingOptionDescription>>,
    pub create_timestamp: Option<f64>,
    pub last_update_timestamp: Option<f64>,
    pub runtime_environment: String,
    pub service_execution_role: Option<String>,
}

Describes the application, including the application Amazon Resource Name (ARN), status, latest version, and input and output configurations.

Fields

application_arn: String

The ARN of the application.

application_configuration_description: Option<ApplicationConfigurationDescription>

Provides details about the application's SQL or Java code and starting parameters.

application_description: Option<String>

The description of the application.

application_name: String

The name of the application.

application_status: String

The status of the application.

application_version_id: i64

Provides the current application version. Kinesis Data Analytics updates the ApplicationVersionId each time you update the application.

cloud_watch_logging_option_descriptions: Option<Vec<CloudWatchLoggingOptionDescription>>

Describes the application Amazon CloudWatch logging options.

create_timestamp: Option<f64>

The current timestamp when the application was created.

last_update_timestamp: Option<f64>

The current timestamp when the application was last updated.

runtime_environment: String

The runtime environment for the application (SQL-1.0 or FLINK-1_6).

service_execution_role: Option<String>

Specifies the IAM role that the application uses to access external resources.

Trait Implementations

impl Clone for ApplicationDetail[src]

impl Debug for ApplicationDetail[src]

impl Default for ApplicationDetail[src]

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

impl PartialEq<ApplicationDetail> for ApplicationDetail[src]

impl StructuralPartialEq for ApplicationDetail[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: Deserialize<'de>, 
[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.