Struct aws_sdk_finspace::types::VpcConfiguration
source · #[non_exhaustive]pub struct VpcConfiguration {
pub vpc_id: Option<String>,
pub security_group_ids: Option<Vec<String>>,
pub subnet_ids: Option<Vec<String>>,
pub ip_address_type: Option<IpAddressType>,
}Expand description
Configuration details about the network where the Privatelink endpoint of the cluster resides.
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_id: Option<String>The identifier of the VPC endpoint.
security_group_ids: Option<Vec<String>>The unique identifier of the VPC security group applied to the VPC endpoint ENI for the cluster.
subnet_ids: Option<Vec<String>>The identifier of the subnet that the Privatelink VPC endpoint uses to connect to the cluster.
ip_address_type: Option<IpAddressType>The IP address type for cluster network configuration parameters. The following type is available:
-
IP_V4 – IP address version 4
Implementations§
source§impl VpcConfiguration
impl VpcConfiguration
sourcepub fn security_group_ids(&self) -> &[String]
pub fn security_group_ids(&self) -> &[String]
The unique identifier of the VPC security group applied to the VPC endpoint ENI for the cluster.
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_group_ids.is_none().
sourcepub fn subnet_ids(&self) -> &[String]
pub fn subnet_ids(&self) -> &[String]
The identifier of the subnet that the Privatelink VPC endpoint uses to connect to the cluster.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .subnet_ids.is_none().
sourcepub fn ip_address_type(&self) -> Option<&IpAddressType>
pub fn ip_address_type(&self) -> Option<&IpAddressType>
The IP address type for cluster network configuration parameters. The following type is available:
-
IP_V4 – IP address version 4
source§impl VpcConfiguration
impl VpcConfiguration
sourcepub fn builder() -> VpcConfigurationBuilder
pub fn builder() -> VpcConfigurationBuilder
Creates a new builder-style object to manufacture VpcConfiguration.
Trait Implementations§
source§impl Clone for VpcConfiguration
impl Clone for VpcConfiguration
source§fn clone(&self) -> VpcConfiguration
fn clone(&self) -> VpcConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for VpcConfiguration
impl Debug for VpcConfiguration
source§impl PartialEq for VpcConfiguration
impl PartialEq for VpcConfiguration
source§fn eq(&self, other: &VpcConfiguration) -> bool
fn eq(&self, other: &VpcConfiguration) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for VpcConfiguration
Auto Trait Implementations§
impl Freeze for VpcConfiguration
impl RefUnwindSafe for VpcConfiguration
impl Send for VpcConfiguration
impl Sync for VpcConfiguration
impl Unpin for VpcConfiguration
impl UnwindSafe for VpcConfiguration
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