#[non_exhaustive]pub struct UpdateEndpointOutput { /* private fields */ }
Implementations§
source§impl UpdateEndpointOutput
impl UpdateEndpointOutput
sourcepub fn routing_config(&self) -> Option<&RoutingConfig>
pub fn routing_config(&self) -> Option<&RoutingConfig>
The routing configuration you updated in this request.
sourcepub fn replication_config(&self) -> Option<&ReplicationConfig>
pub fn replication_config(&self) -> Option<&ReplicationConfig>
Whether event replication was enabled or disabled for the endpoint you updated in this request.
sourcepub fn event_buses(&self) -> Option<&[EndpointEventBus]>
pub fn event_buses(&self) -> Option<&[EndpointEventBus]>
The event buses used for replication for the endpoint you updated in this request.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The ARN of the role used by event replication for the endpoint you updated in this request.
sourcepub fn endpoint_id(&self) -> Option<&str>
pub fn endpoint_id(&self) -> Option<&str>
The ID of the endpoint you updated in this request.
sourcepub fn endpoint_url(&self) -> Option<&str>
pub fn endpoint_url(&self) -> Option<&str>
The URL of the endpoint you updated in this request.
sourcepub fn state(&self) -> Option<&EndpointState>
pub fn state(&self) -> Option<&EndpointState>
The state of the endpoint you updated in this request.
source§impl UpdateEndpointOutput
impl UpdateEndpointOutput
sourcepub fn builder() -> UpdateEndpointOutputBuilder
pub fn builder() -> UpdateEndpointOutputBuilder
Creates a new builder-style object to manufacture UpdateEndpointOutput
.
Trait Implementations§
source§impl Clone for UpdateEndpointOutput
impl Clone for UpdateEndpointOutput
source§fn clone(&self) -> UpdateEndpointOutput
fn clone(&self) -> UpdateEndpointOutput
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 UpdateEndpointOutput
impl Debug for UpdateEndpointOutput
source§impl PartialEq<UpdateEndpointOutput> for UpdateEndpointOutput
impl PartialEq<UpdateEndpointOutput> for UpdateEndpointOutput
source§fn eq(&self, other: &UpdateEndpointOutput) -> bool
fn eq(&self, other: &UpdateEndpointOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for UpdateEndpointOutput
impl RequestId for UpdateEndpointOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for UpdateEndpointOutput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateEndpointOutput
impl Send for UpdateEndpointOutput
impl Sync for UpdateEndpointOutput
impl Unpin for UpdateEndpointOutput
impl UnwindSafe for UpdateEndpointOutput
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