#[non_exhaustive]pub struct DescribeVpcConnectionOutput {
pub vpc_connection_arn: Option<String>,
pub target_cluster_arn: Option<String>,
pub state: Option<VpcConnectionState>,
pub authentication: Option<String>,
pub vpc_id: Option<String>,
pub subnets: Option<Vec<String>>,
pub security_groups: Option<Vec<String>>,
pub creation_time: Option<DateTime>,
pub tags: Option<HashMap<String, String>>,
/* 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.vpc_connection_arn: Option<String>
The Amazon Resource Name (ARN) that uniquely identifies a MSK VPC connection.
target_cluster_arn: Option<String>
The Amazon Resource Name (ARN) that uniquely identifies an MSK cluster.
state: Option<VpcConnectionState>
The state of VPC connection.
authentication: Option<String>
The authentication type of VPC connection.
vpc_id: Option<String>
The VPC Id for the VPC connection.
subnets: Option<Vec<String>>
The list of subnets for the VPC connection.
security_groups: Option<Vec<String>>
The list of security groups for the VPC connection.
creation_time: Option<DateTime>
The creation time of the VPC connection.
A map of tags for the VPC connection.
Implementations§
source§impl DescribeVpcConnectionOutput
impl DescribeVpcConnectionOutput
sourcepub fn vpc_connection_arn(&self) -> Option<&str>
pub fn vpc_connection_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) that uniquely identifies a MSK VPC connection.
sourcepub fn target_cluster_arn(&self) -> Option<&str>
pub fn target_cluster_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) that uniquely identifies an MSK cluster.
sourcepub fn state(&self) -> Option<&VpcConnectionState>
pub fn state(&self) -> Option<&VpcConnectionState>
The state of VPC connection.
sourcepub fn authentication(&self) -> Option<&str>
pub fn authentication(&self) -> Option<&str>
The authentication type of VPC connection.
sourcepub fn subnets(&self) -> &[String]
pub fn subnets(&self) -> &[String]
The list of subnets for the VPC connection.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .subnets.is_none()
.
sourcepub fn security_groups(&self) -> &[String]
pub fn security_groups(&self) -> &[String]
The list of security groups for the VPC connection.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .security_groups.is_none()
.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The creation time of the VPC connection.
A map of tags for the VPC connection.
source§impl DescribeVpcConnectionOutput
impl DescribeVpcConnectionOutput
sourcepub fn builder() -> DescribeVpcConnectionOutputBuilder
pub fn builder() -> DescribeVpcConnectionOutputBuilder
Creates a new builder-style object to manufacture DescribeVpcConnectionOutput
.
Trait Implementations§
source§impl Clone for DescribeVpcConnectionOutput
impl Clone for DescribeVpcConnectionOutput
source§fn clone(&self) -> DescribeVpcConnectionOutput
fn clone(&self) -> DescribeVpcConnectionOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeVpcConnectionOutput
impl Debug for DescribeVpcConnectionOutput
source§impl PartialEq for DescribeVpcConnectionOutput
impl PartialEq for DescribeVpcConnectionOutput
source§fn eq(&self, other: &DescribeVpcConnectionOutput) -> bool
fn eq(&self, other: &DescribeVpcConnectionOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeVpcConnectionOutput
impl RequestId for DescribeVpcConnectionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for DescribeVpcConnectionOutput
Auto Trait Implementations§
impl Freeze for DescribeVpcConnectionOutput
impl RefUnwindSafe for DescribeVpcConnectionOutput
impl Send for DescribeVpcConnectionOutput
impl Sync for DescribeVpcConnectionOutput
impl Unpin for DescribeVpcConnectionOutput
impl UnwindSafe for DescribeVpcConnectionOutput
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
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>
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>
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 more