pub struct VerifiedAccessEndpointLoadBalancerOptions {
pub load_balancer_arn: Option<String>,
pub port: Option<i32>,
pub port_ranges: Vec<VerifiedAccessEndpointPortRange>,
pub protocol: Option<String>,
pub subnet_ids: Vec<String>,
}Fields§
§load_balancer_arn: Option<String>§port: Option<i32>§port_ranges: Vec<VerifiedAccessEndpointPortRange>§protocol: Option<String>§subnet_ids: Vec<String>Trait Implementations§
Source§impl Clone for VerifiedAccessEndpointLoadBalancerOptions
impl Clone for VerifiedAccessEndpointLoadBalancerOptions
Source§fn clone(&self) -> VerifiedAccessEndpointLoadBalancerOptions
fn clone(&self) -> VerifiedAccessEndpointLoadBalancerOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 VerifiedAccessEndpointLoadBalancerOptions
impl Default for VerifiedAccessEndpointLoadBalancerOptions
Source§fn default() -> VerifiedAccessEndpointLoadBalancerOptions
fn default() -> VerifiedAccessEndpointLoadBalancerOptions
Returns the “default value” for a type. Read more
Source§impl From<&VerifiedAccessEndpointLoadBalancerOptions> for VerifiedAccessEndpointLoadBalancerOptionsView
impl From<&VerifiedAccessEndpointLoadBalancerOptions> for VerifiedAccessEndpointLoadBalancerOptionsView
Source§fn from(o: &VerifiedAccessEndpointLoadBalancerOptions) -> Self
fn from(o: &VerifiedAccessEndpointLoadBalancerOptions) -> Self
Converts to this type from the input type.
Source§impl From<VerifiedAccessEndpointLoadBalancerOptionsView> for VerifiedAccessEndpointLoadBalancerOptions
impl From<VerifiedAccessEndpointLoadBalancerOptionsView> for VerifiedAccessEndpointLoadBalancerOptions
Source§fn from(v: VerifiedAccessEndpointLoadBalancerOptionsView) -> Self
fn from(v: VerifiedAccessEndpointLoadBalancerOptionsView) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VerifiedAccessEndpointLoadBalancerOptions
impl RefUnwindSafe for VerifiedAccessEndpointLoadBalancerOptions
impl Send for VerifiedAccessEndpointLoadBalancerOptions
impl Sync for VerifiedAccessEndpointLoadBalancerOptions
impl Unpin for VerifiedAccessEndpointLoadBalancerOptions
impl UnsafeUnpin for VerifiedAccessEndpointLoadBalancerOptions
impl UnwindSafe for VerifiedAccessEndpointLoadBalancerOptions
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.