pub struct ApplySecurityGroupsToClientVpnTargetNetworkRequest {
pub client_vpn_endpoint_id: String,
pub dry_run: Option<bool>,
pub security_group_ids: Vec<String>,
pub vpc_id: String,
}Fields§
§client_vpn_endpoint_id: StringThe ID of the Client VPN endpoint.
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.
security_group_ids: Vec<String>The IDs of the security groups to apply to the associated target network. Up to 5 security groups can be applied to an associated target network.
vpc_id: StringThe ID of the VPC in which the associated target network is located.
Trait Implementations§
Source§impl Clone for ApplySecurityGroupsToClientVpnTargetNetworkRequest
impl Clone for ApplySecurityGroupsToClientVpnTargetNetworkRequest
Source§fn clone(&self) -> ApplySecurityGroupsToClientVpnTargetNetworkRequest
fn clone(&self) -> ApplySecurityGroupsToClientVpnTargetNetworkRequest
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 ApplySecurityGroupsToClientVpnTargetNetworkRequest
impl Default for ApplySecurityGroupsToClientVpnTargetNetworkRequest
Source§fn default() -> ApplySecurityGroupsToClientVpnTargetNetworkRequest
fn default() -> ApplySecurityGroupsToClientVpnTargetNetworkRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ApplySecurityGroupsToClientVpnTargetNetworkRequest
impl PartialEq for ApplySecurityGroupsToClientVpnTargetNetworkRequest
Source§fn eq(&self, other: &ApplySecurityGroupsToClientVpnTargetNetworkRequest) -> bool
fn eq(&self, other: &ApplySecurityGroupsToClientVpnTargetNetworkRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ApplySecurityGroupsToClientVpnTargetNetworkRequest
Auto Trait Implementations§
impl Freeze for ApplySecurityGroupsToClientVpnTargetNetworkRequest
impl RefUnwindSafe for ApplySecurityGroupsToClientVpnTargetNetworkRequest
impl Send for ApplySecurityGroupsToClientVpnTargetNetworkRequest
impl Sync for ApplySecurityGroupsToClientVpnTargetNetworkRequest
impl Unpin for ApplySecurityGroupsToClientVpnTargetNetworkRequest
impl UnwindSafe for ApplySecurityGroupsToClientVpnTargetNetworkRequest
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