[][src]Struct rusoto_appstream::Application

pub struct Application {
    pub display_name: Option<String>,
    pub enabled: Option<bool>,
    pub icon_url: Option<String>,
    pub launch_parameters: Option<String>,
    pub launch_path: Option<String>,
    pub metadata: Option<HashMap<String, String>>,
    pub name: Option<String>,
}

Describes an application in the application catalog.

Fields

display_name: Option<String>

The application name to display.

enabled: Option<bool>

If there is a problem, the application can be disabled after image creation.

icon_url: Option<String>

The URL for the application icon. This URL might be time-limited.

launch_parameters: Option<String>

The arguments that are passed to the application at launch.

launch_path: Option<String>

The path to the application executable in the instance.

metadata: Option<HashMap<String, String>>

Additional attributes that describe the application.

name: Option<String>

The name of the application.

Trait Implementations

impl Clone for Application[src]

impl Debug for Application[src]

impl Default for Application[src]

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

impl PartialEq<Application> for Application[src]

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