Struct aws_sdk_datazone::types::DomainSummary
source · #[non_exhaustive]pub struct DomainSummary {
pub id: String,
pub name: String,
pub description: Option<String>,
pub arn: String,
pub managed_account_id: String,
pub status: DomainStatus,
pub portal_url: Option<String>,
pub created_at: 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: String
The ID of the Amazon DataZone domain.
name: String
A name of an Amazon DataZone domain.
description: Option<String>
A description of an Amazon DataZone domain.
arn: String
The ARN of the Amazon DataZone domain.
managed_account_id: String
The identifier of the Amazon Web Services account that manages the domain.
status: DomainStatus
The status of the Amazon DataZone domain.
portal_url: Option<String>
The data portal URL for the Amazon DataZone domain.
created_at: 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) -> &str
pub fn managed_account_id(&self) -> &str
The identifier of the Amazon Web Services account that manages the domain.
sourcepub fn status(&self) -> &DomainStatus
pub fn status(&self) -> &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) -> &DateTime
pub fn created_at(&self) -> &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 ==
.