Struct aws_sdk_panorama::operation::describe_application_instance_details::DescribeApplicationInstanceDetailsOutput
source · #[non_exhaustive]pub struct DescribeApplicationInstanceDetailsOutput {
pub name: Option<String>,
pub description: Option<String>,
pub default_runtime_context_device: Option<String>,
pub manifest_payload: Option<ManifestPayload>,
pub manifest_overrides_payload: Option<ManifestOverridesPayload>,
pub application_instance_id_to_replace: Option<String>,
pub created_time: Option<DateTime>,
pub application_instance_id: Option<String>,
/* private fields */
}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 application instance's name.
description: Option<String>The application instance's description.
default_runtime_context_device: Option<String>The application instance's default runtime context device.
manifest_payload: Option<ManifestPayload>The application instance's configuration manifest.
manifest_overrides_payload: Option<ManifestOverridesPayload>Parameter overrides for the configuration manifest.
application_instance_id_to_replace: Option<String>The ID of the application instance that this instance replaced.
created_time: Option<DateTime>When the application instance was created.
application_instance_id: Option<String>The application instance's ID.
Implementations§
source§impl DescribeApplicationInstanceDetailsOutput
impl DescribeApplicationInstanceDetailsOutput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The application instance's description.
sourcepub fn default_runtime_context_device(&self) -> Option<&str>
pub fn default_runtime_context_device(&self) -> Option<&str>
The application instance's default runtime context device.
sourcepub fn manifest_payload(&self) -> Option<&ManifestPayload>
pub fn manifest_payload(&self) -> Option<&ManifestPayload>
The application instance's configuration manifest.
sourcepub fn manifest_overrides_payload(&self) -> Option<&ManifestOverridesPayload>
pub fn manifest_overrides_payload(&self) -> Option<&ManifestOverridesPayload>
Parameter overrides for the configuration manifest.
sourcepub fn application_instance_id_to_replace(&self) -> Option<&str>
pub fn application_instance_id_to_replace(&self) -> Option<&str>
The ID of the application instance that this instance replaced.
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
When the application instance was created.
sourcepub fn application_instance_id(&self) -> Option<&str>
pub fn application_instance_id(&self) -> Option<&str>
The application instance's ID.
source§impl DescribeApplicationInstanceDetailsOutput
impl DescribeApplicationInstanceDetailsOutput
sourcepub fn builder() -> DescribeApplicationInstanceDetailsOutputBuilder
pub fn builder() -> DescribeApplicationInstanceDetailsOutputBuilder
Creates a new builder-style object to manufacture DescribeApplicationInstanceDetailsOutput.
Trait Implementations§
source§impl Clone for DescribeApplicationInstanceDetailsOutput
impl Clone for DescribeApplicationInstanceDetailsOutput
source§fn clone(&self) -> DescribeApplicationInstanceDetailsOutput
fn clone(&self) -> DescribeApplicationInstanceDetailsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for DescribeApplicationInstanceDetailsOutput
impl PartialEq for DescribeApplicationInstanceDetailsOutput
source§fn eq(&self, other: &DescribeApplicationInstanceDetailsOutput) -> bool
fn eq(&self, other: &DescribeApplicationInstanceDetailsOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeApplicationInstanceDetailsOutput
impl RequestId for DescribeApplicationInstanceDetailsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for DescribeApplicationInstanceDetailsOutput
Auto Trait Implementations§
impl Freeze for DescribeApplicationInstanceDetailsOutput
impl RefUnwindSafe for DescribeApplicationInstanceDetailsOutput
impl Send for DescribeApplicationInstanceDetailsOutput
impl Sync for DescribeApplicationInstanceDetailsOutput
impl Unpin for DescribeApplicationInstanceDetailsOutput
impl UnwindSafe for DescribeApplicationInstanceDetailsOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more