Struct aws_sdk_eventbridge::input::StartReplayInput
source · #[non_exhaustive]pub struct StartReplayInput { /* private fields */ }Implementations§
source§impl StartReplayInput
impl StartReplayInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartReplay, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartReplay, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<StartReplay>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StartReplayInput.
source§impl StartReplayInput
impl StartReplayInput
sourcepub fn replay_name(&self) -> Option<&str>
pub fn replay_name(&self) -> Option<&str>
The name of the replay to start.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description for the replay to start.
sourcepub fn event_source_arn(&self) -> Option<&str>
pub fn event_source_arn(&self) -> Option<&str>
The ARN of the archive to replay events from.
sourcepub fn event_start_time(&self) -> Option<&DateTime>
pub fn event_start_time(&self) -> Option<&DateTime>
A time stamp for the time to start replaying events. Only events that occurred between the EventStartTime and EventEndTime are replayed.
sourcepub fn event_end_time(&self) -> Option<&DateTime>
pub fn event_end_time(&self) -> Option<&DateTime>
A time stamp for the time to stop replaying events. Only events that occurred between the EventStartTime and EventEndTime are replayed.
sourcepub fn destination(&self) -> Option<&ReplayDestination>
pub fn destination(&self) -> Option<&ReplayDestination>
A ReplayDestination object that includes details about the destination for the replay.
Trait Implementations§
source§impl Clone for StartReplayInput
impl Clone for StartReplayInput
source§fn clone(&self) -> StartReplayInput
fn clone(&self) -> StartReplayInput
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 StartReplayInput
impl Debug for StartReplayInput
source§impl PartialEq<StartReplayInput> for StartReplayInput
impl PartialEq<StartReplayInput> for StartReplayInput
source§fn eq(&self, other: &StartReplayInput) -> bool
fn eq(&self, other: &StartReplayInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.