Struct aws_sdk_workmail::types::OrganizationSummary
source · #[non_exhaustive]pub struct OrganizationSummary {
pub organization_id: Option<String>,
pub alias: Option<String>,
pub default_mail_domain: Option<String>,
pub error_message: Option<String>,
pub state: Option<String>,
}Expand description
The representation of an organization.
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.organization_id: Option<String>The identifier associated with the organization.
alias: Option<String>The alias associated with the organization.
default_mail_domain: Option<String>The default email domain associated with the organization.
error_message: Option<String>The error message associated with the organization. It is only present if unexpected behavior has occurred with regards to the organization. It provides insight or solutions regarding unexpected behavior.
state: Option<String>The state associated with the organization.
Implementations§
source§impl OrganizationSummary
impl OrganizationSummary
sourcepub fn organization_id(&self) -> Option<&str>
pub fn organization_id(&self) -> Option<&str>
The identifier associated with the organization.
sourcepub fn default_mail_domain(&self) -> Option<&str>
pub fn default_mail_domain(&self) -> Option<&str>
The default email domain associated with the organization.
sourcepub fn error_message(&self) -> Option<&str>
pub fn error_message(&self) -> Option<&str>
The error message associated with the organization. It is only present if unexpected behavior has occurred with regards to the organization. It provides insight or solutions regarding unexpected behavior.
source§impl OrganizationSummary
impl OrganizationSummary
sourcepub fn builder() -> OrganizationSummaryBuilder
pub fn builder() -> OrganizationSummaryBuilder
Creates a new builder-style object to manufacture OrganizationSummary.
Trait Implementations§
source§impl Clone for OrganizationSummary
impl Clone for OrganizationSummary
source§fn clone(&self) -> OrganizationSummary
fn clone(&self) -> OrganizationSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for OrganizationSummary
impl Debug for OrganizationSummary
source§impl PartialEq for OrganizationSummary
impl PartialEq for OrganizationSummary
source§fn eq(&self, other: &OrganizationSummary) -> bool
fn eq(&self, other: &OrganizationSummary) -> bool
self and other values to be equal, and is used
by ==.