Struct aws_sdk_datazone::types::GlossaryItem
source · #[non_exhaustive]pub struct GlossaryItem {
pub domain_id: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub owning_project_id: Option<String>,
pub description: Option<String>,
pub status: Option<GlossaryStatus>,
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.
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: Option<String>
The identifier of the Amazon DataZone domain in which the business glossary exists.
id: Option<String>
The identifier of the glossary.
name: Option<String>
The name of the glossary.
owning_project_id: Option<String>
The identifier of the project that owns the business glosary.
description: Option<String>
The business glossary description.
status: Option<GlossaryStatus>
The business glossary status.
created_at: Option<DateTime>
The timestamp of when the glossary was created.
created_by: Option<String>
The Amazon DataZone user who created the glossary.
updated_at: Option<DateTime>
The timestamp of when the business glossary was updated.
updated_by: Option<String>
The Amazon DataZone user who updated the business glossary.
Implementations§
source§impl GlossaryItem
impl GlossaryItem
sourcepub fn domain_id(&self) -> Option<&str>
pub fn domain_id(&self) -> Option<&str>
The identifier of the Amazon DataZone domain in which the business glossary exists.
sourcepub fn owning_project_id(&self) -> Option<&str>
pub fn owning_project_id(&self) -> Option<&str>
The identifier of the project that owns the business glosary.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The business glossary description.
sourcepub fn status(&self) -> Option<&GlossaryStatus>
pub fn status(&self) -> Option<&GlossaryStatus>
The business glossary status.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The timestamp of when the glossary was created.
sourcepub fn created_by(&self) -> Option<&str>
pub fn created_by(&self) -> Option<&str>
The Amazon DataZone user who created the glossary.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The timestamp of when the business glossary 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.
source§impl GlossaryItem
impl GlossaryItem
sourcepub fn builder() -> GlossaryItemBuilder
pub fn builder() -> GlossaryItemBuilder
Creates a new builder-style object to manufacture GlossaryItem
.
Trait Implementations§
source§impl Clone for GlossaryItem
impl Clone for GlossaryItem
source§fn clone(&self) -> GlossaryItem
fn clone(&self) -> GlossaryItem
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GlossaryItem
impl Debug for GlossaryItem
source§impl PartialEq for GlossaryItem
impl PartialEq for GlossaryItem
source§fn eq(&self, other: &GlossaryItem) -> bool
fn eq(&self, other: &GlossaryItem) -> bool
self
and other
values to be equal, and is used
by ==
.