#[non_exhaustive]pub struct CustomRoutingEndpointGroup { /* private fields */ }Expand description
A complex type for the endpoint group for a custom routing accelerator. An Amazon Web Services Region can have only one endpoint group for a specific listener.
Implementations
sourceimpl CustomRoutingEndpointGroup
impl CustomRoutingEndpointGroup
sourcepub fn endpoint_group_arn(&self) -> Option<&str>
pub fn endpoint_group_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the endpoint group.
sourcepub fn endpoint_group_region(&self) -> Option<&str>
pub fn endpoint_group_region(&self) -> Option<&str>
The Amazon Web Services Region where the endpoint group is located.
sourcepub fn destination_descriptions(
&self
) -> Option<&[CustomRoutingDestinationDescription]>
pub fn destination_descriptions(
&self
) -> Option<&[CustomRoutingDestinationDescription]>
For a custom routing accelerator, describes the port range and protocol for all endpoints (virtual private cloud subnets) in an endpoint group to accept client traffic on.
sourcepub fn endpoint_descriptions(
&self
) -> Option<&[CustomRoutingEndpointDescription]>
pub fn endpoint_descriptions(
&self
) -> Option<&[CustomRoutingEndpointDescription]>
For a custom routing accelerator, describes the endpoints (virtual private cloud subnets) in an endpoint group to accept client traffic on.
sourceimpl CustomRoutingEndpointGroup
impl CustomRoutingEndpointGroup
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CustomRoutingEndpointGroup.
Trait Implementations
sourceimpl Clone for CustomRoutingEndpointGroup
impl Clone for CustomRoutingEndpointGroup
sourcefn clone(&self) -> CustomRoutingEndpointGroup
fn clone(&self) -> CustomRoutingEndpointGroup
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for CustomRoutingEndpointGroup
impl Debug for CustomRoutingEndpointGroup
sourceimpl PartialEq<CustomRoutingEndpointGroup> for CustomRoutingEndpointGroup
impl PartialEq<CustomRoutingEndpointGroup> for CustomRoutingEndpointGroup
sourcefn eq(&self, other: &CustomRoutingEndpointGroup) -> bool
fn eq(&self, other: &CustomRoutingEndpointGroup) -> bool
impl StructuralPartialEq for CustomRoutingEndpointGroup
Auto Trait Implementations
impl RefUnwindSafe for CustomRoutingEndpointGroup
impl Send for CustomRoutingEndpointGroup
impl Sync for CustomRoutingEndpointGroup
impl Unpin for CustomRoutingEndpointGroup
impl UnwindSafe for CustomRoutingEndpointGroup
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more