#[non_exhaustive]pub struct UpdateEndpointInput {
pub name: Option<String>,
pub description: Option<String>,
pub routing_config: Option<RoutingConfig>,
pub replication_config: Option<ReplicationConfig>,
pub event_buses: Option<Vec<EndpointEventBus>>,
pub role_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.name: Option<String>The name of the endpoint you want to update.
description: Option<String>A description for the endpoint.
routing_config: Option<RoutingConfig>Configure the routing policy, including the health check and secondary Region.
replication_config: Option<ReplicationConfig>Whether event replication was enabled or disabled by this request.
event_buses: Option<Vec<EndpointEventBus>>Define event buses used for replication.
role_arn: Option<String>The ARN of the role used by event replication for this request.
Implementations§
source§impl UpdateEndpointInput
impl UpdateEndpointInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description for the endpoint.
sourcepub fn routing_config(&self) -> Option<&RoutingConfig>
pub fn routing_config(&self) -> Option<&RoutingConfig>
Configure the routing policy, including the health check and secondary Region.
sourcepub fn replication_config(&self) -> Option<&ReplicationConfig>
pub fn replication_config(&self) -> Option<&ReplicationConfig>
Whether event replication was enabled or disabled by this request.
sourcepub fn event_buses(&self) -> &[EndpointEventBus]
pub fn event_buses(&self) -> &[EndpointEventBus]
Define event buses used for replication.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .event_buses.is_none().
source§impl UpdateEndpointInput
impl UpdateEndpointInput
sourcepub fn builder() -> UpdateEndpointInputBuilder
pub fn builder() -> UpdateEndpointInputBuilder
Creates a new builder-style object to manufacture UpdateEndpointInput.
Trait Implementations§
source§impl Clone for UpdateEndpointInput
impl Clone for UpdateEndpointInput
source§fn clone(&self) -> UpdateEndpointInput
fn clone(&self) -> UpdateEndpointInput
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 Debug for UpdateEndpointInput
impl Debug for UpdateEndpointInput
source§impl PartialEq for UpdateEndpointInput
impl PartialEq for UpdateEndpointInput
source§fn eq(&self, other: &UpdateEndpointInput) -> bool
fn eq(&self, other: &UpdateEndpointInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateEndpointInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateEndpointInput
impl Send for UpdateEndpointInput
impl Sync for UpdateEndpointInput
impl Unpin for UpdateEndpointInput
impl UnwindSafe for UpdateEndpointInput
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.