Struct aws_sdk_globalaccelerator::operation::create_custom_routing_endpoint_group::CreateCustomRoutingEndpointGroupInput
source · #[non_exhaustive]pub struct CreateCustomRoutingEndpointGroupInput {
pub listener_arn: Option<String>,
pub endpoint_group_region: Option<String>,
pub destination_configurations: Option<Vec<CustomRoutingDestinationConfiguration>>,
pub idempotency_token: Option<String>,
}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.listener_arn: Option<String>The Amazon Resource Name (ARN) of the listener for a custom routing endpoint.
endpoint_group_region: Option<String>The Amazon Web Services Region where the endpoint group is located. A listener can have only one endpoint group in a specific Region.
destination_configurations: Option<Vec<CustomRoutingDestinationConfiguration>>Sets the port range and protocol for all endpoints (virtual private cloud subnets) in a custom routing endpoint group to accept client traffic on.
idempotency_token: Option<String>A unique, case-sensitive identifier that you provide to ensure the idempotency—that is, the uniqueness—of the request.
Implementations§
source§impl CreateCustomRoutingEndpointGroupInput
impl CreateCustomRoutingEndpointGroupInput
sourcepub fn listener_arn(&self) -> Option<&str>
pub fn listener_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the listener for a custom routing endpoint.
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. A listener can have only one endpoint group in a specific Region.
sourcepub fn destination_configurations(
&self
) -> &[CustomRoutingDestinationConfiguration]
pub fn destination_configurations( &self ) -> &[CustomRoutingDestinationConfiguration]
Sets the port range and protocol for all endpoints (virtual private cloud subnets) in a custom routing endpoint group to accept client traffic on.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .destination_configurations.is_none().
sourcepub fn idempotency_token(&self) -> Option<&str>
pub fn idempotency_token(&self) -> Option<&str>
A unique, case-sensitive identifier that you provide to ensure the idempotency—that is, the uniqueness—of the request.
source§impl CreateCustomRoutingEndpointGroupInput
impl CreateCustomRoutingEndpointGroupInput
sourcepub fn builder() -> CreateCustomRoutingEndpointGroupInputBuilder
pub fn builder() -> CreateCustomRoutingEndpointGroupInputBuilder
Creates a new builder-style object to manufacture CreateCustomRoutingEndpointGroupInput.
Trait Implementations§
source§impl Clone for CreateCustomRoutingEndpointGroupInput
impl Clone for CreateCustomRoutingEndpointGroupInput
source§fn clone(&self) -> CreateCustomRoutingEndpointGroupInput
fn clone(&self) -> CreateCustomRoutingEndpointGroupInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for CreateCustomRoutingEndpointGroupInput
impl PartialEq for CreateCustomRoutingEndpointGroupInput
source§fn eq(&self, other: &CreateCustomRoutingEndpointGroupInput) -> bool
fn eq(&self, other: &CreateCustomRoutingEndpointGroupInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateCustomRoutingEndpointGroupInput
Auto Trait Implementations§
impl Freeze for CreateCustomRoutingEndpointGroupInput
impl RefUnwindSafe for CreateCustomRoutingEndpointGroupInput
impl Send for CreateCustomRoutingEndpointGroupInput
impl Sync for CreateCustomRoutingEndpointGroupInput
impl Unpin for CreateCustomRoutingEndpointGroupInput
impl UnwindSafe for CreateCustomRoutingEndpointGroupInput
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