Struct aws_sdk_kafka::types::ClientVpcConnection
source · #[non_exhaustive]pub struct ClientVpcConnection {
pub authentication: Option<String>,
pub creation_time: Option<DateTime>,
pub state: Option<VpcConnectionState>,
pub vpc_connection_arn: Option<String>,
pub owner: Option<String>,
}
Expand description
The client VPC connection object.
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.authentication: Option<String>
Information about the auth scheme of Vpc Connection.
creation_time: Option<DateTime>
Creation time of the Vpc Connection.
state: Option<VpcConnectionState>
State of the Vpc Connection.
vpc_connection_arn: Option<String>
The ARN that identifies the Vpc Connection.
owner: Option<String>
The Owner of the Vpc Connection.
Implementations§
source§impl ClientVpcConnection
impl ClientVpcConnection
sourcepub fn authentication(&self) -> Option<&str>
pub fn authentication(&self) -> Option<&str>
Information about the auth scheme of Vpc Connection.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
Creation time of the Vpc Connection.
sourcepub fn state(&self) -> Option<&VpcConnectionState>
pub fn state(&self) -> Option<&VpcConnectionState>
State of the Vpc Connection.
sourcepub fn vpc_connection_arn(&self) -> Option<&str>
pub fn vpc_connection_arn(&self) -> Option<&str>
The ARN that identifies the Vpc Connection.
source§impl ClientVpcConnection
impl ClientVpcConnection
sourcepub fn builder() -> ClientVpcConnectionBuilder
pub fn builder() -> ClientVpcConnectionBuilder
Creates a new builder-style object to manufacture ClientVpcConnection
.
Trait Implementations§
source§impl Clone for ClientVpcConnection
impl Clone for ClientVpcConnection
source§fn clone(&self) -> ClientVpcConnection
fn clone(&self) -> ClientVpcConnection
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 ClientVpcConnection
impl Debug for ClientVpcConnection
source§impl PartialEq for ClientVpcConnection
impl PartialEq for ClientVpcConnection
source§fn eq(&self, other: &ClientVpcConnection) -> bool
fn eq(&self, other: &ClientVpcConnection) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ClientVpcConnection
Auto Trait Implementations§
impl Freeze for ClientVpcConnection
impl RefUnwindSafe for ClientVpcConnection
impl Send for ClientVpcConnection
impl Sync for ClientVpcConnection
impl Unpin for ClientVpcConnection
impl UnwindSafe for ClientVpcConnection
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.