#[non_exhaustive]pub struct DescribeConnectionOutput { /* private fields */ }
Implementations§
source§impl DescribeConnectionOutput
impl DescribeConnectionOutput
sourcepub fn connection_arn(&self) -> Option<&str>
pub fn connection_arn(&self) -> Option<&str>
The ARN of the connection retrieved.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description for the connection retrieved.
sourcepub fn connection_state(&self) -> Option<&ConnectionState>
pub fn connection_state(&self) -> Option<&ConnectionState>
The state of the connection retrieved.
sourcepub fn state_reason(&self) -> Option<&str>
pub fn state_reason(&self) -> Option<&str>
The reason that the connection is in the current connection state.
The type of authorization specified for the connection.
sourcepub fn secret_arn(&self) -> Option<&str>
pub fn secret_arn(&self) -> Option<&str>
The ARN of the secret created from the authorization parameters specified for the connection.
sourcepub fn auth_parameters(&self) -> Option<&ConnectionAuthResponseParameters>
pub fn auth_parameters(&self) -> Option<&ConnectionAuthResponseParameters>
The parameters to use for authorization for the connection.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
A time stamp for the time that the connection was created.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
A time stamp for the time that the connection was last modified.
A time stamp for the time that the connection was last authorized.
source§impl DescribeConnectionOutput
impl DescribeConnectionOutput
sourcepub fn builder() -> DescribeConnectionOutputBuilder
pub fn builder() -> DescribeConnectionOutputBuilder
Creates a new builder-style object to manufacture DescribeConnectionOutput
.
Trait Implementations§
source§impl Clone for DescribeConnectionOutput
impl Clone for DescribeConnectionOutput
source§fn clone(&self) -> DescribeConnectionOutput
fn clone(&self) -> DescribeConnectionOutput
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 DescribeConnectionOutput
impl Debug for DescribeConnectionOutput
source§impl PartialEq<DescribeConnectionOutput> for DescribeConnectionOutput
impl PartialEq<DescribeConnectionOutput> for DescribeConnectionOutput
source§fn eq(&self, other: &DescribeConnectionOutput) -> bool
fn eq(&self, other: &DescribeConnectionOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeConnectionOutput
impl RequestId for DescribeConnectionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DescribeConnectionOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeConnectionOutput
impl Send for DescribeConnectionOutput
impl Sync for DescribeConnectionOutput
impl Unpin for DescribeConnectionOutput
impl UnwindSafe for DescribeConnectionOutput
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