Struct aws_sdk_migrationhubstrategy::model::Collector
source · [−]#[non_exhaustive]pub struct Collector {
pub collector_id: Option<String>,
pub ip_address: Option<String>,
pub host_name: Option<String>,
pub collector_health: Option<CollectorHealth>,
pub collector_version: Option<String>,
pub registered_time_stamp: Option<String>,
pub last_activity_time_stamp: Option<String>,
}Expand description
Process data collector that runs in the environment that you specify.
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.collector_id: Option<String>The ID of the collector.
ip_address: Option<String>IP address of the server that is hosting the collector.
host_name: Option<String>Hostname of the server that is hosting the collector.
collector_health: Option<CollectorHealth>Indicates the health of a collector.
collector_version: Option<String>Current version of the collector that is running in the environment that you specify.
registered_time_stamp: Option<String>Time when the collector registered with the service.
last_activity_time_stamp: Option<String>Time when the collector last pinged the service.
Implementations
sourceimpl Collector
impl Collector
sourcepub fn collector_id(&self) -> Option<&str>
pub fn collector_id(&self) -> Option<&str>
The ID of the collector.
sourcepub fn ip_address(&self) -> Option<&str>
pub fn ip_address(&self) -> Option<&str>
IP address of the server that is hosting the collector.
sourcepub fn collector_health(&self) -> Option<&CollectorHealth>
pub fn collector_health(&self) -> Option<&CollectorHealth>
Indicates the health of a collector.
sourcepub fn collector_version(&self) -> Option<&str>
pub fn collector_version(&self) -> Option<&str>
Current version of the collector that is running in the environment that you specify.
sourcepub fn registered_time_stamp(&self) -> Option<&str>
pub fn registered_time_stamp(&self) -> Option<&str>
Time when the collector registered with the service.
sourcepub fn last_activity_time_stamp(&self) -> Option<&str>
pub fn last_activity_time_stamp(&self) -> Option<&str>
Time when the collector last pinged the service.
Trait Implementations
impl StructuralPartialEq for Collector
Auto Trait Implementations
impl RefUnwindSafe for Collector
impl Send for Collector
impl Sync for Collector
impl Unpin for Collector
impl UnwindSafe for Collector
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more