Struct aws_sdk_globalaccelerator::operation::remove_custom_routing_endpoints::RemoveCustomRoutingEndpointsInput
source · #[non_exhaustive]pub struct RemoveCustomRoutingEndpointsInput {
pub endpoint_ids: Option<Vec<String>>,
pub endpoint_group_arn: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.endpoint_ids: Option<Vec<String>>
The IDs for the endpoints. For custom routing accelerators, endpoint IDs are the virtual private cloud (VPC) subnet IDs.
endpoint_group_arn: Option<String>
The Amazon Resource Name (ARN) of the endpoint group to remove endpoints from.
Implementations§
source§impl RemoveCustomRoutingEndpointsInput
impl RemoveCustomRoutingEndpointsInput
sourcepub fn endpoint_ids(&self) -> &[String]
pub fn endpoint_ids(&self) -> &[String]
The IDs for the endpoints. For custom routing accelerators, endpoint IDs are the virtual private cloud (VPC) subnet IDs.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .endpoint_ids.is_none()
.
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 to remove endpoints from.
source§impl RemoveCustomRoutingEndpointsInput
impl RemoveCustomRoutingEndpointsInput
sourcepub fn builder() -> RemoveCustomRoutingEndpointsInputBuilder
pub fn builder() -> RemoveCustomRoutingEndpointsInputBuilder
Creates a new builder-style object to manufacture RemoveCustomRoutingEndpointsInput
.
Trait Implementations§
source§impl Clone for RemoveCustomRoutingEndpointsInput
impl Clone for RemoveCustomRoutingEndpointsInput
source§fn clone(&self) -> RemoveCustomRoutingEndpointsInput
fn clone(&self) -> RemoveCustomRoutingEndpointsInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq for RemoveCustomRoutingEndpointsInput
impl PartialEq for RemoveCustomRoutingEndpointsInput
source§fn eq(&self, other: &RemoveCustomRoutingEndpointsInput) -> bool
fn eq(&self, other: &RemoveCustomRoutingEndpointsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RemoveCustomRoutingEndpointsInput
Auto Trait Implementations§
impl RefUnwindSafe for RemoveCustomRoutingEndpointsInput
impl Send for RemoveCustomRoutingEndpointsInput
impl Sync for RemoveCustomRoutingEndpointsInput
impl Unpin for RemoveCustomRoutingEndpointsInput
impl UnwindSafe for RemoveCustomRoutingEndpointsInput
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> 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>
Creates a shared type from an unshared type.