Struct aws_sdk_ec2::input::DescribeNetworkInterfacePermissionsInput [−][src]
#[non_exhaustive]pub struct DescribeNetworkInterfacePermissionsInput {
pub network_interface_permission_ids: Option<Vec<String>>,
pub filters: Option<Vec<Filter>>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
Expand description
Contains the parameters for DescribeNetworkInterfacePermissions.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.network_interface_permission_ids: Option<Vec<String>>
One or more network interface permission IDs.
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 Amazon Web Services account ID. -
network-interface-permission.aws-service
- The Amazon Web Service. -
network-interface-permission.permission
- The type of permission (INSTANCE-ATTACH
|EIP-ASSOCIATE
).
next_token: Option<String>
The token to request the next page of results.
max_results: Option<i32>
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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeNetworkInterfacePermissions, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeNetworkInterfacePermissions, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeNetworkInterfacePermissions
>
Creates a new builder-style object to manufacture DescribeNetworkInterfacePermissionsInput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more