#[non_exhaustive]pub struct GetApplicationComponentDetailsOutput {
pub application_component_detail: Option<ApplicationComponentDetail>,
pub associated_applications: Option<Vec<AssociatedApplication>>,
pub more_application_resource: Option<bool>,
pub associated_server_ids: Option<Vec<String>>,
}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.application_component_detail: Option<ApplicationComponentDetail>Detailed information about an application component.
associated_applications: Option<Vec<AssociatedApplication>>The associated application group as defined in AWS Application Discovery Service.
more_application_resource: Option<bool>Set to true if the application component belongs to more than one application group.
associated_server_ids: Option<Vec<String>>A list of the IDs of the servers on which the application component is running.
Implementations
sourceimpl GetApplicationComponentDetailsOutput
impl GetApplicationComponentDetailsOutput
sourcepub fn application_component_detail(
&self
) -> Option<&ApplicationComponentDetail>
pub fn application_component_detail(
&self
) -> Option<&ApplicationComponentDetail>
Detailed information about an application component.
sourcepub fn associated_applications(&self) -> Option<&[AssociatedApplication]>
pub fn associated_applications(&self) -> Option<&[AssociatedApplication]>
The associated application group as defined in AWS Application Discovery Service.
sourcepub fn more_application_resource(&self) -> Option<bool>
pub fn more_application_resource(&self) -> Option<bool>
Set to true if the application component belongs to more than one application group.
sourceimpl GetApplicationComponentDetailsOutput
impl GetApplicationComponentDetailsOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetApplicationComponentDetailsOutput
Trait Implementations
sourceimpl Clone for GetApplicationComponentDetailsOutput
impl Clone for GetApplicationComponentDetailsOutput
sourcefn clone(&self) -> GetApplicationComponentDetailsOutput
fn clone(&self) -> GetApplicationComponentDetailsOutput
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 PartialEq<GetApplicationComponentDetailsOutput> for GetApplicationComponentDetailsOutput
impl PartialEq<GetApplicationComponentDetailsOutput> for GetApplicationComponentDetailsOutput
sourcefn eq(&self, other: &GetApplicationComponentDetailsOutput) -> bool
fn eq(&self, other: &GetApplicationComponentDetailsOutput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &GetApplicationComponentDetailsOutput) -> bool
fn ne(&self, other: &GetApplicationComponentDetailsOutput) -> bool
This method tests for !=.
impl StructuralPartialEq for GetApplicationComponentDetailsOutput
Auto Trait Implementations
impl RefUnwindSafe for GetApplicationComponentDetailsOutput
impl Send for GetApplicationComponentDetailsOutput
impl Sync for GetApplicationComponentDetailsOutput
impl Unpin for GetApplicationComponentDetailsOutput
impl UnwindSafe for GetApplicationComponentDetailsOutput
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