Struct aws_sdk_datazone::types::DomainSummary
source · #[non_exhaustive]pub struct DomainSummary {
pub id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub arn: Option<String>,
pub managed_account_id: Option<String>,
pub status: Option<DomainStatus>,
pub portal_url: Option<String>,
pub created_at: Option<DateTime>,
pub last_updated_at: Option<DateTime>,
}
Expand description
A summary of a Amazon DataZone domain.
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.id: Option<String>
The ID of the Amazon DataZone domain.
name: Option<String>
A name of an Amazon DataZone domain.
description: Option<String>
A description of an Amazon DataZone domain.
arn: Option<String>
The ARN of the Amazon DataZone domain.
managed_account_id: Option<String>
The identifier of the Amazon Web Services account that manages the domain.
status: Option<DomainStatus>
The status of the Amazon DataZone domain.
portal_url: Option<String>
The data portal URL for the Amazon DataZone domain.
created_at: Option<DateTime>
A timestamp of when a Amazon DataZone domain was created.
last_updated_at: Option<DateTime>
A timestamp of when a Amazon DataZone domain was last updated.
Implementations§
source§impl DomainSummary
impl DomainSummary
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of an Amazon DataZone domain.
sourcepub fn managed_account_id(&self) -> Option<&str>
pub fn managed_account_id(&self) -> Option<&str>
The identifier of the Amazon Web Services account that manages the domain.
sourcepub fn status(&self) -> Option<&DomainStatus>
pub fn status(&self) -> Option<&DomainStatus>
The status of the Amazon DataZone domain.
sourcepub fn portal_url(&self) -> Option<&str>
pub fn portal_url(&self) -> Option<&str>
The data portal URL for the Amazon DataZone domain.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
A timestamp of when a Amazon DataZone domain was created.
sourcepub fn last_updated_at(&self) -> Option<&DateTime>
pub fn last_updated_at(&self) -> Option<&DateTime>
A timestamp of when a Amazon DataZone domain was last updated.
source§impl DomainSummary
impl DomainSummary
sourcepub fn builder() -> DomainSummaryBuilder
pub fn builder() -> DomainSummaryBuilder
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DomainSummary
impl Debug for DomainSummary
source§impl PartialEq for DomainSummary
impl PartialEq for DomainSummary
source§fn eq(&self, other: &DomainSummary) -> bool
fn eq(&self, other: &DomainSummary) -> bool
self
and other
values to be equal, and is used
by ==
.