pub struct DescribeClientVpnConnectionsRequest {
pub client_vpn_endpoint_id: String,
pub dry_run: Option<bool>,
pub filters: Option<Vec<Filter>>,
pub max_results: Option<i64>,
pub next_token: Option<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.
filters: Option<Vec<Filter>>One or more filters. Filter names and values are case-sensitive.
-
connection-id- The ID of the connection. -
username- For Active Directory client authentication, the user name of the client who established the client connection.
max_results: Option<i64>The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the nextToken value.
next_token: Option<String>The token to retrieve the next page of results.
Trait Implementations§
Source§impl Clone for DescribeClientVpnConnectionsRequest
impl Clone for DescribeClientVpnConnectionsRequest
Source§fn clone(&self) -> DescribeClientVpnConnectionsRequest
fn clone(&self) -> DescribeClientVpnConnectionsRequest
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 DescribeClientVpnConnectionsRequest
impl Default for DescribeClientVpnConnectionsRequest
Source§fn default() -> DescribeClientVpnConnectionsRequest
fn default() -> DescribeClientVpnConnectionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeClientVpnConnectionsRequest
impl PartialEq for DescribeClientVpnConnectionsRequest
Source§fn eq(&self, other: &DescribeClientVpnConnectionsRequest) -> bool
fn eq(&self, other: &DescribeClientVpnConnectionsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeClientVpnConnectionsRequest
Auto Trait Implementations§
impl Freeze for DescribeClientVpnConnectionsRequest
impl RefUnwindSafe for DescribeClientVpnConnectionsRequest
impl Send for DescribeClientVpnConnectionsRequest
impl Sync for DescribeClientVpnConnectionsRequest
impl Unpin for DescribeClientVpnConnectionsRequest
impl UnwindSafe for DescribeClientVpnConnectionsRequest
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