#[non_exhaustive]pub struct CreateVpcConnectionInput {
pub target_cluster_arn: Option<String>,
pub authentication: Option<String>,
pub vpc_id: Option<String>,
pub client_subnets: Option<Vec<String>>,
pub security_groups: Option<Vec<String>>,
pub tags: Option<HashMap<String, String>>,
}
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.target_cluster_arn: Option<String>
The cluster Amazon Resource Name (ARN) for the VPC connection.
authentication: Option<String>
The authentication type of VPC connection.
vpc_id: Option<String>
The VPC ID of VPC connection.
client_subnets: Option<Vec<String>>
The list of client subnets.
security_groups: Option<Vec<String>>
The list of security groups.
A map of tags for the VPC connection.
Implementations§
source§impl CreateVpcConnectionInput
impl CreateVpcConnectionInput
sourcepub fn target_cluster_arn(&self) -> Option<&str>
pub fn target_cluster_arn(&self) -> Option<&str>
The cluster Amazon Resource Name (ARN) for the VPC connection.
sourcepub fn authentication(&self) -> Option<&str>
pub fn authentication(&self) -> Option<&str>
The authentication type of VPC connection.
sourcepub fn client_subnets(&self) -> &[String]
pub fn client_subnets(&self) -> &[String]
The list of client subnets.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .client_subnets.is_none()
.
sourcepub fn security_groups(&self) -> &[String]
pub fn security_groups(&self) -> &[String]
The list of security groups.
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()
.
A map of tags for the VPC connection.
source§impl CreateVpcConnectionInput
impl CreateVpcConnectionInput
sourcepub fn builder() -> CreateVpcConnectionInputBuilder
pub fn builder() -> CreateVpcConnectionInputBuilder
Creates a new builder-style object to manufacture CreateVpcConnectionInput
.
Trait Implementations§
source§impl Clone for CreateVpcConnectionInput
impl Clone for CreateVpcConnectionInput
source§fn clone(&self) -> CreateVpcConnectionInput
fn clone(&self) -> CreateVpcConnectionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateVpcConnectionInput
impl Debug for CreateVpcConnectionInput
source§impl PartialEq for CreateVpcConnectionInput
impl PartialEq for CreateVpcConnectionInput
source§fn eq(&self, other: &CreateVpcConnectionInput) -> bool
fn eq(&self, other: &CreateVpcConnectionInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateVpcConnectionInput
Auto Trait Implementations§
impl Freeze for CreateVpcConnectionInput
impl RefUnwindSafe for CreateVpcConnectionInput
impl Send for CreateVpcConnectionInput
impl Sync for CreateVpcConnectionInput
impl Unpin for CreateVpcConnectionInput
impl UnwindSafe for CreateVpcConnectionInput
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