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