#[non_exhaustive]pub struct GetConnectionOutputBuilder { /* private fields */ }
Expand description
A builder for GetConnectionOutput
.
Implementations§
source§impl GetConnectionOutputBuilder
impl GetConnectionOutputBuilder
sourcepub fn connection_id(self, input: impl Into<String>) -> Self
pub fn connection_id(self, input: impl Into<String>) -> Self
The ID of the connection.
sourcepub fn set_connection_id(self, input: Option<String>) -> Self
pub fn set_connection_id(self, input: Option<String>) -> Self
The ID of the connection.
sourcepub fn get_connection_id(&self) -> &Option<String>
pub fn get_connection_id(&self) -> &Option<String>
The ID of the connection.
sourcepub fn connection_details(self, input: ConnectionDetails) -> Self
pub fn connection_details(self, input: ConnectionDetails) -> Self
Information about the connection.
sourcepub fn set_connection_details(self, input: Option<ConnectionDetails>) -> Self
pub fn set_connection_details(self, input: Option<ConnectionDetails>) -> Self
Information about the connection.
sourcepub fn get_connection_details(&self) -> &Option<ConnectionDetails>
pub fn get_connection_details(&self) -> &Option<ConnectionDetails>
Information about the connection.
sourcepub fn build(self) -> GetConnectionOutput
pub fn build(self) -> GetConnectionOutput
Consumes the builder and constructs a GetConnectionOutput
.
Trait Implementations§
source§impl Clone for GetConnectionOutputBuilder
impl Clone for GetConnectionOutputBuilder
source§fn clone(&self) -> GetConnectionOutputBuilder
fn clone(&self) -> GetConnectionOutputBuilder
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 GetConnectionOutputBuilder
impl Debug for GetConnectionOutputBuilder
source§impl Default for GetConnectionOutputBuilder
impl Default for GetConnectionOutputBuilder
source§fn default() -> GetConnectionOutputBuilder
fn default() -> GetConnectionOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetConnectionOutputBuilder
impl PartialEq for GetConnectionOutputBuilder
source§fn eq(&self, other: &GetConnectionOutputBuilder) -> bool
fn eq(&self, other: &GetConnectionOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetConnectionOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for GetConnectionOutputBuilder
impl Send for GetConnectionOutputBuilder
impl Sync for GetConnectionOutputBuilder
impl Unpin for GetConnectionOutputBuilder
impl UnwindSafe for GetConnectionOutputBuilder
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.