pub struct AssociateCustomerGatewayRequest {
pub customer_gateway_arn: String,
pub device_id: String,
pub global_network_id: String,
pub link_id: Option<String>,
}Fields§
§customer_gateway_arn: StringThe Amazon Resource Name (ARN) of the customer gateway. For more information, see Resources Defined by Amazon EC2.
device_id: StringThe ID of the device.
global_network_id: StringThe ID of the global network.
link_id: Option<String>The ID of the link.
Trait Implementations§
Source§impl Clone for AssociateCustomerGatewayRequest
impl Clone for AssociateCustomerGatewayRequest
Source§fn clone(&self) -> AssociateCustomerGatewayRequest
fn clone(&self) -> AssociateCustomerGatewayRequest
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 AssociateCustomerGatewayRequest
impl Default for AssociateCustomerGatewayRequest
Source§fn default() -> AssociateCustomerGatewayRequest
fn default() -> AssociateCustomerGatewayRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for AssociateCustomerGatewayRequest
impl PartialEq for AssociateCustomerGatewayRequest
Source§fn eq(&self, other: &AssociateCustomerGatewayRequest) -> bool
fn eq(&self, other: &AssociateCustomerGatewayRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AssociateCustomerGatewayRequest
Auto Trait Implementations§
impl Freeze for AssociateCustomerGatewayRequest
impl RefUnwindSafe for AssociateCustomerGatewayRequest
impl Send for AssociateCustomerGatewayRequest
impl Sync for AssociateCustomerGatewayRequest
impl Unpin for AssociateCustomerGatewayRequest
impl UnwindSafe for AssociateCustomerGatewayRequest
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