pub struct DeleteDmRoutingConfigParams {
pub config_id: String,
pub force: Option<bool>,
}Expand description
struct for passing parameters to the method delete_dm_routing_config
Fields§
§config_id: String§force: Option<bool>When true, allows deleting a routing config that has an active version. This is destructive — traffic routing for any paths served by the config will stop immediately.
Trait Implementations§
Source§impl Clone for DeleteDmRoutingConfigParams
impl Clone for DeleteDmRoutingConfigParams
Source§fn clone(&self) -> DeleteDmRoutingConfigParams
fn clone(&self) -> DeleteDmRoutingConfigParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DeleteDmRoutingConfigParams
impl Debug for DeleteDmRoutingConfigParams
Source§impl Default for DeleteDmRoutingConfigParams
impl Default for DeleteDmRoutingConfigParams
Source§fn default() -> DeleteDmRoutingConfigParams
fn default() -> DeleteDmRoutingConfigParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DeleteDmRoutingConfigParams
impl RefUnwindSafe for DeleteDmRoutingConfigParams
impl Send for DeleteDmRoutingConfigParams
impl Sync for DeleteDmRoutingConfigParams
impl Unpin for DeleteDmRoutingConfigParams
impl UnsafeUnpin for DeleteDmRoutingConfigParams
impl UnwindSafe for DeleteDmRoutingConfigParams
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