#[non_exhaustive]pub struct DeleteVpnConnectionRequest {
pub name: String,
pub request_id: String,
/* private fields */
}Expand description
Deletes a vpn connection.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringRequired. The resource name of the vpn connection.
request_id: StringA unique identifier for this request. Restricted to 36 ASCII characters. A
random UUID is recommended. This request is only idempotent if
request_id is provided.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteVpnConnectionRequest
impl Clone for DeleteVpnConnectionRequest
Source§fn clone(&self) -> DeleteVpnConnectionRequest
fn clone(&self) -> DeleteVpnConnectionRequest
Returns a duplicate 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 DeleteVpnConnectionRequest
impl Debug for DeleteVpnConnectionRequest
Source§impl Default for DeleteVpnConnectionRequest
impl Default for DeleteVpnConnectionRequest
Source§fn default() -> DeleteVpnConnectionRequest
fn default() -> DeleteVpnConnectionRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteVpnConnectionRequest
impl Message for DeleteVpnConnectionRequest
impl StructuralPartialEq for DeleteVpnConnectionRequest
Auto Trait Implementations§
impl Freeze for DeleteVpnConnectionRequest
impl RefUnwindSafe for DeleteVpnConnectionRequest
impl Send for DeleteVpnConnectionRequest
impl Sync for DeleteVpnConnectionRequest
impl Unpin for DeleteVpnConnectionRequest
impl UnwindSafe for DeleteVpnConnectionRequest
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