Struct aws_sdk_ses::client::fluent_builders::ListConfigurationSets
source · pub struct ListConfigurationSets { /* private fields */ }
Expand description
Fluent builder constructing a request to ListConfigurationSets
.
Provides a list of the configuration sets associated with your Amazon SES account in the current AWS Region. For information about using configuration sets, see Monitoring Your Amazon SES Sending Activity in the Amazon SES Developer Guide.
You can execute this operation no more than once per second. This operation will return up to 1,000 configuration sets each time it is run. If your Amazon SES account has more than 1,000 configuration sets, this operation will also return a NextToken element. You can then execute the ListConfigurationSets
operation again, passing the NextToken
parameter and the value of the NextToken element to retrieve additional results.
Implementations§
source§impl ListConfigurationSets
impl ListConfigurationSets
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<ListConfigurationSets, AwsResponseRetryClassifier>, SdkError<ListConfigurationSetsError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<ListConfigurationSets, AwsResponseRetryClassifier>, SdkError<ListConfigurationSetsError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<ListConfigurationSetsOutput, SdkError<ListConfigurationSetsError>>
pub async fn send(
self
) -> Result<ListConfigurationSetsOutput, SdkError<ListConfigurationSetsError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token returned from a previous call to ListConfigurationSets
to indicate the position of the configuration set in the configuration set list.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A token returned from a previous call to ListConfigurationSets
to indicate the position of the configuration set in the configuration set list.
sourcepub fn set_max_items(self, input: Option<i32>) -> Self
pub fn set_max_items(self, input: Option<i32>) -> Self
The number of configuration sets to return.
Trait Implementations§
source§impl Clone for ListConfigurationSets
impl Clone for ListConfigurationSets
source§fn clone(&self) -> ListConfigurationSets
fn clone(&self) -> ListConfigurationSets
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more