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
impl StructuralPartialEq for DomainSummary
Auto Trait Implementations§
impl Freeze for DomainSummary
impl RefUnwindSafe for DomainSummary
impl Send for DomainSummary
impl Sync for DomainSummary
impl Unpin for DomainSummary
impl UnwindSafe for DomainSummary
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more