pub struct DescribeClientVpnEndpointsRequest {
pub client_vpn_endpoint_ids: Option<Vec<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_ids: Option<Vec<String>>
The 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.
-
endpoint-id
- The ID of the Client VPN endpoint. -
transport-protocol
- The transport protocol (tcp
|udp
).
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 DescribeClientVpnEndpointsRequest
impl Clone for DescribeClientVpnEndpointsRequest
Source§fn clone(&self) -> DescribeClientVpnEndpointsRequest
fn clone(&self) -> DescribeClientVpnEndpointsRequest
Returns a copy 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 DescribeClientVpnEndpointsRequest
impl Default for DescribeClientVpnEndpointsRequest
Source§fn default() -> DescribeClientVpnEndpointsRequest
fn default() -> DescribeClientVpnEndpointsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeClientVpnEndpointsRequest
impl PartialEq for DescribeClientVpnEndpointsRequest
Source§fn eq(&self, other: &DescribeClientVpnEndpointsRequest) -> bool
fn eq(&self, other: &DescribeClientVpnEndpointsRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeClientVpnEndpointsRequest
Auto Trait Implementations§
impl Freeze for DescribeClientVpnEndpointsRequest
impl RefUnwindSafe for DescribeClientVpnEndpointsRequest
impl Send for DescribeClientVpnEndpointsRequest
impl Sync for DescribeClientVpnEndpointsRequest
impl Unpin for DescribeClientVpnEndpointsRequest
impl UnwindSafe for DescribeClientVpnEndpointsRequest
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