#[non_exhaustive]pub struct VerifiedAccessEndpointLoadBalancerOptionsBuilder { /* private fields */ }
Expand description
A builder for VerifiedAccessEndpointLoadBalancerOptions
.
Implementations§
source§impl VerifiedAccessEndpointLoadBalancerOptionsBuilder
impl VerifiedAccessEndpointLoadBalancerOptionsBuilder
sourcepub fn protocol(self, input: VerifiedAccessEndpointProtocol) -> Self
pub fn protocol(self, input: VerifiedAccessEndpointProtocol) -> Self
The IP protocol.
sourcepub fn set_protocol(self, input: Option<VerifiedAccessEndpointProtocol>) -> Self
pub fn set_protocol(self, input: Option<VerifiedAccessEndpointProtocol>) -> Self
The IP protocol.
sourcepub fn get_protocol(&self) -> &Option<VerifiedAccessEndpointProtocol>
pub fn get_protocol(&self) -> &Option<VerifiedAccessEndpointProtocol>
The IP protocol.
sourcepub fn load_balancer_arn(self, input: impl Into<String>) -> Self
pub fn load_balancer_arn(self, input: impl Into<String>) -> Self
The ARN of the load balancer.
sourcepub fn set_load_balancer_arn(self, input: Option<String>) -> Self
pub fn set_load_balancer_arn(self, input: Option<String>) -> Self
The ARN of the load balancer.
sourcepub fn get_load_balancer_arn(&self) -> &Option<String>
pub fn get_load_balancer_arn(&self) -> &Option<String>
The ARN of the load balancer.
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 IDs of the subnets.
sourcepub fn set_subnet_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_subnet_ids(self, input: Option<Vec<String>>) -> Self
The IDs of the subnets.
sourcepub fn get_subnet_ids(&self) -> &Option<Vec<String>>
pub fn get_subnet_ids(&self) -> &Option<Vec<String>>
The IDs of the subnets.
sourcepub fn build(self) -> VerifiedAccessEndpointLoadBalancerOptions
pub fn build(self) -> VerifiedAccessEndpointLoadBalancerOptions
Consumes the builder and constructs a VerifiedAccessEndpointLoadBalancerOptions
.
Trait Implementations§
source§impl Clone for VerifiedAccessEndpointLoadBalancerOptionsBuilder
impl Clone for VerifiedAccessEndpointLoadBalancerOptionsBuilder
source§fn clone(&self) -> VerifiedAccessEndpointLoadBalancerOptionsBuilder
fn clone(&self) -> VerifiedAccessEndpointLoadBalancerOptionsBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for VerifiedAccessEndpointLoadBalancerOptionsBuilder
impl Default for VerifiedAccessEndpointLoadBalancerOptionsBuilder
source§fn default() -> VerifiedAccessEndpointLoadBalancerOptionsBuilder
fn default() -> VerifiedAccessEndpointLoadBalancerOptionsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for VerifiedAccessEndpointLoadBalancerOptionsBuilder
impl PartialEq for VerifiedAccessEndpointLoadBalancerOptionsBuilder
source§fn eq(&self, other: &VerifiedAccessEndpointLoadBalancerOptionsBuilder) -> bool
fn eq(&self, other: &VerifiedAccessEndpointLoadBalancerOptionsBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VerifiedAccessEndpointLoadBalancerOptionsBuilder
Auto Trait Implementations§
impl Freeze for VerifiedAccessEndpointLoadBalancerOptionsBuilder
impl RefUnwindSafe for VerifiedAccessEndpointLoadBalancerOptionsBuilder
impl Send for VerifiedAccessEndpointLoadBalancerOptionsBuilder
impl Sync for VerifiedAccessEndpointLoadBalancerOptionsBuilder
impl Unpin for VerifiedAccessEndpointLoadBalancerOptionsBuilder
impl UnwindSafe for VerifiedAccessEndpointLoadBalancerOptionsBuilder
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.