Struct aws_sdk_migrationhubstrategy::operation::get_application_component_details::GetApplicationComponentDetailsOutput
source · #[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>>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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§
source§impl 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.
sourcepub fn associated_server_ids(&self) -> Option<&[String]>
pub fn associated_server_ids(&self) -> Option<&[String]>
A list of the IDs of the servers on which the application component is running.
source§impl GetApplicationComponentDetailsOutput
impl GetApplicationComponentDetailsOutput
sourcepub fn builder() -> GetApplicationComponentDetailsOutputBuilder
pub fn builder() -> GetApplicationComponentDetailsOutputBuilder
Creates a new builder-style object to manufacture GetApplicationComponentDetailsOutput.
Trait Implementations§
source§impl Clone for GetApplicationComponentDetailsOutput
impl Clone for GetApplicationComponentDetailsOutput
source§fn clone(&self) -> GetApplicationComponentDetailsOutput
fn clone(&self) -> GetApplicationComponentDetailsOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl PartialEq<GetApplicationComponentDetailsOutput> for GetApplicationComponentDetailsOutput
impl PartialEq<GetApplicationComponentDetailsOutput> for GetApplicationComponentDetailsOutput
source§fn 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 ==.source§impl RequestId for GetApplicationComponentDetailsOutput
impl RequestId for GetApplicationComponentDetailsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.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§
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
Mutably borrows from an owned value. Read more