#[non_exhaustive]pub struct ListRulesInputBuilder { /* private fields */ }Expand description
A builder for ListRulesInput.
Implementations§
source§impl ListRulesInputBuilder
impl ListRulesInputBuilder
sourcepub fn name_prefix(self, input: impl Into<String>) -> Self
pub fn name_prefix(self, input: impl Into<String>) -> Self
The prefix matching the rule name.
sourcepub fn set_name_prefix(self, input: Option<String>) -> Self
pub fn set_name_prefix(self, input: Option<String>) -> Self
The prefix matching the rule name.
sourcepub fn get_name_prefix(&self) -> &Option<String>
pub fn get_name_prefix(&self) -> &Option<String>
The prefix matching the rule name.
sourcepub fn event_bus_name(self, input: impl Into<String>) -> Self
pub fn event_bus_name(self, input: impl Into<String>) -> Self
The name or ARN of the event bus to list the rules for. If you omit this, the default event bus is used.
sourcepub fn set_event_bus_name(self, input: Option<String>) -> Self
pub fn set_event_bus_name(self, input: Option<String>) -> Self
The name or ARN of the event bus to list the rules for. If you omit this, the default event bus is used.
sourcepub fn get_event_bus_name(&self) -> &Option<String>
pub fn get_event_bus_name(&self) -> &Option<String>
The name or ARN of the event bus to list the rules for. If you omit this, the default event bus is used.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token returned by a previous call to retrieve the next set of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token returned by a previous call to retrieve the next set of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token returned by a previous call to retrieve the next set of results.
sourcepub fn build(self) -> Result<ListRulesInput, BuildError>
pub fn build(self) -> Result<ListRulesInput, BuildError>
Consumes the builder and constructs a ListRulesInput.
source§impl ListRulesInputBuilder
impl ListRulesInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListRulesOutput, SdkError<ListRulesError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListRulesOutput, SdkError<ListRulesError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListRulesInputBuilder
impl Clone for ListRulesInputBuilder
source§fn clone(&self) -> ListRulesInputBuilder
fn clone(&self) -> ListRulesInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListRulesInputBuilder
impl Debug for ListRulesInputBuilder
source§impl Default for ListRulesInputBuilder
impl Default for ListRulesInputBuilder
source§fn default() -> ListRulesInputBuilder
fn default() -> ListRulesInputBuilder
source§impl PartialEq for ListRulesInputBuilder
impl PartialEq for ListRulesInputBuilder
source§fn eq(&self, other: &ListRulesInputBuilder) -> bool
fn eq(&self, other: &ListRulesInputBuilder) -> bool
self and other values to be equal, and is used
by ==.