#[non_exhaustive]pub struct CustomRoutingEndpointGroup {
pub endpoint_group_arn: Option<String>,
pub endpoint_group_region: Option<String>,
pub destination_descriptions: Option<Vec<CustomRoutingDestinationDescription>>,
pub endpoint_descriptions: Option<Vec<CustomRoutingEndpointDescription>>,
}Expand description
A complex type for the endpoint group for a custom routing accelerator. An AWS Region can have only one endpoint group for a specific listener.
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.endpoint_group_arn: Option<String>The Amazon Resource Name (ARN) of the endpoint group.
endpoint_group_region: Option<String>The AWS Region where the endpoint group is located.
destination_descriptions: Option<Vec<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.
endpoint_descriptions: Option<Vec<CustomRoutingEndpointDescription>>For a custom routing accelerator, describes the endpoints (virtual private cloud subnets) in an endpoint group to accept client traffic on.
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 AWS 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 more
sourceimpl 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
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &CustomRoutingEndpointGroup) -> bool
fn ne(&self, other: &CustomRoutingEndpointGroup) -> bool
This method tests for !=.
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more