#[non_exhaustive]pub struct CreateEndpointOutput {
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 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 that was created by this request.
arn: Option<String>
The ARN of the endpoint that was created by this request.
routing_config: Option<RoutingConfig>
The routing configuration defined by this request.
replication_config: Option<ReplicationConfig>
Whether event replication was enabled or disabled by this request.
event_buses: Option<Vec<EndpointEventBus>>
The event buses used by this request.
role_arn: Option<String>
The ARN of the role used by event replication for this request.
state: Option<EndpointState>
The state of the endpoint that was created by this request.
Implementations§
source§impl CreateEndpointOutput
impl CreateEndpointOutput
sourcepub fn routing_config(&self) -> Option<&RoutingConfig>
pub fn routing_config(&self) -> Option<&RoutingConfig>
The routing configuration defined by this request.
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]
The event buses used by 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 this request.
sourcepub fn state(&self) -> Option<&EndpointState>
pub fn state(&self) -> Option<&EndpointState>
The state of the endpoint that was created by this request.
source§impl CreateEndpointOutput
impl CreateEndpointOutput
sourcepub fn builder() -> CreateEndpointOutputBuilder
pub fn builder() -> CreateEndpointOutputBuilder
Creates a new builder-style object to manufacture CreateEndpointOutput
.
Trait Implementations§
source§impl Clone for CreateEndpointOutput
impl Clone for CreateEndpointOutput
source§fn clone(&self) -> CreateEndpointOutput
fn clone(&self) -> CreateEndpointOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateEndpointOutput
impl Debug for CreateEndpointOutput
source§impl PartialEq for CreateEndpointOutput
impl PartialEq for CreateEndpointOutput
source§fn eq(&self, other: &CreateEndpointOutput) -> bool
fn eq(&self, other: &CreateEndpointOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateEndpointOutput
impl RequestId for CreateEndpointOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.