Struct aws_sdk_securityhub::types::builders::NoteBuilder
source · #[non_exhaustive]pub struct NoteBuilder { /* private fields */ }
Expand description
A builder for Note
.
Implementations§
source§impl NoteBuilder
impl NoteBuilder
sourcepub fn updated_by(self, input: impl Into<String>) -> Self
pub fn updated_by(self, input: impl Into<String>) -> Self
The principal that created a note.
sourcepub fn set_updated_by(self, input: Option<String>) -> Self
pub fn set_updated_by(self, input: Option<String>) -> Self
The principal that created a note.
sourcepub fn updated_at(self, input: impl Into<String>) -> Self
pub fn updated_at(self, input: impl Into<String>) -> Self
The timestamp of when the note was updated.
Uses the date-time
format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces, and date and time should be separated by T
. For example, 2020-03-22T13:22:13.933Z
.
sourcepub fn set_updated_at(self, input: Option<String>) -> Self
pub fn set_updated_at(self, input: Option<String>) -> Self
The timestamp of when the note was updated.
Uses the date-time
format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces, and date and time should be separated by T
. For example, 2020-03-22T13:22:13.933Z
.
Trait Implementations§
source§impl Clone for NoteBuilder
impl Clone for NoteBuilder
source§fn clone(&self) -> NoteBuilder
fn clone(&self) -> NoteBuilder
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 NoteBuilder
impl Debug for NoteBuilder
source§impl Default for NoteBuilder
impl Default for NoteBuilder
source§fn default() -> NoteBuilder
fn default() -> NoteBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<NoteBuilder> for NoteBuilder
impl PartialEq<NoteBuilder> for NoteBuilder
source§fn eq(&self, other: &NoteBuilder) -> bool
fn eq(&self, other: &NoteBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for NoteBuilder
Auto Trait Implementations§
impl RefUnwindSafe for NoteBuilder
impl Send for NoteBuilder
impl Sync for NoteBuilder
impl Unpin for NoteBuilder
impl UnwindSafe for NoteBuilder
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