pub struct DescribeNetworkInterfacePermissionsRequest {
pub filters: Option<Vec<Filter>>,
pub max_results: Option<i64>,
pub network_interface_permission_ids: Option<Vec<String>>,
pub next_token: Option<String>,
}
Expand description
Contains the parameters for DescribeNetworkInterfacePermissions.
Fields§
§filters: Option<Vec<Filter>>
One or more filters.
-
network-interface-permission.network-interface-permission-id
- The ID of the permission. -
network-interface-permission.network-interface-id
- The ID of the network interface. -
network-interface-permission.aws-account-id
- The account ID. -
network-interface-permission.aws-service
- The Amazon Web Service. -
network-interface-permission.permission
- The type of permission (INSTANCE-ATTACH
|EIP-ASSOCIATE
).
max_results: Option<i64>
The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken
value. If this parameter is not specified, up to 50 results are returned by default.
network_interface_permission_ids: Option<Vec<String>>
One or more network interface permission IDs.
next_token: Option<String>
The token to request the next page of results.
Trait Implementations§
Source§impl Clone for DescribeNetworkInterfacePermissionsRequest
impl Clone for DescribeNetworkInterfacePermissionsRequest
Source§fn clone(&self) -> DescribeNetworkInterfacePermissionsRequest
fn clone(&self) -> DescribeNetworkInterfacePermissionsRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for DescribeNetworkInterfacePermissionsRequest
impl Default for DescribeNetworkInterfacePermissionsRequest
Source§fn default() -> DescribeNetworkInterfacePermissionsRequest
fn default() -> DescribeNetworkInterfacePermissionsRequest
Source§impl PartialEq for DescribeNetworkInterfacePermissionsRequest
impl PartialEq for DescribeNetworkInterfacePermissionsRequest
Source§fn eq(&self, other: &DescribeNetworkInterfacePermissionsRequest) -> bool
fn eq(&self, other: &DescribeNetworkInterfacePermissionsRequest) -> bool
self
and other
values to be equal, and is used by ==
.