#[non_exhaustive]pub struct UpdateRouteOutput {
pub route_id: Option<String>,
pub arn: Option<String>,
pub service_id: Option<String>,
pub application_id: Option<String>,
pub state: Option<RouteState>,
pub last_updated_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.route_id: Option<String>
The unique identifier of the route.
arn: Option<String>
The Amazon Resource Name (ARN) of the route. The format for this ARN is arn:aws:refactor-spaces:region:account-id:resource-type/resource-id
. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.
service_id: Option<String>
The ID of service in which the route was created. Traffic that matches this route is forwarded to this service.
application_id: Option<String>
The ID of the application in which the route is being updated.
state: Option<RouteState>
The current state of the route.
last_updated_time: Option<DateTime>
A timestamp that indicates when the route was last updated.
Implementations§
source§impl UpdateRouteOutput
impl UpdateRouteOutput
sourcepub fn arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the route. The format for this ARN is arn:aws:refactor-spaces:region:account-id:resource-type/resource-id
. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.
sourcepub fn service_id(&self) -> Option<&str>
pub fn service_id(&self) -> Option<&str>
The ID of service in which the route was created. Traffic that matches this route is forwarded to this service.
sourcepub fn application_id(&self) -> Option<&str>
pub fn application_id(&self) -> Option<&str>
The ID of the application in which the route is being updated.
sourcepub fn state(&self) -> Option<&RouteState>
pub fn state(&self) -> Option<&RouteState>
The current state of the route.
sourcepub fn last_updated_time(&self) -> Option<&DateTime>
pub fn last_updated_time(&self) -> Option<&DateTime>
A timestamp that indicates when the route was last updated.
source§impl UpdateRouteOutput
impl UpdateRouteOutput
sourcepub fn builder() -> UpdateRouteOutputBuilder
pub fn builder() -> UpdateRouteOutputBuilder
Creates a new builder-style object to manufacture UpdateRouteOutput
.
Trait Implementations§
source§impl Clone for UpdateRouteOutput
impl Clone for UpdateRouteOutput
source§fn clone(&self) -> UpdateRouteOutput
fn clone(&self) -> UpdateRouteOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateRouteOutput
impl Debug for UpdateRouteOutput
source§impl PartialEq for UpdateRouteOutput
impl PartialEq for UpdateRouteOutput
source§fn eq(&self, other: &UpdateRouteOutput) -> bool
fn eq(&self, other: &UpdateRouteOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for UpdateRouteOutput
impl RequestId for UpdateRouteOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.