#[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.impl StructuralPartialEq for UpdateRouteOutput
Auto Trait Implementations§
impl Freeze for UpdateRouteOutput
impl RefUnwindSafe for UpdateRouteOutput
impl Send for UpdateRouteOutput
impl Sync for UpdateRouteOutput
impl Unpin for UpdateRouteOutput
impl UnwindSafe for UpdateRouteOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more