Struct aws_sdk_drs::types::LifeCycle
source · #[non_exhaustive]pub struct LifeCycle {
pub added_to_service_date_time: Option<String>,
pub first_byte_date_time: Option<String>,
pub elapsed_replication_duration: Option<String>,
pub last_seen_by_service_date_time: Option<String>,
pub last_launch: Option<LifeCycleLastLaunch>,
}Expand description
An object representing the Source Server Lifecycle.
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.added_to_service_date_time: Option<String>The date and time of when the Source Server was added to the service.
first_byte_date_time: Option<String>The date and time of the first byte that was replicated from the Source Server.
elapsed_replication_duration: Option<String>The amount of time that the Source Server has been replicating for.
last_seen_by_service_date_time: Option<String>The date and time this Source Server was last seen by the service.
last_launch: Option<LifeCycleLastLaunch>An object containing information regarding the last launch of the Source Server.
Implementations§
source§impl LifeCycle
impl LifeCycle
sourcepub fn added_to_service_date_time(&self) -> Option<&str>
pub fn added_to_service_date_time(&self) -> Option<&str>
The date and time of when the Source Server was added to the service.
sourcepub fn first_byte_date_time(&self) -> Option<&str>
pub fn first_byte_date_time(&self) -> Option<&str>
The date and time of the first byte that was replicated from the Source Server.
sourcepub fn elapsed_replication_duration(&self) -> Option<&str>
pub fn elapsed_replication_duration(&self) -> Option<&str>
The amount of time that the Source Server has been replicating for.
sourcepub fn last_seen_by_service_date_time(&self) -> Option<&str>
pub fn last_seen_by_service_date_time(&self) -> Option<&str>
The date and time this Source Server was last seen by the service.
sourcepub fn last_launch(&self) -> Option<&LifeCycleLastLaunch>
pub fn last_launch(&self) -> Option<&LifeCycleLastLaunch>
An object containing information regarding the last launch of the Source Server.