#[non_exhaustive]pub struct CreateGlossaryOutput {
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>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.domain_id: Option<String>
The ID of the Amazon DataZone domain in which this business glossary is created.
id: Option<String>
The ID of this business glossary.
name: Option<String>
The name of this business glossary.
owning_project_id: Option<String>
The ID of the project that currently owns this business glossary.
description: Option<String>
The description of this business glossary.
status: Option<GlossaryStatus>
The status of this business glossary.
Implementations§
source§impl CreateGlossaryOutput
impl CreateGlossaryOutput
sourcepub fn domain_id(&self) -> Option<&str>
pub fn domain_id(&self) -> Option<&str>
The ID of the Amazon DataZone domain in which this business glossary is created.
sourcepub fn owning_project_id(&self) -> Option<&str>
pub fn owning_project_id(&self) -> Option<&str>
The ID of the project that currently owns this business glossary.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of this business glossary.
sourcepub fn status(&self) -> Option<&GlossaryStatus>
pub fn status(&self) -> Option<&GlossaryStatus>
The status of this business glossary.
source§impl CreateGlossaryOutput
impl CreateGlossaryOutput
sourcepub fn builder() -> CreateGlossaryOutputBuilder
pub fn builder() -> CreateGlossaryOutputBuilder
Creates a new builder-style object to manufacture CreateGlossaryOutput
.
Trait Implementations§
source§impl Clone for CreateGlossaryOutput
impl Clone for CreateGlossaryOutput
source§fn clone(&self) -> CreateGlossaryOutput
fn clone(&self) -> CreateGlossaryOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CreateGlossaryOutput
impl Debug for CreateGlossaryOutput
source§impl PartialEq for CreateGlossaryOutput
impl PartialEq for CreateGlossaryOutput
source§fn eq(&self, other: &CreateGlossaryOutput) -> bool
fn eq(&self, other: &CreateGlossaryOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateGlossaryOutput
impl RequestId for CreateGlossaryOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for CreateGlossaryOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateGlossaryOutput
impl Send for CreateGlossaryOutput
impl Sync for CreateGlossaryOutput
impl Unpin for CreateGlossaryOutput
impl UnwindSafe for CreateGlossaryOutput
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
Mutably borrows from an owned value. Read more