pub struct Replay {
pub name: String,
pub arn: String,
pub description: Option<String>,
pub event_source_arn: String,
pub destination: Value,
pub event_start_time: DateTime<Utc>,
pub event_end_time: DateTime<Utc>,
pub state: String,
pub replay_start_time: DateTime<Utc>,
pub replay_end_time: Option<DateTime<Utc>>,
}Fields§
§name: String§arn: String§description: Option<String>§event_source_arn: String§destination: Value§event_start_time: DateTime<Utc>§event_end_time: DateTime<Utc>§state: String§replay_start_time: DateTime<Utc>§replay_end_time: Option<DateTime<Utc>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Replay
impl<'de> Deserialize<'de> for Replay
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Replay
impl RefUnwindSafe for Replay
impl Send for Replay
impl Sync for Replay
impl Unpin for Replay
impl UnsafeUnpin for Replay
impl UnwindSafe for Replay
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