#[non_exhaustive]pub struct ListConfigurationSetsInput {
pub next_token: Option<String>,
pub page_size: Option<i32>,
}Expand description
A request to obtain a list of configuration sets for your Amazon SES account in the current Amazon Web Services Region.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.next_token: Option<String>A token returned from a previous call to ListConfigurationSets to indicate the position in the list of configuration sets.
page_size: Option<i32>The number of results to show in a single call to ListConfigurationSets. If the number of results is larger than the number you specified in this parameter, then the response includes a NextToken element, which you can use to obtain additional results.
Implementations§
source§impl ListConfigurationSetsInput
impl ListConfigurationSetsInput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A token returned from a previous call to ListConfigurationSets to indicate the position in the list of configuration sets.
source§impl ListConfigurationSetsInput
impl ListConfigurationSetsInput
sourcepub fn builder() -> ListConfigurationSetsInputBuilder
pub fn builder() -> ListConfigurationSetsInputBuilder
Creates a new builder-style object to manufacture ListConfigurationSetsInput.
Trait Implementations§
source§impl Clone for ListConfigurationSetsInput
impl Clone for ListConfigurationSetsInput
source§fn clone(&self) -> ListConfigurationSetsInput
fn clone(&self) -> ListConfigurationSetsInput
Returns a copy 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 ListConfigurationSetsInput
impl Debug for ListConfigurationSetsInput
source§impl PartialEq for ListConfigurationSetsInput
impl PartialEq for ListConfigurationSetsInput
source§fn eq(&self, other: &ListConfigurationSetsInput) -> bool
fn eq(&self, other: &ListConfigurationSetsInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListConfigurationSetsInput
Auto Trait Implementations§
impl RefUnwindSafe for ListConfigurationSetsInput
impl Send for ListConfigurationSetsInput
impl Sync for ListConfigurationSetsInput
impl Unpin for ListConfigurationSetsInput
impl UnwindSafe for ListConfigurationSetsInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.