#[non_exhaustive]pub struct DescribeEndpointOutput {Show 13 fields
pub name: Option<String>,
pub description: 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>,
pub state_reason: Option<String>,
pub creation_time: Option<DateTime>,
pub last_modified_time: Option<DateTime>,
/* 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 asked for information about.
description: Option<String>
The description of the endpoint you asked for information about.
arn: Option<String>
The ARN of the endpoint you asked for information about.
routing_config: Option<RoutingConfig>
The routing configuration of the endpoint you asked for information about.
replication_config: Option<ReplicationConfig>
Whether replication is enabled or disabled for the endpoint you asked for information about.
event_buses: Option<Vec<EndpointEventBus>>
The event buses being used by the endpoint you asked for information about.
role_arn: Option<String>
The ARN of the role used by the endpoint you asked for information about.
endpoint_id: Option<String>
The ID of the endpoint you asked for information about.
endpoint_url: Option<String>
The URL of the endpoint you asked for information about.
state: Option<EndpointState>
The current state of the endpoint you asked for information about.
state_reason: Option<String>
The reason the endpoint you asked for information about is in its current state.
creation_time: Option<DateTime>
The time the endpoint you asked for information about was created.
last_modified_time: Option<DateTime>
The last time the endpoint you asked for information about was modified.
Implementations§
source§impl DescribeEndpointOutput
impl DescribeEndpointOutput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the endpoint you asked for information about.
sourcepub fn routing_config(&self) -> Option<&RoutingConfig>
pub fn routing_config(&self) -> Option<&RoutingConfig>
The routing configuration of the endpoint you asked for information about.
sourcepub fn replication_config(&self) -> Option<&ReplicationConfig>
pub fn replication_config(&self) -> Option<&ReplicationConfig>
Whether replication is enabled or disabled for the endpoint you asked for information about.
sourcepub fn event_buses(&self) -> &[EndpointEventBus]
pub fn event_buses(&self) -> &[EndpointEventBus]
The event buses being used by the endpoint you asked for information about.
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 the endpoint you asked for information about.
sourcepub fn endpoint_id(&self) -> Option<&str>
pub fn endpoint_id(&self) -> Option<&str>
The ID of the endpoint you asked for information about.
sourcepub fn endpoint_url(&self) -> Option<&str>
pub fn endpoint_url(&self) -> Option<&str>
The URL of the endpoint you asked for information about.
sourcepub fn state(&self) -> Option<&EndpointState>
pub fn state(&self) -> Option<&EndpointState>
The current state of the endpoint you asked for information about.
sourcepub fn state_reason(&self) -> Option<&str>
pub fn state_reason(&self) -> Option<&str>
The reason the endpoint you asked for information about is in its current state.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time the endpoint you asked for information about was created.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The last time the endpoint you asked for information about was modified.
source§impl DescribeEndpointOutput
impl DescribeEndpointOutput
sourcepub fn builder() -> DescribeEndpointOutputBuilder
pub fn builder() -> DescribeEndpointOutputBuilder
Creates a new builder-style object to manufacture DescribeEndpointOutput
.
Trait Implementations§
source§impl Clone for DescribeEndpointOutput
impl Clone for DescribeEndpointOutput
source§fn clone(&self) -> DescribeEndpointOutput
fn clone(&self) -> DescribeEndpointOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeEndpointOutput
impl Debug for DescribeEndpointOutput
source§impl PartialEq for DescribeEndpointOutput
impl PartialEq for DescribeEndpointOutput
source§fn eq(&self, other: &DescribeEndpointOutput) -> bool
fn eq(&self, other: &DescribeEndpointOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeEndpointOutput
impl RequestId for DescribeEndpointOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.