Struct aws_sdk_connectcases::operation::get_domain::GetDomainOutput
source · #[non_exhaustive]pub struct GetDomainOutput {
pub domain_id: String,
pub domain_arn: String,
pub name: String,
pub created_time: DateTime,
pub domain_status: 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: String
The unique identifier of the Cases domain.
domain_arn: String
The Amazon Resource Name (ARN) for the Cases domain.
name: String
The name of the Cases domain.
created_time: DateTime
The timestamp when the Cases domain was created.
domain_status: 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) -> &str
pub fn domain_arn(&self) -> &str
The Amazon Resource Name (ARN) for the Cases domain.
sourcepub fn created_time(&self) -> &DateTime
pub fn created_time(&self) -> &DateTime
The timestamp when the Cases domain was created.
sourcepub fn domain_status(&self) -> &DomainStatus
pub fn domain_status(&self) -> &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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.