Struct aws_sdk_kafka::types::VpcConnection
source · #[non_exhaustive]pub struct VpcConnection { /* private fields */ }
Expand description
The VPC connection object.
Implementations§
source§impl VpcConnection
impl VpcConnection
sourcepub fn vpc_connection_arn(&self) -> Option<&str>
pub fn vpc_connection_arn(&self) -> Option<&str>
The ARN that identifies the Vpc Connection.
sourcepub fn target_cluster_arn(&self) -> Option<&str>
pub fn target_cluster_arn(&self) -> Option<&str>
The ARN that identifies the Cluster which the Vpc Connection belongs to.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
Creation time of the Vpc Connection.
sourcepub fn authentication(&self) -> Option<&str>
pub fn authentication(&self) -> Option<&str>
Information about the auth scheme of Vpc Connection.
sourcepub fn state(&self) -> Option<&VpcConnectionState>
pub fn state(&self) -> Option<&VpcConnectionState>
State of the Vpc Connection.
source§impl VpcConnection
impl VpcConnection
sourcepub fn builder() -> VpcConnectionBuilder
pub fn builder() -> VpcConnectionBuilder
Creates a new builder-style object to manufacture VpcConnection
.
Trait Implementations§
source§impl Clone for VpcConnection
impl Clone for VpcConnection
source§fn clone(&self) -> VpcConnection
fn clone(&self) -> VpcConnection
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 VpcConnection
impl Debug for VpcConnection
source§impl PartialEq<VpcConnection> for VpcConnection
impl PartialEq<VpcConnection> for VpcConnection
source§fn eq(&self, other: &VpcConnection) -> bool
fn eq(&self, other: &VpcConnection) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VpcConnection
Auto Trait Implementations§
impl RefUnwindSafe for VpcConnection
impl Send for VpcConnection
impl Sync for VpcConnection
impl Unpin for VpcConnection
impl UnwindSafe for VpcConnection
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