pub struct DescribePublicIpv4PoolsRequest {
pub filters: Option<Vec<Filter>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub pool_ids: Option<Vec<String>>,
}Fields§
§filters: Option<Vec<Filter>>One or more filters.
-
tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the keyOwnerand the valueTeamA, specifytag:Ownerfor the filter name andTeamAfor the filter value. -
tag-key- The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.
max_results: Option<i64>The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.
next_token: Option<String>The token for the next page of results.
pool_ids: Option<Vec<String>>The IDs of the address pools.
Trait Implementations§
Source§impl Clone for DescribePublicIpv4PoolsRequest
impl Clone for DescribePublicIpv4PoolsRequest
Source§fn clone(&self) -> DescribePublicIpv4PoolsRequest
fn clone(&self) -> DescribePublicIpv4PoolsRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for DescribePublicIpv4PoolsRequest
impl Default for DescribePublicIpv4PoolsRequest
Source§fn default() -> DescribePublicIpv4PoolsRequest
fn default() -> DescribePublicIpv4PoolsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribePublicIpv4PoolsRequest
impl PartialEq for DescribePublicIpv4PoolsRequest
Source§fn eq(&self, other: &DescribePublicIpv4PoolsRequest) -> bool
fn eq(&self, other: &DescribePublicIpv4PoolsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribePublicIpv4PoolsRequest
Auto Trait Implementations§
impl Freeze for DescribePublicIpv4PoolsRequest
impl RefUnwindSafe for DescribePublicIpv4PoolsRequest
impl Send for DescribePublicIpv4PoolsRequest
impl Sync for DescribePublicIpv4PoolsRequest
impl Unpin for DescribePublicIpv4PoolsRequest
impl UnwindSafe for DescribePublicIpv4PoolsRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more