pub struct DescribeVpcEndpointConnectionsRequest {
pub dry_run: Option<bool>,
pub filters: Option<Vec<Filter>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§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.
-
service-id- The ID of the service. -
vpc-endpoint-owner- The AWS account number of the owner of the endpoint. -
vpc-endpoint-state- The state of the endpoint (pendingAcceptance|pending|available|deleting|deleted|rejected|failed). -
vpc-endpoint-id- The ID of the endpoint.
max_results: Option<i64>The maximum number of results to return for the request in a single page. The remaining results of the initial request can be seen by sending another request with the returned NextToken value. This value can be between 5 and 1,000; if MaxResults is given a value larger than 1,000, only 1,000 results are returned.
next_token: Option<String>The token to retrieve the next page of results.
Trait Implementations§
Source§impl Clone for DescribeVpcEndpointConnectionsRequest
impl Clone for DescribeVpcEndpointConnectionsRequest
Source§fn clone(&self) -> DescribeVpcEndpointConnectionsRequest
fn clone(&self) -> DescribeVpcEndpointConnectionsRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for DescribeVpcEndpointConnectionsRequest
impl Default for DescribeVpcEndpointConnectionsRequest
Source§fn default() -> DescribeVpcEndpointConnectionsRequest
fn default() -> DescribeVpcEndpointConnectionsRequest
Source§impl PartialEq for DescribeVpcEndpointConnectionsRequest
impl PartialEq for DescribeVpcEndpointConnectionsRequest
Source§fn eq(&self, other: &DescribeVpcEndpointConnectionsRequest) -> bool
fn eq(&self, other: &DescribeVpcEndpointConnectionsRequest) -> bool
self and other values to be equal, and is used by ==.