Struct aws_sdk_codeartifact::types::builders::DomainSummaryBuilder
source · #[non_exhaustive]pub struct DomainSummaryBuilder { /* private fields */ }
Expand description
A builder for DomainSummary
.
Implementations§
source§impl DomainSummaryBuilder
impl DomainSummaryBuilder
sourcepub fn owner(self, input: impl Into<String>) -> Self
pub fn owner(self, input: impl Into<String>) -> Self
The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.
sourcepub fn set_owner(self, input: Option<String>) -> Self
pub fn set_owner(self, input: Option<String>) -> Self
The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.
sourcepub fn get_owner(&self) -> &Option<String>
pub fn get_owner(&self) -> &Option<String>
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, input: DomainStatus) -> Self
pub fn status(self, input: DomainStatus) -> Self
A string that contains the status of the domain.
sourcepub fn set_status(self, input: Option<DomainStatus>) -> Self
pub fn set_status(self, input: Option<DomainStatus>) -> Self
A string that contains the status of the domain.
sourcepub fn get_status(&self) -> &Option<DomainStatus>
pub fn get_status(&self) -> &Option<DomainStatus>
A string that contains the status of the domain.
sourcepub fn created_time(self, input: DateTime) -> Self
pub fn created_time(self, input: DateTime) -> Self
A timestamp that contains the date and time the domain was created.
sourcepub fn set_created_time(self, input: Option<DateTime>) -> Self
pub fn set_created_time(self, input: Option<DateTime>) -> Self
A timestamp that contains the date and time the domain was created.
sourcepub fn get_created_time(&self) -> &Option<DateTime>
pub fn get_created_time(&self) -> &Option<DateTime>
A timestamp that contains the date and time the domain was created.
sourcepub fn encryption_key(self, input: impl Into<String>) -> Self
pub fn encryption_key(self, input: impl Into<String>) -> Self
The key used to encrypt the domain.
sourcepub fn set_encryption_key(self, input: Option<String>) -> Self
pub fn set_encryption_key(self, input: Option<String>) -> Self
The key used to encrypt the domain.
sourcepub fn get_encryption_key(&self) -> &Option<String>
pub fn get_encryption_key(&self) -> &Option<String>
The key used to encrypt the domain.
sourcepub fn build(self) -> DomainSummary
pub fn build(self) -> DomainSummary
Consumes the builder and constructs a DomainSummary
.
Trait Implementations§
source§impl Clone for DomainSummaryBuilder
impl Clone for DomainSummaryBuilder
source§fn clone(&self) -> DomainSummaryBuilder
fn clone(&self) -> DomainSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DomainSummaryBuilder
impl Debug for DomainSummaryBuilder
source§impl Default for DomainSummaryBuilder
impl Default for DomainSummaryBuilder
source§fn default() -> DomainSummaryBuilder
fn default() -> DomainSummaryBuilder
source§impl PartialEq for DomainSummaryBuilder
impl PartialEq for DomainSummaryBuilder
source§fn eq(&self, other: &DomainSummaryBuilder) -> bool
fn eq(&self, other: &DomainSummaryBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DomainSummaryBuilder
Auto Trait Implementations§
impl Freeze for DomainSummaryBuilder
impl RefUnwindSafe for DomainSummaryBuilder
impl Send for DomainSummaryBuilder
impl Sync for DomainSummaryBuilder
impl Unpin for DomainSummaryBuilder
impl UnwindSafe for DomainSummaryBuilder
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> 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