pub struct DeleteVirtualNodeInput {
pub mesh_name: String,
pub mesh_owner: Option<String>,
pub virtual_node_name: String,
}
Fields§
§mesh_name: String
The name of the service mesh to delete the virtual node in.
mesh_owner: Option<String>
The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.
virtual_node_name: String
The name of the virtual node to delete.
Trait Implementations§
Source§impl Clone for DeleteVirtualNodeInput
impl Clone for DeleteVirtualNodeInput
Source§fn clone(&self) -> DeleteVirtualNodeInput
fn clone(&self) -> DeleteVirtualNodeInput
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 DeleteVirtualNodeInput
impl Debug for DeleteVirtualNodeInput
Source§impl Default for DeleteVirtualNodeInput
impl Default for DeleteVirtualNodeInput
Source§fn default() -> DeleteVirtualNodeInput
fn default() -> DeleteVirtualNodeInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteVirtualNodeInput
impl PartialEq for DeleteVirtualNodeInput
Source§impl Serialize for DeleteVirtualNodeInput
impl Serialize for DeleteVirtualNodeInput
impl StructuralPartialEq for DeleteVirtualNodeInput
Auto Trait Implementations§
impl Freeze for DeleteVirtualNodeInput
impl RefUnwindSafe for DeleteVirtualNodeInput
impl Send for DeleteVirtualNodeInput
impl Sync for DeleteVirtualNodeInput
impl Unpin for DeleteVirtualNodeInput
impl UnwindSafe for DeleteVirtualNodeInput
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