#[non_exhaustive]pub struct UpdateEndpointOutput {
pub name: Option<String>,
pub arn: Option<String>,
pub routing_config: Option<RoutingConfig>,
pub replication_config: Option<ReplicationConfig>,
pub event_buses: Option<Vec<EndpointEventBus>>,
pub role_arn: Option<String>,
pub endpoint_id: Option<String>,
pub endpoint_url: Option<String>,
pub state: Option<EndpointState>,
/* private fields */
}
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.name: Option<String>
The name of the endpoint you updated in this request.
arn: Option<String>
The ARN of the endpoint you updated in this request.
routing_config: Option<RoutingConfig>
The routing configuration you updated in this request.
replication_config: Option<ReplicationConfig>
Whether event replication was enabled or disabled for the endpoint you updated in this request.
event_buses: Option<Vec<EndpointEventBus>>
The event buses used for replication for the endpoint you updated in this request.
role_arn: Option<String>
The ARN of the role used by event replication for the endpoint you updated in this request.
endpoint_id: Option<String>
The ID of the endpoint you updated in this request.
endpoint_url: Option<String>
The URL of the endpoint you updated in this request.
state: Option<EndpointState>
The state of the endpoint you updated in this request.
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) -> &[EndpointEventBus]
pub fn event_buses(&self) -> &[EndpointEventBus]
The event buses used for replication for the endpoint you updated in this request.
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()
.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateEndpointOutput
impl Debug for UpdateEndpointOutput
source§impl PartialEq for UpdateEndpointOutput
impl PartialEq for UpdateEndpointOutput
source§fn eq(&self, other: &UpdateEndpointOutput) -> bool
fn eq(&self, other: &UpdateEndpointOutput) -> bool
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>
None
if the service could not be reached.