Struct aws_sdk_ec2::types::IpamDiscoveredAccount
source · #[non_exhaustive]pub struct IpamDiscoveredAccount { /* private fields */ }
Expand description
An IPAM discovered account. A discovered account is an Amazon Web Services account that is monitored under a resource discovery. If you have integrated IPAM with Amazon Web Services Organizations, all accounts in the organization are discovered accounts.
Implementations§
source§impl IpamDiscoveredAccount
impl IpamDiscoveredAccount
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
The account ID.
sourcepub fn discovery_region(&self) -> Option<&str>
pub fn discovery_region(&self) -> Option<&str>
The Amazon Web Services Region that the account information is returned from. An account can be discovered in multiple regions and will have a separate discovered account for each Region.
sourcepub fn failure_reason(&self) -> Option<&IpamDiscoveryFailureReason>
pub fn failure_reason(&self) -> Option<&IpamDiscoveryFailureReason>
The resource discovery failure reason.
sourcepub fn last_attempted_discovery_time(&self) -> Option<&DateTime>
pub fn last_attempted_discovery_time(&self) -> Option<&DateTime>
The last attempted resource discovery time.
sourcepub fn last_successful_discovery_time(&self) -> Option<&DateTime>
pub fn last_successful_discovery_time(&self) -> Option<&DateTime>
The last successful resource discovery time.
source§impl IpamDiscoveredAccount
impl IpamDiscoveredAccount
sourcepub fn builder() -> IpamDiscoveredAccountBuilder
pub fn builder() -> IpamDiscoveredAccountBuilder
Creates a new builder-style object to manufacture IpamDiscoveredAccount
.
Trait Implementations§
source§impl Clone for IpamDiscoveredAccount
impl Clone for IpamDiscoveredAccount
source§fn clone(&self) -> IpamDiscoveredAccount
fn clone(&self) -> IpamDiscoveredAccount
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 IpamDiscoveredAccount
impl Debug for IpamDiscoveredAccount
source§impl PartialEq<IpamDiscoveredAccount> for IpamDiscoveredAccount
impl PartialEq<IpamDiscoveredAccount> for IpamDiscoveredAccount
source§fn eq(&self, other: &IpamDiscoveredAccount) -> bool
fn eq(&self, other: &IpamDiscoveredAccount) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for IpamDiscoveredAccount
Auto Trait Implementations§
impl RefUnwindSafe for IpamDiscoveredAccount
impl Send for IpamDiscoveredAccount
impl Sync for IpamDiscoveredAccount
impl Unpin for IpamDiscoveredAccount
impl UnwindSafe for IpamDiscoveredAccount
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