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 ==
.