pub struct ListProtectionGroupsRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§max_results: Option<i64>
The maximum number of ProtectionGroup objects to return. If you leave this blank, Shield Advanced returns the first 20 results.
This is a maximum value. Shield Advanced might return the results in smaller batches. That is, the number of objects returned could be less than MaxResults
, even if there are still more objects yet to return. If there are more objects to return, Shield Advanced returns a value in NextToken
that you can use in your next request, to get the next batch of objects.
next_token: Option<String>
The next token value from a previous call to ListProtectionGroups
. Pass null if this is the first call.
Trait Implementations§
Source§impl Clone for ListProtectionGroupsRequest
impl Clone for ListProtectionGroupsRequest
Source§fn clone(&self) -> ListProtectionGroupsRequest
fn clone(&self) -> ListProtectionGroupsRequest
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 Debug for ListProtectionGroupsRequest
impl Debug for ListProtectionGroupsRequest
Source§impl Default for ListProtectionGroupsRequest
impl Default for ListProtectionGroupsRequest
Source§fn default() -> ListProtectionGroupsRequest
fn default() -> ListProtectionGroupsRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListProtectionGroupsRequest
Auto Trait Implementations§
impl Freeze for ListProtectionGroupsRequest
impl RefUnwindSafe for ListProtectionGroupsRequest
impl Send for ListProtectionGroupsRequest
impl Sync for ListProtectionGroupsRequest
impl Unpin for ListProtectionGroupsRequest
impl UnwindSafe for ListProtectionGroupsRequest
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