pub struct ListLoggingConfigurationsRequest {
pub limit: Option<i64>,
pub next_marker: Option<String>,
}Fields§
§limit: Option<i64>Specifies the number of LoggingConfigurations that you want AWS WAF to return for this request. If you have more LoggingConfigurations than the number that you specify for Limit, the response includes a NextMarker value that you can use to get another batch of LoggingConfigurations.
next_marker: Option<String>If you specify a value for Limit and you have more LoggingConfigurations than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of LoggingConfigurations. For the second and subsequent ListLoggingConfigurations requests, specify the value of NextMarker from the previous response to get information about another batch of ListLoggingConfigurations.
Trait Implementations§
Source§impl Clone for ListLoggingConfigurationsRequest
impl Clone for ListLoggingConfigurationsRequest
Source§fn clone(&self) -> ListLoggingConfigurationsRequest
fn clone(&self) -> ListLoggingConfigurationsRequest
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 ListLoggingConfigurationsRequest
impl Default for ListLoggingConfigurationsRequest
Source§fn default() -> ListLoggingConfigurationsRequest
fn default() -> ListLoggingConfigurationsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListLoggingConfigurationsRequest
impl PartialEq for ListLoggingConfigurationsRequest
Source§fn eq(&self, other: &ListLoggingConfigurationsRequest) -> bool
fn eq(&self, other: &ListLoggingConfigurationsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListLoggingConfigurationsRequest
Auto Trait Implementations§
impl Freeze for ListLoggingConfigurationsRequest
impl RefUnwindSafe for ListLoggingConfigurationsRequest
impl Send for ListLoggingConfigurationsRequest
impl Sync for ListLoggingConfigurationsRequest
impl Unpin for ListLoggingConfigurationsRequest
impl UnwindSafe for ListLoggingConfigurationsRequest
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