pub struct DescribeRouteInput {
pub mesh_name: String,
pub mesh_owner: Option<String>,
pub route_name: String,
pub virtual_router_name: String,
}
Fields§
§mesh_name: String
The name of the service mesh that the route resides 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.
route_name: String
The name of the route to describe.
virtual_router_name: String
The name of the virtual router that the route is associated with.
Trait Implementations§
Source§impl Clone for DescribeRouteInput
impl Clone for DescribeRouteInput
Source§fn clone(&self) -> DescribeRouteInput
fn clone(&self) -> DescribeRouteInput
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 DescribeRouteInput
impl Debug for DescribeRouteInput
Source§impl Default for DescribeRouteInput
impl Default for DescribeRouteInput
Source§fn default() -> DescribeRouteInput
fn default() -> DescribeRouteInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeRouteInput
impl PartialEq for DescribeRouteInput
Source§impl Serialize for DescribeRouteInput
impl Serialize for DescribeRouteInput
impl StructuralPartialEq for DescribeRouteInput
Auto Trait Implementations§
impl Freeze for DescribeRouteInput
impl RefUnwindSafe for DescribeRouteInput
impl Send for DescribeRouteInput
impl Sync for DescribeRouteInput
impl Unpin for DescribeRouteInput
impl UnwindSafe for DescribeRouteInput
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