pub struct DescribeVpcEndpointServicePermissionsRequest {
pub dry_run: Option<bool>,
pub filters: Option<Vec<Filter>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub service_id: 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.
-
principal- The ARN of the principal. -
principal-type- The principal type (All|Service|OrganizationUnit|Account|User|Role).
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.
service_id: StringThe ID of the service.
Trait Implementations§
Source§impl Clone for DescribeVpcEndpointServicePermissionsRequest
impl Clone for DescribeVpcEndpointServicePermissionsRequest
Source§fn clone(&self) -> DescribeVpcEndpointServicePermissionsRequest
fn clone(&self) -> DescribeVpcEndpointServicePermissionsRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for DescribeVpcEndpointServicePermissionsRequest
impl Default for DescribeVpcEndpointServicePermissionsRequest
Source§fn default() -> DescribeVpcEndpointServicePermissionsRequest
fn default() -> DescribeVpcEndpointServicePermissionsRequest
Source§impl PartialEq for DescribeVpcEndpointServicePermissionsRequest
impl PartialEq for DescribeVpcEndpointServicePermissionsRequest
Source§fn eq(&self, other: &DescribeVpcEndpointServicePermissionsRequest) -> bool
fn eq(&self, other: &DescribeVpcEndpointServicePermissionsRequest) -> bool
self and other values to be equal, and is used by ==.