#[non_exhaustive]pub struct UpdateGlossaryTermOutput {
pub id: String,
pub domain_id: String,
pub glossary_id: String,
pub name: String,
pub status: GlossaryTermStatus,
pub short_description: Option<String>,
pub long_description: Option<String>,
pub term_relations: Option<TermRelations>,
/* 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.id: String
The identifier of the business glossary term that is to be updated.
domain_id: String
The identifier of the Amazon DataZone domain in which a business glossary term is to be updated.
glossary_id: String
The identifier of the business glossary in which a term is to be updated.
name: String
The name to be updated as part of the UpdateGlossaryTerm
action.
status: GlossaryTermStatus
The status to be updated as part of the UpdateGlossaryTerm
action.
short_description: Option<String>
The short description to be updated as part of the UpdateGlossaryTerm
action.
long_description: Option<String>
The long description to be updated as part of the UpdateGlossaryTerm
action.
term_relations: Option<TermRelations>
The term relations to be updated as part of the UpdateGlossaryTerm
action.
Implementations§
source§impl UpdateGlossaryTermOutput
impl UpdateGlossaryTermOutput
sourcepub fn domain_id(&self) -> &str
pub fn domain_id(&self) -> &str
The identifier of the Amazon DataZone domain in which a business glossary term is to be updated.
sourcepub fn glossary_id(&self) -> &str
pub fn glossary_id(&self) -> &str
The identifier of the business glossary in which a term is to be updated.
sourcepub fn status(&self) -> &GlossaryTermStatus
pub fn status(&self) -> &GlossaryTermStatus
The status to be updated as part of the UpdateGlossaryTerm
action.
sourcepub fn short_description(&self) -> Option<&str>
pub fn short_description(&self) -> Option<&str>
The short description to be updated as part of the UpdateGlossaryTerm
action.
sourcepub fn long_description(&self) -> Option<&str>
pub fn long_description(&self) -> Option<&str>
The long description to be updated as part of the UpdateGlossaryTerm
action.
sourcepub fn term_relations(&self) -> Option<&TermRelations>
pub fn term_relations(&self) -> Option<&TermRelations>
The term relations to be updated as part of the UpdateGlossaryTerm
action.
source§impl UpdateGlossaryTermOutput
impl UpdateGlossaryTermOutput
sourcepub fn builder() -> UpdateGlossaryTermOutputBuilder
pub fn builder() -> UpdateGlossaryTermOutputBuilder
Creates a new builder-style object to manufacture UpdateGlossaryTermOutput
.
Trait Implementations§
source§impl Clone for UpdateGlossaryTermOutput
impl Clone for UpdateGlossaryTermOutput
source§fn clone(&self) -> UpdateGlossaryTermOutput
fn clone(&self) -> UpdateGlossaryTermOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateGlossaryTermOutput
impl Debug for UpdateGlossaryTermOutput
source§impl PartialEq for UpdateGlossaryTermOutput
impl PartialEq for UpdateGlossaryTermOutput
source§impl RequestId for UpdateGlossaryTermOutput
impl RequestId for UpdateGlossaryTermOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for UpdateGlossaryTermOutput
Auto Trait Implementations§
impl Freeze for UpdateGlossaryTermOutput
impl RefUnwindSafe for UpdateGlossaryTermOutput
impl Send for UpdateGlossaryTermOutput
impl Sync for UpdateGlossaryTermOutput
impl Unpin for UpdateGlossaryTermOutput
impl UnwindSafe for UpdateGlossaryTermOutput
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