#[non_exhaustive]pub struct GetRegistryOutputBuilder { /* private fields */ }Expand description
A builder for GetRegistryOutput.
Implementations§
source§impl GetRegistryOutputBuilder
impl GetRegistryOutputBuilder
sourcepub fn registry_name(self, input: impl Into<String>) -> Self
pub fn registry_name(self, input: impl Into<String>) -> Self
The name of the registry.
sourcepub fn set_registry_name(self, input: Option<String>) -> Self
pub fn set_registry_name(self, input: Option<String>) -> Self
The name of the registry.
sourcepub fn get_registry_name(&self) -> &Option<String>
pub fn get_registry_name(&self) -> &Option<String>
The name of the registry.
sourcepub fn registry_arn(self, input: impl Into<String>) -> Self
pub fn registry_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the registry.
sourcepub fn set_registry_arn(self, input: Option<String>) -> Self
pub fn set_registry_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the registry.
sourcepub fn get_registry_arn(&self) -> &Option<String>
pub fn get_registry_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the registry.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the registry.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the registry.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A description of the registry.
sourcepub fn status(self, input: RegistryStatus) -> Self
pub fn status(self, input: RegistryStatus) -> Self
The status of the registry.
sourcepub fn set_status(self, input: Option<RegistryStatus>) -> Self
pub fn set_status(self, input: Option<RegistryStatus>) -> Self
The status of the registry.
sourcepub fn get_status(&self) -> &Option<RegistryStatus>
pub fn get_status(&self) -> &Option<RegistryStatus>
The status of the registry.
sourcepub fn created_time(self, input: impl Into<String>) -> Self
pub fn created_time(self, input: impl Into<String>) -> Self
The date and time the registry was created.
sourcepub fn set_created_time(self, input: Option<String>) -> Self
pub fn set_created_time(self, input: Option<String>) -> Self
The date and time the registry was created.
sourcepub fn get_created_time(&self) -> &Option<String>
pub fn get_created_time(&self) -> &Option<String>
The date and time the registry was created.
sourcepub fn updated_time(self, input: impl Into<String>) -> Self
pub fn updated_time(self, input: impl Into<String>) -> Self
The date and time the registry was updated.
sourcepub fn set_updated_time(self, input: Option<String>) -> Self
pub fn set_updated_time(self, input: Option<String>) -> Self
The date and time the registry was updated.
sourcepub fn get_updated_time(&self) -> &Option<String>
pub fn get_updated_time(&self) -> &Option<String>
The date and time the registry was updated.
sourcepub fn build(self) -> GetRegistryOutput
pub fn build(self) -> GetRegistryOutput
Consumes the builder and constructs a GetRegistryOutput.
Trait Implementations§
source§impl Clone for GetRegistryOutputBuilder
impl Clone for GetRegistryOutputBuilder
source§fn clone(&self) -> GetRegistryOutputBuilder
fn clone(&self) -> GetRegistryOutputBuilder
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 GetRegistryOutputBuilder
impl Debug for GetRegistryOutputBuilder
source§impl Default for GetRegistryOutputBuilder
impl Default for GetRegistryOutputBuilder
source§fn default() -> GetRegistryOutputBuilder
fn default() -> GetRegistryOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<GetRegistryOutputBuilder> for GetRegistryOutputBuilder
impl PartialEq<GetRegistryOutputBuilder> for GetRegistryOutputBuilder
source§fn eq(&self, other: &GetRegistryOutputBuilder) -> bool
fn eq(&self, other: &GetRegistryOutputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetRegistryOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for GetRegistryOutputBuilder
impl Send for GetRegistryOutputBuilder
impl Sync for GetRegistryOutputBuilder
impl Unpin for GetRegistryOutputBuilder
impl UnwindSafe for GetRegistryOutputBuilder
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