Struct aws_sdk_finspace::types::builders::VpcConfigurationBuilder
source · #[non_exhaustive]pub struct VpcConfigurationBuilder { /* private fields */ }Expand description
A builder for VpcConfiguration.
Implementations§
source§impl VpcConfigurationBuilder
impl VpcConfigurationBuilder
sourcepub fn set_vpc_id(self, input: Option<String>) -> Self
pub fn set_vpc_id(self, input: Option<String>) -> Self
The identifier of the VPC endpoint.
sourcepub fn get_vpc_id(&self) -> &Option<String>
pub fn get_vpc_id(&self) -> &Option<String>
The identifier of the VPC endpoint.
sourcepub fn security_group_ids(self, input: impl Into<String>) -> Self
pub fn security_group_ids(self, input: impl Into<String>) -> Self
Appends an item to security_group_ids.
To override the contents of this collection use set_security_group_ids.
The unique identifier of the VPC security group applied to the VPC endpoint ENI for the cluster.
sourcepub fn set_security_group_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_security_group_ids(self, input: Option<Vec<String>>) -> Self
The unique identifier of the VPC security group applied to the VPC endpoint ENI for the cluster.
sourcepub fn get_security_group_ids(&self) -> &Option<Vec<String>>
pub fn get_security_group_ids(&self) -> &Option<Vec<String>>
The unique identifier of the VPC security group applied to the VPC endpoint ENI for the cluster.
sourcepub fn subnet_ids(self, input: impl Into<String>) -> Self
pub fn subnet_ids(self, input: impl Into<String>) -> Self
Appends an item to subnet_ids.
To override the contents of this collection use set_subnet_ids.
The identifier of the subnet that the Privatelink VPC endpoint uses to connect to the cluster.
sourcepub fn set_subnet_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_subnet_ids(self, input: Option<Vec<String>>) -> Self
The identifier of the subnet that the Privatelink VPC endpoint uses to connect to the cluster.
sourcepub fn get_subnet_ids(&self) -> &Option<Vec<String>>
pub fn get_subnet_ids(&self) -> &Option<Vec<String>>
The identifier of the subnet that the Privatelink VPC endpoint uses to connect to the cluster.
sourcepub fn ip_address_type(self, input: IpAddressType) -> Self
pub fn ip_address_type(self, input: IpAddressType) -> Self
The IP address type for cluster network configuration parameters. The following type is available:
-
IP_V4 – IP address version 4
sourcepub fn set_ip_address_type(self, input: Option<IpAddressType>) -> Self
pub fn set_ip_address_type(self, input: Option<IpAddressType>) -> Self
The IP address type for cluster network configuration parameters. The following type is available:
-
IP_V4 – IP address version 4
sourcepub fn get_ip_address_type(&self) -> &Option<IpAddressType>
pub fn get_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
sourcepub fn build(self) -> VpcConfiguration
pub fn build(self) -> VpcConfiguration
Consumes the builder and constructs a VpcConfiguration.
Trait Implementations§
source§impl Clone for VpcConfigurationBuilder
impl Clone for VpcConfigurationBuilder
source§fn clone(&self) -> VpcConfigurationBuilder
fn clone(&self) -> VpcConfigurationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for VpcConfigurationBuilder
impl Debug for VpcConfigurationBuilder
source§impl Default for VpcConfigurationBuilder
impl Default for VpcConfigurationBuilder
source§fn default() -> VpcConfigurationBuilder
fn default() -> VpcConfigurationBuilder
source§impl PartialEq for VpcConfigurationBuilder
impl PartialEq for VpcConfigurationBuilder
source§fn eq(&self, other: &VpcConfigurationBuilder) -> bool
fn eq(&self, other: &VpcConfigurationBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for VpcConfigurationBuilder
Auto Trait Implementations§
impl Freeze for VpcConfigurationBuilder
impl RefUnwindSafe for VpcConfigurationBuilder
impl Send for VpcConfigurationBuilder
impl Sync for VpcConfigurationBuilder
impl Unpin for VpcConfigurationBuilder
impl UnwindSafe for VpcConfigurationBuilder
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