Struct aws_sdk_appstream::types::Application
source · #[non_exhaustive]pub struct Application { /* private fields */ }
Expand description
Describes an application in the application catalog.
Implementations§
source§impl Application
impl Application
sourcepub fn display_name(&self) -> Option<&str>
pub fn display_name(&self) -> Option<&str>
The application name to display.
sourcepub fn icon_url(&self) -> Option<&str>
pub fn icon_url(&self) -> Option<&str>
The URL for the application icon. This URL might be time-limited.
sourcepub fn launch_path(&self) -> Option<&str>
pub fn launch_path(&self) -> Option<&str>
The path to the application executable in the instance.
sourcepub fn launch_parameters(&self) -> Option<&str>
pub fn launch_parameters(&self) -> Option<&str>
The arguments that are passed to the application at launch.
sourcepub fn enabled(&self) -> bool
pub fn enabled(&self) -> bool
If there is a problem, the application can be disabled after image creation.
sourcepub fn metadata(&self) -> Option<&HashMap<String, String>>
pub fn metadata(&self) -> Option<&HashMap<String, String>>
Additional attributes that describe the application.
sourcepub fn working_directory(&self) -> Option<&str>
pub fn working_directory(&self) -> Option<&str>
The working directory for the application.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the application.
sourcepub fn app_block_arn(&self) -> Option<&str>
pub fn app_block_arn(&self) -> Option<&str>
The app block ARN of the application.
sourcepub fn icon_s3_location(&self) -> Option<&S3Location>
pub fn icon_s3_location(&self) -> Option<&S3Location>
The S3 location of the application icon.
sourcepub fn platforms(&self) -> Option<&[PlatformType]>
pub fn platforms(&self) -> Option<&[PlatformType]>
The platforms on which the application can run.
sourcepub fn instance_families(&self) -> Option<&[String]>
pub fn instance_families(&self) -> Option<&[String]>
The instance families for the application.
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
The time at which the application was created within the app block.
source§impl Application
impl Application
sourcepub fn builder() -> ApplicationBuilder
pub fn builder() -> ApplicationBuilder
Creates a new builder-style object to manufacture Application
.
Trait Implementations§
source§impl Clone for Application
impl Clone for Application
source§fn clone(&self) -> Application
fn clone(&self) -> Application
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for Application
impl Debug for Application
source§impl PartialEq<Application> for Application
impl PartialEq<Application> for Application
source§fn eq(&self, other: &Application) -> bool
fn eq(&self, other: &Application) -> bool
self
and other
values to be equal, and is used
by ==
.