Struct aws_sdk_appstream::types::Application
source · #[non_exhaustive]pub struct Application {Show 15 fields
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: Option<bool>,
pub metadata: Option<HashMap<String, String>>,
pub working_directory: Option<String>,
pub description: Option<String>,
pub arn: Option<String>,
pub app_block_arn: Option<String>,
pub icon_s3_location: Option<S3Location>,
pub platforms: Option<Vec<PlatformType>>,
pub instance_families: Option<Vec<String>>,
pub created_time: Option<DateTime>,
}
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: Option<bool>
If there is a problem, the application can be disabled after image creation.
metadata: Option<HashMap<String, String>>
Additional attributes that describe the application.
working_directory: Option<String>
The working directory for the application.
description: Option<String>
The description of the application.
arn: Option<String>
The ARN of the application.
app_block_arn: Option<String>
The app block ARN of the application.
icon_s3_location: Option<S3Location>
The S3 location of the application icon.
platforms: Option<Vec<PlatformType>>
The platforms on which the application can run.
instance_families: Option<Vec<String>>
The instance families for the application.
created_time: Option<DateTime>
The time at which the application was created within the app block.
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) -> Option<bool>
pub fn enabled(&self) -> Option<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) -> &[PlatformType]
pub fn platforms(&self) -> &[PlatformType]
The platforms on which the application can run.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .platforms.is_none()
.
sourcepub fn instance_families(&self) -> &[String]
pub fn instance_families(&self) -> &[String]
The instance families for the application.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .instance_families.is_none()
.
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 for Application
impl PartialEq 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 ==
.