#[non_exhaustive]pub struct CreateGlossaryTermInput {
pub domain_identifier: Option<String>,
pub glossary_identifier: Option<String>,
pub name: Option<String>,
pub status: Option<GlossaryTermStatus>,
pub short_description: Option<String>,
pub long_description: Option<String>,
pub term_relations: Option<TermRelations>,
pub client_token: Option<String>,
}
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_identifier: Option<String>
The ID of the Amazon DataZone domain in which this business glossary term is created.
glossary_identifier: Option<String>
The ID of the business glossary in which this term is created.
name: Option<String>
The name of this business glossary term.
status: Option<GlossaryTermStatus>
The status of this business glossary term.
short_description: Option<String>
The short description of this business glossary term.
long_description: Option<String>
The long description of this business glossary term.
term_relations: Option<TermRelations>
The term relations of this business glossary term.
client_token: Option<String>
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
Implementations§
source§impl CreateGlossaryTermInput
impl CreateGlossaryTermInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The ID of the Amazon DataZone domain in which this business glossary term is created.
sourcepub fn glossary_identifier(&self) -> Option<&str>
pub fn glossary_identifier(&self) -> Option<&str>
The ID of the business glossary in which this term is created.
sourcepub fn status(&self) -> Option<&GlossaryTermStatus>
pub fn status(&self) -> Option<&GlossaryTermStatus>
The status of this business glossary term.
sourcepub fn short_description(&self) -> Option<&str>
pub fn short_description(&self) -> Option<&str>
The short description of this business glossary term.
sourcepub fn long_description(&self) -> Option<&str>
pub fn long_description(&self) -> Option<&str>
The long description of this business glossary term.
sourcepub fn term_relations(&self) -> Option<&TermRelations>
pub fn term_relations(&self) -> Option<&TermRelations>
The term relations of this business glossary term.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
source§impl CreateGlossaryTermInput
impl CreateGlossaryTermInput
sourcepub fn builder() -> CreateGlossaryTermInputBuilder
pub fn builder() -> CreateGlossaryTermInputBuilder
Creates a new builder-style object to manufacture CreateGlossaryTermInput
.
Trait Implementations§
source§impl Clone for CreateGlossaryTermInput
impl Clone for CreateGlossaryTermInput
source§fn clone(&self) -> CreateGlossaryTermInput
fn clone(&self) -> CreateGlossaryTermInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateGlossaryTermInput
impl Debug for CreateGlossaryTermInput
source§impl PartialEq for CreateGlossaryTermInput
impl PartialEq for CreateGlossaryTermInput
source§fn eq(&self, other: &CreateGlossaryTermInput) -> bool
fn eq(&self, other: &CreateGlossaryTermInput) -> bool
self
and other
values to be equal, and is used
by ==
.