[][src]Struct rusoto_kinesisanalyticsv2::UpdateApplicationRequest

pub struct UpdateApplicationRequest {
    pub application_configuration_update: Option<ApplicationConfigurationUpdate>,
    pub application_name: String,
    pub cloud_watch_logging_option_updates: Option<Vec<CloudWatchLoggingOptionUpdate>>,
    pub current_application_version_id: i64,
    pub run_configuration_update: Option<RunConfigurationUpdate>,
    pub service_execution_role_update: Option<String>,
}

Fields

application_configuration_update: Option<ApplicationConfigurationUpdate>

Describes application configuration updates.

application_name: String

The name of the application to update.

cloud_watch_logging_option_updates: Option<Vec<CloudWatchLoggingOptionUpdate>>

Describes application Amazon CloudWatch logging option updates. You can only update existing CloudWatch logging options with this action. To add a new CloudWatch logging option, use AddApplicationCloudWatchLoggingOption.

current_application_version_id: i64

The current application version ID. You can retrieve the application version ID using DescribeApplication.

run_configuration_update: Option<RunConfigurationUpdate>

Describes updates to the application's starting parameters.

service_execution_role_update: Option<String>

Describes updates to the service execution role.

Trait Implementations

impl Clone for UpdateApplicationRequest[src]

impl Debug for UpdateApplicationRequest[src]

impl Default for UpdateApplicationRequest[src]

impl PartialEq<UpdateApplicationRequest> for UpdateApplicationRequest[src]

impl Serialize for UpdateApplicationRequest[src]

impl StructuralPartialEq for UpdateApplicationRequest[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.