pub struct DescribeClientVpnAuthorizationRulesRequest {
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: 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.
-
description
- The description of the authorization rule. -
destination-cidr
- The CIDR of the network to which the authorization rule applies. -
group-id
- The ID of the Active Directory group to which the authorization rule grants access.
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 DescribeClientVpnAuthorizationRulesRequest
impl Clone for DescribeClientVpnAuthorizationRulesRequest
Source§fn clone(&self) -> DescribeClientVpnAuthorizationRulesRequest
fn clone(&self) -> DescribeClientVpnAuthorizationRulesRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for DescribeClientVpnAuthorizationRulesRequest
impl Default for DescribeClientVpnAuthorizationRulesRequest
Source§fn default() -> DescribeClientVpnAuthorizationRulesRequest
fn default() -> DescribeClientVpnAuthorizationRulesRequest
Source§impl PartialEq for DescribeClientVpnAuthorizationRulesRequest
impl PartialEq for DescribeClientVpnAuthorizationRulesRequest
Source§fn eq(&self, other: &DescribeClientVpnAuthorizationRulesRequest) -> bool
fn eq(&self, other: &DescribeClientVpnAuthorizationRulesRequest) -> bool
self
and other
values to be equal, and is used by ==
.