pub struct TargetNetwork {
pub association_id: Option<String>,
pub client_vpn_endpoint_id: Option<String>,
pub security_groups: Option<Vec<String>>,
pub status: Option<AssociationStatus>,
pub target_network_id: Option<String>,
pub vpc_id: Option<String>,
}
Expand description
Describes a target network associated with a Client VPN endpoint.
Fields§
§association_id: Option<String>
The ID of the association.
client_vpn_endpoint_id: Option<String>
The ID of the Client VPN endpoint with which the target network is associated.
security_groups: Option<Vec<String>>
The IDs of the security groups applied to the target network association.
status: Option<AssociationStatus>
The current state of the target network association.
target_network_id: Option<String>
The ID of the subnet specified as the target network.
vpc_id: Option<String>
The ID of the VPC in which the target network (subnet) is located.
Trait Implementations§
Source§impl Clone for TargetNetwork
impl Clone for TargetNetwork
Source§fn clone(&self) -> TargetNetwork
fn clone(&self) -> TargetNetwork
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 Debug for TargetNetwork
impl Debug for TargetNetwork
Source§impl Default for TargetNetwork
impl Default for TargetNetwork
Source§fn default() -> TargetNetwork
fn default() -> TargetNetwork
Returns the “default value” for a type. Read more
Source§impl PartialEq for TargetNetwork
impl PartialEq for TargetNetwork
impl StructuralPartialEq for TargetNetwork
Auto Trait Implementations§
impl Freeze for TargetNetwork
impl RefUnwindSafe for TargetNetwork
impl Send for TargetNetwork
impl Sync for TargetNetwork
impl Unpin for TargetNetwork
impl UnwindSafe for TargetNetwork
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