#[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 ==
.