#[non_exhaustive]pub struct UpdateRouteInput { /* private fields */ }Implementations§
source§impl UpdateRouteInput
impl UpdateRouteInput
sourcepub fn environment_identifier(&self) -> Option<&str>
pub fn environment_identifier(&self) -> Option<&str>
The ID of the environment in which the route is being updated.
sourcepub fn application_identifier(&self) -> Option<&str>
pub fn application_identifier(&self) -> Option<&str>
The ID of the application within which the route is being updated.
sourcepub fn route_identifier(&self) -> Option<&str>
pub fn route_identifier(&self) -> Option<&str>
The unique identifier of the route to update.
sourcepub fn activation_state(&self) -> Option<&RouteActivationState>
pub fn activation_state(&self) -> Option<&RouteActivationState>
If set to ACTIVE, traffic is forwarded to this route’s service after the route is updated.
source§impl UpdateRouteInput
impl UpdateRouteInput
sourcepub fn builder() -> UpdateRouteInputBuilder
pub fn builder() -> UpdateRouteInputBuilder
Creates a new builder-style object to manufacture UpdateRouteInput.
source§impl UpdateRouteInput
impl UpdateRouteInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateRoute, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<UpdateRoute, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateRoute>
Trait Implementations§
source§impl Clone for UpdateRouteInput
impl Clone for UpdateRouteInput
source§fn clone(&self) -> UpdateRouteInput
fn clone(&self) -> UpdateRouteInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for UpdateRouteInput
impl Debug for UpdateRouteInput
source§impl PartialEq<UpdateRouteInput> for UpdateRouteInput
impl PartialEq<UpdateRouteInput> for UpdateRouteInput
source§fn eq(&self, other: &UpdateRouteInput) -> bool
fn eq(&self, other: &UpdateRouteInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateRouteInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateRouteInput
impl Send for UpdateRouteInput
impl Sync for UpdateRouteInput
impl Unpin for UpdateRouteInput
impl UnwindSafe for UpdateRouteInput
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
Mutably borrows from an owned value. Read more