pub struct AssociateTrunkInterfaceRequest {
pub branch_interface_id: String,
pub client_token: Option<String>,
pub dry_run: Option<bool>,
pub gre_key: Option<i64>,
pub trunk_interface_id: String,
pub vlan_id: Option<i64>,
}
Fields§
§branch_interface_id: String
The ID of the branch network interface.
client_token: Option<String>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.
dry_run: Option<bool>
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
gre_key: Option<i64>
The application key. This applies to the GRE protocol.
trunk_interface_id: String
The ID of the trunk network interface.
vlan_id: Option<i64>
The ID of the VLAN. This applies to the VLAN protocol.
Trait Implementations§
Source§impl Clone for AssociateTrunkInterfaceRequest
impl Clone for AssociateTrunkInterfaceRequest
Source§fn clone(&self) -> AssociateTrunkInterfaceRequest
fn clone(&self) -> AssociateTrunkInterfaceRequest
Returns a duplicate 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 Default for AssociateTrunkInterfaceRequest
impl Default for AssociateTrunkInterfaceRequest
Source§fn default() -> AssociateTrunkInterfaceRequest
fn default() -> AssociateTrunkInterfaceRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for AssociateTrunkInterfaceRequest
impl PartialEq for AssociateTrunkInterfaceRequest
Source§fn eq(&self, other: &AssociateTrunkInterfaceRequest) -> bool
fn eq(&self, other: &AssociateTrunkInterfaceRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AssociateTrunkInterfaceRequest
Auto Trait Implementations§
impl Freeze for AssociateTrunkInterfaceRequest
impl RefUnwindSafe for AssociateTrunkInterfaceRequest
impl Send for AssociateTrunkInterfaceRequest
impl Sync for AssociateTrunkInterfaceRequest
impl Unpin for AssociateTrunkInterfaceRequest
impl UnwindSafe for AssociateTrunkInterfaceRequest
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