Struct aws_sdk_appstream::model::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: 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: 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
sourceimpl 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.
sourceimpl Application
impl Application
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture Application
Trait Implementations
sourceimpl Clone for Application
impl Clone for Application
sourcefn clone(&self) -> Application
fn clone(&self) -> Application
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for Application
impl Debug for Application
sourceimpl PartialEq<Application> for Application
impl PartialEq<Application> for Application
sourcefn eq(&self, other: &Application) -> bool
fn eq(&self, other: &Application) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &Application) -> bool
fn ne(&self, other: &Application) -> bool
This method tests for !=
.
impl StructuralPartialEq for Application
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more