pub struct DescribeOrganizationResponse {
pub arn: Option<String>,
pub alias: Option<String>,
pub completed_date: Option<f64>,
pub default_mail_domain: Option<String>,
pub directory_id: Option<String>,
pub directory_type: Option<String>,
pub error_message: Option<String>,
pub organization_id: Option<String>,
pub state: Option<String>,
}
Fields§
§arn: Option<String>
The Amazon Resource Name (ARN) of the organization.
alias: Option<String>
The alias for an organization.
completed_date: Option<f64>
The date at which the organization became usable in the WorkMail context, in UNIX epoch time format.
default_mail_domain: Option<String>
The default mail domain associated with the organization.
directory_id: Option<String>
The identifier for the directory associated with an Amazon WorkMail organization.
directory_type: Option<String>
The type of directory associated with the WorkMail organization.
error_message: Option<String>
(Optional) The error message indicating if unexpected behavior was encountered with regards to the organization.
organization_id: Option<String>
The identifier of an organization.
state: Option<String>
The state of an organization.
Trait Implementations§
Source§impl Clone for DescribeOrganizationResponse
impl Clone for DescribeOrganizationResponse
Source§fn clone(&self) -> DescribeOrganizationResponse
fn clone(&self) -> DescribeOrganizationResponse
Returns a duplicate 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 DescribeOrganizationResponse
impl Debug for DescribeOrganizationResponse
Source§impl Default for DescribeOrganizationResponse
impl Default for DescribeOrganizationResponse
Source§fn default() -> DescribeOrganizationResponse
fn default() -> DescribeOrganizationResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeOrganizationResponse
impl<'de> Deserialize<'de> for DescribeOrganizationResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribeOrganizationResponse
impl PartialEq for DescribeOrganizationResponse
Source§fn eq(&self, other: &DescribeOrganizationResponse) -> bool
fn eq(&self, other: &DescribeOrganizationResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeOrganizationResponse
Auto Trait Implementations§
impl Freeze for DescribeOrganizationResponse
impl RefUnwindSafe for DescribeOrganizationResponse
impl Send for DescribeOrganizationResponse
impl Sync for DescribeOrganizationResponse
impl Unpin for DescribeOrganizationResponse
impl UnwindSafe for DescribeOrganizationResponse
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