#[non_exhaustive]pub struct UpdateEventLabelInput {
pub event_id: Option<String>,
pub event_type_name: Option<String>,
pub assigned_label: Option<String>,
pub label_timestamp: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.event_id: Option<String>The ID of the event associated with the label to update.
event_type_name: Option<String>The event type of the event associated with the label to update.
assigned_label: Option<String>The new label to assign to the event.
label_timestamp: Option<String>The timestamp associated with the label. The timestamp must be specified using ISO 8601 standard in UTC.
Implementations§
source§impl UpdateEventLabelInput
impl UpdateEventLabelInput
sourcepub fn event_id(&self) -> Option<&str>
pub fn event_id(&self) -> Option<&str>
The ID of the event associated with the label to update.
sourcepub fn event_type_name(&self) -> Option<&str>
pub fn event_type_name(&self) -> Option<&str>
The event type of the event associated with the label to update.
sourcepub fn assigned_label(&self) -> Option<&str>
pub fn assigned_label(&self) -> Option<&str>
The new label to assign to the event.
sourcepub fn label_timestamp(&self) -> Option<&str>
pub fn label_timestamp(&self) -> Option<&str>
The timestamp associated with the label. The timestamp must be specified using ISO 8601 standard in UTC.
source§impl UpdateEventLabelInput
impl UpdateEventLabelInput
sourcepub fn builder() -> UpdateEventLabelInputBuilder
pub fn builder() -> UpdateEventLabelInputBuilder
Creates a new builder-style object to manufacture UpdateEventLabelInput.
Trait Implementations§
source§impl Clone for UpdateEventLabelInput
impl Clone for UpdateEventLabelInput
source§fn clone(&self) -> UpdateEventLabelInput
fn clone(&self) -> UpdateEventLabelInput
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 UpdateEventLabelInput
impl Debug for UpdateEventLabelInput
source§impl PartialEq for UpdateEventLabelInput
impl PartialEq for UpdateEventLabelInput
source§fn eq(&self, other: &UpdateEventLabelInput) -> bool
fn eq(&self, other: &UpdateEventLabelInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateEventLabelInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateEventLabelInput
impl Send for UpdateEventLabelInput
impl Sync for UpdateEventLabelInput
impl Unpin for UpdateEventLabelInput
impl UnwindSafe for UpdateEventLabelInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.