Struct aws_sdk_datazone::types::GlossaryTermItem
source · #[non_exhaustive]pub struct GlossaryTermItem {
pub domain_id: String,
pub glossary_id: String,
pub id: String,
pub name: String,
pub short_description: Option<String>,
pub long_description: Option<String>,
pub term_relations: Option<TermRelations>,
pub status: GlossaryTermStatus,
pub created_at: Option<DateTime>,
pub created_by: Option<String>,
pub updated_at: Option<DateTime>,
pub updated_by: Option<String>,
}
Expand description
The details of a business glossary term.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.domain_id: String
The identifier of the Amazon DataZone domain in which the business glossary exists.
glossary_id: String
The identifier of the business glossary to which the term belongs.
id: String
The identifier of the business glossary term.
name: String
The name of the business glossary term.
short_description: Option<String>
The short description of the business glossary term.
long_description: Option<String>
The long description of the business glossary term.
term_relations: Option<TermRelations>
The relations of the business glossary term.
status: GlossaryTermStatus
The status of the business glossary term.
created_at: Option<DateTime>
The timestamp of when a business glossary term was created.
created_by: Option<String>
The Amazon DataZone user who created the business glossary.
updated_at: Option<DateTime>
The timestamp of when a business glossary term was updated.
updated_by: Option<String>
The Amazon DataZone user who updated the business glossary term.
Implementations§
source§impl GlossaryTermItem
impl GlossaryTermItem
sourcepub fn domain_id(&self) -> &str
pub fn domain_id(&self) -> &str
The identifier of the Amazon DataZone domain in which the business glossary exists.
sourcepub fn glossary_id(&self) -> &str
pub fn glossary_id(&self) -> &str
The identifier of the business glossary to which the term belongs.
sourcepub fn short_description(&self) -> Option<&str>
pub fn short_description(&self) -> Option<&str>
The short description of the business glossary term.
sourcepub fn long_description(&self) -> Option<&str>
pub fn long_description(&self) -> Option<&str>
The long description of the business glossary term.
sourcepub fn term_relations(&self) -> Option<&TermRelations>
pub fn term_relations(&self) -> Option<&TermRelations>
The relations of the business glossary term.
sourcepub fn status(&self) -> &GlossaryTermStatus
pub fn status(&self) -> &GlossaryTermStatus
The status of the business glossary term.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The timestamp of when a business glossary term was created.
sourcepub fn created_by(&self) -> Option<&str>
pub fn created_by(&self) -> Option<&str>
The Amazon DataZone user who created the business glossary.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The timestamp of when a business glossary term was updated.
sourcepub fn updated_by(&self) -> Option<&str>
pub fn updated_by(&self) -> Option<&str>
The Amazon DataZone user who updated the business glossary term.
source§impl GlossaryTermItem
impl GlossaryTermItem
sourcepub fn builder() -> GlossaryTermItemBuilder
pub fn builder() -> GlossaryTermItemBuilder
Creates a new builder-style object to manufacture GlossaryTermItem
.
Trait Implementations§
source§impl Clone for GlossaryTermItem
impl Clone for GlossaryTermItem
source§fn clone(&self) -> GlossaryTermItem
fn clone(&self) -> GlossaryTermItem
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GlossaryTermItem
impl Debug for GlossaryTermItem
source§impl PartialEq for GlossaryTermItem
impl PartialEq for GlossaryTermItem
impl StructuralPartialEq for GlossaryTermItem
Auto Trait Implementations§
impl Freeze for GlossaryTermItem
impl RefUnwindSafe for GlossaryTermItem
impl Send for GlossaryTermItem
impl Sync for GlossaryTermItem
impl Unpin for GlossaryTermItem
impl UnwindSafe for GlossaryTermItem
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more