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
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) -> &[AssociatedApplication]
pub fn associated_applications(&self) -> &[AssociatedApplication]
The associated application group as defined in AWS Application Discovery Service.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .associated_applications.is_none()
.
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) -> &[String]
pub fn associated_server_ids(&self) -> &[String]
A list of the IDs of the servers on which the application component is running.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .associated_server_ids.is_none()
.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for GetApplicationComponentDetailsOutput
impl PartialEq for GetApplicationComponentDetailsOutput
source§fn eq(&self, other: &GetApplicationComponentDetailsOutput) -> bool
fn eq(&self, other: &GetApplicationComponentDetailsOutput) -> bool
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>
None
if the service could not be reached.impl StructuralPartialEq for GetApplicationComponentDetailsOutput
Auto Trait Implementations§
impl Freeze for GetApplicationComponentDetailsOutput
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
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