Struct aws_sdk_connectcases::operation::get_domain::GetDomainOutput
source · #[non_exhaustive]pub struct GetDomainOutput {
pub domain_id: Option<String>,
pub domain_arn: Option<String>,
pub name: Option<String>,
pub created_time: Option<DateTime>,
pub domain_status: Option<DomainStatus>,
pub tags: Option<HashMap<String, Option<String>>>,
/* 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 unique identifier of the Cases domain.
domain_arn: Option<String>
The Amazon Resource Name (ARN) for the Cases domain.
name: Option<String>
The name of the Cases domain.
created_time: Option<DateTime>
The timestamp when the Cases domain was created.
domain_status: Option<DomainStatus>
The status of the Cases domain.
A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.
Implementations§
source§impl GetDomainOutput
impl GetDomainOutput
sourcepub fn domain_arn(&self) -> Option<&str>
pub fn domain_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for the Cases domain.
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
The timestamp when the Cases domain was created.
sourcepub fn domain_status(&self) -> Option<&DomainStatus>
pub fn domain_status(&self) -> Option<&DomainStatus>
The status of the Cases domain.
A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.
source§impl GetDomainOutput
impl GetDomainOutput
sourcepub fn builder() -> GetDomainOutputBuilder
pub fn builder() -> GetDomainOutputBuilder
Creates a new builder-style object to manufacture GetDomainOutput
.
Trait Implementations§
source§impl Clone for GetDomainOutput
impl Clone for GetDomainOutput
source§fn clone(&self) -> GetDomainOutput
fn clone(&self) -> GetDomainOutput
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 GetDomainOutput
impl Debug for GetDomainOutput
source§impl PartialEq for GetDomainOutput
impl PartialEq for GetDomainOutput
source§fn eq(&self, other: &GetDomainOutput) -> bool
fn eq(&self, other: &GetDomainOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetDomainOutput
impl RequestId for GetDomainOutput
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 GetDomainOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetDomainOutput
impl Send for GetDomainOutput
impl Sync for GetDomainOutput
impl Unpin for GetDomainOutput
impl UnwindSafe for GetDomainOutput
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