Struct aws_sdk_drs::types::ParticipatingServer
source · #[non_exhaustive]pub struct ParticipatingServer {
pub source_server_id: Option<String>,
pub recovery_instance_id: Option<String>,
pub launch_status: Option<LaunchStatus>,
pub launch_actions_status: Option<LaunchActionsStatus>,
}Expand description
Represents a server participating in an asynchronous Job.
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.source_server_id: Option<String>The Source Server ID of a participating server.
recovery_instance_id: Option<String>The Recovery Instance ID of a participating server.
launch_status: Option<LaunchStatus>The launch status of a participating server.
launch_actions_status: Option<LaunchActionsStatus>The post-launch action runs of a participating server.
Implementations§
source§impl ParticipatingServer
impl ParticipatingServer
sourcepub fn source_server_id(&self) -> Option<&str>
pub fn source_server_id(&self) -> Option<&str>
The Source Server ID of a participating server.
sourcepub fn recovery_instance_id(&self) -> Option<&str>
pub fn recovery_instance_id(&self) -> Option<&str>
The Recovery Instance ID of a participating server.
sourcepub fn launch_status(&self) -> Option<&LaunchStatus>
pub fn launch_status(&self) -> Option<&LaunchStatus>
The launch status of a participating server.
sourcepub fn launch_actions_status(&self) -> Option<&LaunchActionsStatus>
pub fn launch_actions_status(&self) -> Option<&LaunchActionsStatus>
The post-launch action runs of a participating server.
source§impl ParticipatingServer
impl ParticipatingServer
sourcepub fn builder() -> ParticipatingServerBuilder
pub fn builder() -> ParticipatingServerBuilder
Creates a new builder-style object to manufacture ParticipatingServer.
Trait Implementations§
source§impl Clone for ParticipatingServer
impl Clone for ParticipatingServer
source§fn clone(&self) -> ParticipatingServer
fn clone(&self) -> ParticipatingServer
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 ParticipatingServer
impl Debug for ParticipatingServer
source§impl PartialEq for ParticipatingServer
impl PartialEq for ParticipatingServer
source§fn eq(&self, other: &ParticipatingServer) -> bool
fn eq(&self, other: &ParticipatingServer) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ParticipatingServer
Auto Trait Implementations§
impl RefUnwindSafe for ParticipatingServer
impl Send for ParticipatingServer
impl Sync for ParticipatingServer
impl Unpin for ParticipatingServer
impl UnwindSafe for ParticipatingServer
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.