#[non_exhaustive]pub struct GetGlossaryTermOutput {
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>,
/* private fields */
}
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 ID of the Amazon DataZone domain in which this business glossary term exists.
glossary_id: String
The ID of the business glossary to which this term belongs.
id: String
The ID of the business glossary term.
name: String
The name of the business glossary term.
short_description: Option<String>
The short decription 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 the 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 the business glossary term was updated.
updated_by: Option<String>
The Amazon DataZone user who updated the business glossary term.
Implementations§
source§impl GetGlossaryTermOutput
impl GetGlossaryTermOutput
sourcepub fn domain_id(&self) -> &str
pub fn domain_id(&self) -> &str
The ID of the Amazon DataZone domain in which this business glossary term exists.
sourcepub fn glossary_id(&self) -> &str
pub fn glossary_id(&self) -> &str
The ID of the business glossary to which this term belongs.
sourcepub fn short_description(&self) -> Option<&str>
pub fn short_description(&self) -> Option<&str>
The short decription 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 the 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 the 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 GetGlossaryTermOutput
impl GetGlossaryTermOutput
sourcepub fn builder() -> GetGlossaryTermOutputBuilder
pub fn builder() -> GetGlossaryTermOutputBuilder
Creates a new builder-style object to manufacture GetGlossaryTermOutput
.
Trait Implementations§
source§impl Clone for GetGlossaryTermOutput
impl Clone for GetGlossaryTermOutput
source§fn clone(&self) -> GetGlossaryTermOutput
fn clone(&self) -> GetGlossaryTermOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetGlossaryTermOutput
impl Debug for GetGlossaryTermOutput
source§impl PartialEq for GetGlossaryTermOutput
impl PartialEq for GetGlossaryTermOutput
source§impl RequestId for GetGlossaryTermOutput
impl RequestId for GetGlossaryTermOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetGlossaryTermOutput
Auto Trait Implementations§
impl Freeze for GetGlossaryTermOutput
impl RefUnwindSafe for GetGlossaryTermOutput
impl Send for GetGlossaryTermOutput
impl Sync for GetGlossaryTermOutput
impl Unpin for GetGlossaryTermOutput
impl UnwindSafe for GetGlossaryTermOutput
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