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
source§fn eq(&self, other: &GlossaryTermItem) -> bool
fn eq(&self, other: &GlossaryTermItem) -> bool
self
and other
values to be equal, and is used
by ==
.