Struct aws_sdk_migrationhub::types::DiscoveredResource
source · #[non_exhaustive]pub struct DiscoveredResource {
pub configuration_id: String,
pub description: Option<String>,
}Expand description
Object representing the on-premises resource being migrated.
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.configuration_id: StringThe configurationId in Application Discovery Service that uniquely identifies the on-premise resource.
description: Option<String>A description that can be free-form text to record additional detail about the discovered resource for clarity or later reference.
Implementations§
source§impl DiscoveredResource
impl DiscoveredResource
sourcepub fn configuration_id(&self) -> &str
pub fn configuration_id(&self) -> &str
The configurationId in Application Discovery Service that uniquely identifies the on-premise resource.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description that can be free-form text to record additional detail about the discovered resource for clarity or later reference.
source§impl DiscoveredResource
impl DiscoveredResource
sourcepub fn builder() -> DiscoveredResourceBuilder
pub fn builder() -> DiscoveredResourceBuilder
Creates a new builder-style object to manufacture DiscoveredResource.
Trait Implementations§
source§impl Clone for DiscoveredResource
impl Clone for DiscoveredResource
source§fn clone(&self) -> DiscoveredResource
fn clone(&self) -> DiscoveredResource
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 Debug for DiscoveredResource
impl Debug for DiscoveredResource
source§impl PartialEq for DiscoveredResource
impl PartialEq for DiscoveredResource
source§fn eq(&self, other: &DiscoveredResource) -> bool
fn eq(&self, other: &DiscoveredResource) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DiscoveredResource
Auto Trait Implementations§
impl RefUnwindSafe for DiscoveredResource
impl Send for DiscoveredResource
impl Sync for DiscoveredResource
impl Unpin for DiscoveredResource
impl UnwindSafe for DiscoveredResource
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
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>
Creates a shared type from an unshared type.