pub struct UpdateMeshInput {
pub client_token: Option<String>,
pub mesh_name: String,
pub spec: Option<MeshSpec>,
}
Fields§
§client_token: Option<String>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.
mesh_name: String
The name of the service mesh to update.
spec: Option<MeshSpec>
The service mesh specification to apply.
Trait Implementations§
Source§impl Clone for UpdateMeshInput
impl Clone for UpdateMeshInput
Source§fn clone(&self) -> UpdateMeshInput
fn clone(&self) -> UpdateMeshInput
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 UpdateMeshInput
impl Debug for UpdateMeshInput
Source§impl Default for UpdateMeshInput
impl Default for UpdateMeshInput
Source§fn default() -> UpdateMeshInput
fn default() -> UpdateMeshInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateMeshInput
impl PartialEq for UpdateMeshInput
Source§impl Serialize for UpdateMeshInput
impl Serialize for UpdateMeshInput
impl StructuralPartialEq for UpdateMeshInput
Auto Trait Implementations§
impl Freeze for UpdateMeshInput
impl RefUnwindSafe for UpdateMeshInput
impl Send for UpdateMeshInput
impl Sync for UpdateMeshInput
impl Unpin for UpdateMeshInput
impl UnwindSafe for UpdateMeshInput
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