Struct aws_sdk_codeartifact::model::DomainSummary
source · #[non_exhaustive]pub struct DomainSummary { /* private fields */ }
Expand description
Information about a domain, including its name, Amazon Resource Name (ARN), and status. The ListDomains operation returns a list of DomainSummary
objects.
Implementations§
source§impl DomainSummary
impl DomainSummary
sourcepub fn owner(&self) -> Option<&str>
pub fn owner(&self) -> Option<&str>
The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.
sourcepub fn status(&self) -> Option<&DomainStatus>
pub fn status(&self) -> Option<&DomainStatus>
A string that contains the status of the domain.
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
A timestamp that contains the date and time the domain was created.
sourcepub fn encryption_key(&self) -> Option<&str>
pub fn encryption_key(&self) -> Option<&str>
The key used to encrypt the domain.
source§impl DomainSummary
impl DomainSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DomainSummary
.
Trait Implementations§
source§impl Clone for DomainSummary
impl Clone for DomainSummary
source§fn clone(&self) -> DomainSummary
fn clone(&self) -> DomainSummary
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 DomainSummary
impl Debug for DomainSummary
source§impl PartialEq<DomainSummary> for DomainSummary
impl PartialEq<DomainSummary> for DomainSummary
source§fn eq(&self, other: &DomainSummary) -> bool
fn eq(&self, other: &DomainSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.