pub struct DeleteGatewayRouteInput {
pub gateway_route_name: String,
pub mesh_name: String,
pub mesh_owner: Option<String>,
pub virtual_gateway_name: String,
}
Fields§
§gateway_route_name: String
The name of the gateway route to delete.
mesh_name: String
The name of the service mesh to delete the gateway route from.
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_gateway_name: String
The name of the virtual gateway to delete the route from.
Trait Implementations§
Source§impl Clone for DeleteGatewayRouteInput
impl Clone for DeleteGatewayRouteInput
Source§fn clone(&self) -> DeleteGatewayRouteInput
fn clone(&self) -> DeleteGatewayRouteInput
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 DeleteGatewayRouteInput
impl Debug for DeleteGatewayRouteInput
Source§impl Default for DeleteGatewayRouteInput
impl Default for DeleteGatewayRouteInput
Source§fn default() -> DeleteGatewayRouteInput
fn default() -> DeleteGatewayRouteInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteGatewayRouteInput
impl PartialEq for DeleteGatewayRouteInput
Source§impl Serialize for DeleteGatewayRouteInput
impl Serialize for DeleteGatewayRouteInput
impl StructuralPartialEq for DeleteGatewayRouteInput
Auto Trait Implementations§
impl Freeze for DeleteGatewayRouteInput
impl RefUnwindSafe for DeleteGatewayRouteInput
impl Send for DeleteGatewayRouteInput
impl Sync for DeleteGatewayRouteInput
impl Unpin for DeleteGatewayRouteInput
impl UnwindSafe for DeleteGatewayRouteInput
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