#[non_exhaustive]pub struct ListReplaysInputBuilder { /* private fields */ }Expand description
A builder for ListReplaysInput.
Implementations§
source§impl ListReplaysInputBuilder
impl ListReplaysInputBuilder
sourcepub fn name_prefix(self, input: impl Into<String>) -> Self
pub fn name_prefix(self, input: impl Into<String>) -> Self
A name prefix to filter the replays returned. Only replays with name that match the prefix are returned.
sourcepub fn set_name_prefix(self, input: Option<String>) -> Self
pub fn set_name_prefix(self, input: Option<String>) -> Self
A name prefix to filter the replays returned. Only replays with name that match the prefix are returned.
sourcepub fn get_name_prefix(&self) -> &Option<String>
pub fn get_name_prefix(&self) -> &Option<String>
A name prefix to filter the replays returned. Only replays with name that match the prefix are returned.
sourcepub fn state(self, input: ReplayState) -> Self
pub fn state(self, input: ReplayState) -> Self
The state of the replay.
sourcepub fn set_state(self, input: Option<ReplayState>) -> Self
pub fn set_state(self, input: Option<ReplayState>) -> Self
The state of the replay.
sourcepub fn get_state(&self) -> &Option<ReplayState>
pub fn get_state(&self) -> &Option<ReplayState>
The state of the replay.
sourcepub fn event_source_arn(self, input: impl Into<String>) -> Self
pub fn event_source_arn(self, input: impl Into<String>) -> Self
The ARN of the archive from which the events are replayed.
sourcepub fn set_event_source_arn(self, input: Option<String>) -> Self
pub fn set_event_source_arn(self, input: Option<String>) -> Self
The ARN of the archive from which the events are replayed.
sourcepub fn get_event_source_arn(&self) -> &Option<String>
pub fn get_event_source_arn(&self) -> &Option<String>
The ARN of the archive from which the events are replayed.
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<ListReplaysInput, BuildError>
pub fn build(self) -> Result<ListReplaysInput, BuildError>
Consumes the builder and constructs a ListReplaysInput.
source§impl ListReplaysInputBuilder
impl ListReplaysInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListReplaysOutput, SdkError<ListReplaysError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListReplaysOutput, SdkError<ListReplaysError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListReplaysInputBuilder
impl Clone for ListReplaysInputBuilder
source§fn clone(&self) -> ListReplaysInputBuilder
fn clone(&self) -> ListReplaysInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListReplaysInputBuilder
impl Debug for ListReplaysInputBuilder
source§impl Default for ListReplaysInputBuilder
impl Default for ListReplaysInputBuilder
source§fn default() -> ListReplaysInputBuilder
fn default() -> ListReplaysInputBuilder
source§impl PartialEq for ListReplaysInputBuilder
impl PartialEq for ListReplaysInputBuilder
source§fn eq(&self, other: &ListReplaysInputBuilder) -> bool
fn eq(&self, other: &ListReplaysInputBuilder) -> bool
self and other values to be equal, and is used
by ==.