Struct aws_sdk_ssm::operation::get_connection_status::builders::GetConnectionStatusOutputBuilder
source · #[non_exhaustive]pub struct GetConnectionStatusOutputBuilder { /* private fields */ }
Expand description
A builder for GetConnectionStatusOutput
.
Implementations§
source§impl GetConnectionStatusOutputBuilder
impl GetConnectionStatusOutputBuilder
sourcepub fn target(self, input: impl Into<String>) -> Self
pub fn target(self, input: impl Into<String>) -> Self
The ID of the managed node to check connection status.
sourcepub fn set_target(self, input: Option<String>) -> Self
pub fn set_target(self, input: Option<String>) -> Self
The ID of the managed node to check connection status.
sourcepub fn get_target(&self) -> &Option<String>
pub fn get_target(&self) -> &Option<String>
The ID of the managed node to check connection status.
sourcepub fn status(self, input: ConnectionStatus) -> Self
pub fn status(self, input: ConnectionStatus) -> Self
The status of the connection to the managed node. For example, 'Connected' or 'Not Connected'.
sourcepub fn set_status(self, input: Option<ConnectionStatus>) -> Self
pub fn set_status(self, input: Option<ConnectionStatus>) -> Self
The status of the connection to the managed node. For example, 'Connected' or 'Not Connected'.
sourcepub fn get_status(&self) -> &Option<ConnectionStatus>
pub fn get_status(&self) -> &Option<ConnectionStatus>
The status of the connection to the managed node. For example, 'Connected' or 'Not Connected'.
sourcepub fn build(self) -> GetConnectionStatusOutput
pub fn build(self) -> GetConnectionStatusOutput
Consumes the builder and constructs a GetConnectionStatusOutput
.
Trait Implementations§
source§impl Clone for GetConnectionStatusOutputBuilder
impl Clone for GetConnectionStatusOutputBuilder
source§fn clone(&self) -> GetConnectionStatusOutputBuilder
fn clone(&self) -> GetConnectionStatusOutputBuilder
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 Default for GetConnectionStatusOutputBuilder
impl Default for GetConnectionStatusOutputBuilder
source§fn default() -> GetConnectionStatusOutputBuilder
fn default() -> GetConnectionStatusOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetConnectionStatusOutputBuilder
impl PartialEq for GetConnectionStatusOutputBuilder
source§fn eq(&self, other: &GetConnectionStatusOutputBuilder) -> bool
fn eq(&self, other: &GetConnectionStatusOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetConnectionStatusOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for GetConnectionStatusOutputBuilder
impl Send for GetConnectionStatusOutputBuilder
impl Sync for GetConnectionStatusOutputBuilder
impl Unpin for GetConnectionStatusOutputBuilder
impl UnwindSafe for GetConnectionStatusOutputBuilder
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