pub struct DescribeClientVpnTargetNetworksRequest {
pub association_ids: Option<Vec<String>>,
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§
§association_ids: Option<Vec<String>>The IDs of the target network associations.
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.
-
association-id- The ID of the association. -
target-network-id- The ID of the subnet specified as the target network. -
vpc-id- The ID of the VPC in which the target network is located.
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 DescribeClientVpnTargetNetworksRequest
impl Clone for DescribeClientVpnTargetNetworksRequest
Source§fn clone(&self) -> DescribeClientVpnTargetNetworksRequest
fn clone(&self) -> DescribeClientVpnTargetNetworksRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for DescribeClientVpnTargetNetworksRequest
impl Default for DescribeClientVpnTargetNetworksRequest
Source§fn default() -> DescribeClientVpnTargetNetworksRequest
fn default() -> DescribeClientVpnTargetNetworksRequest
Source§impl PartialEq for DescribeClientVpnTargetNetworksRequest
impl PartialEq for DescribeClientVpnTargetNetworksRequest
Source§fn eq(&self, other: &DescribeClientVpnTargetNetworksRequest) -> bool
fn eq(&self, other: &DescribeClientVpnTargetNetworksRequest) -> bool
self and other values to be equal, and is used by ==.