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 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 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 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 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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
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
Returns the “default value” for a type. Read more
source§impl PartialEq<DomainSummaryBuilder> for DomainSummaryBuilder
impl PartialEq<DomainSummaryBuilder> for DomainSummaryBuilder
source§fn eq(&self, other: &DomainSummaryBuilder) -> bool
fn eq(&self, other: &DomainSummaryBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DomainSummaryBuilder
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more