pub struct DescribeGatewayRouteInput {
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 describe.
mesh_name: String
The name of the service mesh that the gateway 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.
virtual_gateway_name: String
The name of the virtual gateway that the gateway route is associated with.
Trait Implementations§
Source§impl Clone for DescribeGatewayRouteInput
impl Clone for DescribeGatewayRouteInput
Source§fn clone(&self) -> DescribeGatewayRouteInput
fn clone(&self) -> DescribeGatewayRouteInput
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 DescribeGatewayRouteInput
impl Debug for DescribeGatewayRouteInput
Source§impl Default for DescribeGatewayRouteInput
impl Default for DescribeGatewayRouteInput
Source§fn default() -> DescribeGatewayRouteInput
fn default() -> DescribeGatewayRouteInput
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DescribeGatewayRouteInput
Auto Trait Implementations§
impl Freeze for DescribeGatewayRouteInput
impl RefUnwindSafe for DescribeGatewayRouteInput
impl Send for DescribeGatewayRouteInput
impl Sync for DescribeGatewayRouteInput
impl Unpin for DescribeGatewayRouteInput
impl UnwindSafe for DescribeGatewayRouteInput
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