pub struct ListEventTypesResult {
pub event_types: Option<Vec<EventTypeSummary>>,
pub next_token: Option<String>,
}
Fields§
§event_types: Option<Vec<EventTypeSummary>>
Information about each event, including service name, resource type, event ID, and event name.
next_token: Option<String>
An enumeration token that can be used in a request to return the next batch of the results.
Trait Implementations§
Source§impl Clone for ListEventTypesResult
impl Clone for ListEventTypesResult
Source§fn clone(&self) -> ListEventTypesResult
fn clone(&self) -> ListEventTypesResult
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 ListEventTypesResult
impl Debug for ListEventTypesResult
Source§impl Default for ListEventTypesResult
impl Default for ListEventTypesResult
Source§fn default() -> ListEventTypesResult
fn default() -> ListEventTypesResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListEventTypesResult
impl<'de> Deserialize<'de> for ListEventTypesResult
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
Source§impl PartialEq for ListEventTypesResult
impl PartialEq for ListEventTypesResult
impl StructuralPartialEq for ListEventTypesResult
Auto Trait Implementations§
impl Freeze for ListEventTypesResult
impl RefUnwindSafe for ListEventTypesResult
impl Send for ListEventTypesResult
impl Sync for ListEventTypesResult
impl Unpin for ListEventTypesResult
impl UnwindSafe for ListEventTypesResult
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