pub struct UpdateGatewayRouteInput {
pub client_token: Option<String>,
pub gateway_route_name: String,
pub mesh_name: String,
pub mesh_owner: Option<String>,
pub spec: GatewayRouteSpec,
pub virtual_gateway_name: String,
}
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.
gateway_route_name: String
The name of the gateway route to update.
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.
spec: GatewayRouteSpec
The new gateway route specification to apply. This overwrites the existing data.
virtual_gateway_name: String
The name of the virtual gateway that the gateway route is associated with.
Trait Implementations§
Source§impl Clone for UpdateGatewayRouteInput
impl Clone for UpdateGatewayRouteInput
Source§fn clone(&self) -> UpdateGatewayRouteInput
fn clone(&self) -> UpdateGatewayRouteInput
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 UpdateGatewayRouteInput
impl Debug for UpdateGatewayRouteInput
Source§impl Default for UpdateGatewayRouteInput
impl Default for UpdateGatewayRouteInput
Source§fn default() -> UpdateGatewayRouteInput
fn default() -> UpdateGatewayRouteInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateGatewayRouteInput
impl PartialEq for UpdateGatewayRouteInput
Source§impl Serialize for UpdateGatewayRouteInput
impl Serialize for UpdateGatewayRouteInput
impl StructuralPartialEq for UpdateGatewayRouteInput
Auto Trait Implementations§
impl Freeze for UpdateGatewayRouteInput
impl RefUnwindSafe for UpdateGatewayRouteInput
impl Send for UpdateGatewayRouteInput
impl Sync for UpdateGatewayRouteInput
impl Unpin for UpdateGatewayRouteInput
impl UnwindSafe for UpdateGatewayRouteInput
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