Struct aws_sdk_migrationhub::operation::list_discovered_resources::ListDiscoveredResourcesOutput
source · #[non_exhaustive]pub struct ListDiscoveredResourcesOutput {
pub next_token: Option<String>,
pub discovered_resource_list: Option<Vec<DiscoveredResource>>,
/* 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.next_token: Option<String>If there are more discovered resources than the max result, return the next token to be passed to the next call as a bookmark of where to start from.
discovered_resource_list: Option<Vec<DiscoveredResource>>Returned list of discovered resources associated with the given MigrationTask.
Implementations§
source§impl ListDiscoveredResourcesOutput
impl ListDiscoveredResourcesOutput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If there are more discovered resources than the max result, return the next token to be passed to the next call as a bookmark of where to start from.
sourcepub fn discovered_resource_list(&self) -> Option<&[DiscoveredResource]>
pub fn discovered_resource_list(&self) -> Option<&[DiscoveredResource]>
Returned list of discovered resources associated with the given MigrationTask.
source§impl ListDiscoveredResourcesOutput
impl ListDiscoveredResourcesOutput
sourcepub fn builder() -> ListDiscoveredResourcesOutputBuilder
pub fn builder() -> ListDiscoveredResourcesOutputBuilder
Creates a new builder-style object to manufacture ListDiscoveredResourcesOutput.
Trait Implementations§
source§impl Clone for ListDiscoveredResourcesOutput
impl Clone for ListDiscoveredResourcesOutput
source§fn clone(&self) -> ListDiscoveredResourcesOutput
fn clone(&self) -> ListDiscoveredResourcesOutput
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<ListDiscoveredResourcesOutput> for ListDiscoveredResourcesOutput
impl PartialEq<ListDiscoveredResourcesOutput> for ListDiscoveredResourcesOutput
source§fn eq(&self, other: &ListDiscoveredResourcesOutput) -> bool
fn eq(&self, other: &ListDiscoveredResourcesOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for ListDiscoveredResourcesOutput
impl RequestId for ListDiscoveredResourcesOutput
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 ListDiscoveredResourcesOutput
Auto Trait Implementations§
impl RefUnwindSafe for ListDiscoveredResourcesOutput
impl Send for ListDiscoveredResourcesOutput
impl Sync for ListDiscoveredResourcesOutput
impl Unpin for ListDiscoveredResourcesOutput
impl UnwindSafe for ListDiscoveredResourcesOutput
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