Struct aws_sdk_codeartifact::model::DomainSummary [−][src]
#[non_exhaustive]pub struct DomainSummary {
pub name: Option<String>,
pub owner: Option<String>,
pub arn: Option<String>,
pub status: Option<DomainStatus>,
pub created_time: Option<Instant>,
pub encryption_key: Option<String>,
}
Expand description
Information about a domain, including its name, Amazon Resource Name (ARN), and status.
The ListDomains operation returns a list of DomainSummary
objects.
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.name: Option<String>
The name of the domain.
owner: Option<String>
The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
arn: Option<String>
The ARN of the domain.
status: Option<DomainStatus>
A string that contains the status of the domain. The valid values are:
-
Active
-
Deleted
created_time: Option<Instant>
A timestamp that contains the date and time the domain was created.
encryption_key: Option<String>
The key used to encrypt the domain.
Implementations
Creates a new builder-style object to manufacture DomainSummary
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for DomainSummary
impl Send for DomainSummary
impl Sync for DomainSummary
impl Unpin for DomainSummary
impl UnwindSafe for DomainSummary
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more