pub struct Stream {
pub cluster_identifier: String,
pub stream_identifier: String,
pub arn: String,
pub status: String,
pub creation_time: DateTime<Utc>,
pub ordering: String,
pub format: String,
pub target_definition: Value,
pub status_reason: Option<String>,
pub tags: BTreeMap<String, String>,
pub client_token: Option<String>,
pub deleted_at: Option<DateTime<Utc>>,
}Fields§
§cluster_identifier: String§stream_identifier: String§arn: String§status: StringStreamStatus: CREATING | ACTIVE | DELETING | DELETED | FAILED | IMPAIRED.
creation_time: DateTime<Utc>§ordering: StringStreamOrdering: only UNORDERED is modeled by AWS today.
format: StringStreamFormat: only JSON is modeled by AWS today.
target_definition: ValueTargetDefinition union, round-tripped verbatim (currently { kinesis }).
status_reason: Option<String>§client_token: Option<String>§deleted_at: Option<DateTime<Utc>>When DeleteStream was requested; drives the ticker’s grace window
before the record is removed. None until deletion is requested.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Stream
impl<'de> Deserialize<'de> for Stream
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 Stream
impl RefUnwindSafe for Stream
impl Send for Stream
impl Sync for Stream
impl Unpin for Stream
impl UnsafeUnpin for Stream
impl UnwindSafe for Stream
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