Struct aws_sdk_appstream::model::Application [−][src]
#[non_exhaustive]pub struct Application {
pub name: Option<String>,
pub display_name: Option<String>,
pub icon_url: Option<String>,
pub launch_path: Option<String>,
pub launch_parameters: Option<String>,
pub enabled: bool,
pub metadata: Option<HashMap<String, String>>,
}Expand description
Describes an application in the application catalog.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<String>The name of the application.
display_name: Option<String>The application name to display.
icon_url: Option<String>The URL for the application icon. This URL might be time-limited.
launch_path: Option<String>The path to the application executable in the instance.
launch_parameters: Option<String>The arguments that are passed to the application at launch.
enabled: boolIf there is a problem, the application can be disabled after image creation.
metadata: Option<HashMap<String, String>>Additional attributes that describe the application.
Implementations
The application name to display.
The URL for the application icon. This URL might be time-limited.
The path to the application executable in the instance.
The arguments that are passed to the application at launch.
If there is a problem, the application can be disabled after image creation.
Creates a new builder-style object to manufacture Application
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for Application
impl Send for Application
impl Sync for Application
impl Unpin for Application
impl UnwindSafe for Application
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more