#[non_exhaustive]pub struct DescribeConnectionOutput {
pub connection_arn: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub connection_state: Option<ConnectionState>,
pub state_reason: Option<String>,
pub authorization_type: Option<ConnectionAuthorizationType>,
pub secret_arn: Option<String>,
pub auth_parameters: Option<ConnectionAuthResponseParameters>,
pub creation_time: Option<DateTime>,
pub last_modified_time: Option<DateTime>,
pub last_authorized_time: Option<DateTime>,
/* private fields */
}
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.connection_arn: Option<String>
The ARN of the connection retrieved.
name: Option<String>
The name of the connection retrieved.
description: Option<String>
The description for the connection retrieved.
connection_state: Option<ConnectionState>
The state of the connection retrieved.
state_reason: Option<String>
The reason that the connection is in the current connection state.
The type of authorization specified for the connection.
secret_arn: Option<String>
The ARN of the secret created from the authorization parameters specified for the connection.
auth_parameters: Option<ConnectionAuthResponseParameters>
The parameters to use for authorization for the connection.
creation_time: Option<DateTime>
A time stamp for the time that the connection was created.
last_modified_time: 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.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeConnectionOutput
impl Debug for DescribeConnectionOutput
source§impl PartialEq for DescribeConnectionOutput
impl PartialEq for DescribeConnectionOutput
source§fn eq(&self, other: &DescribeConnectionOutput) -> bool
fn eq(&self, other: &DescribeConnectionOutput) -> bool
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>
None
if the service could not be reached.