#[non_exhaustive]pub struct GetRegistryInputBuilder { /* private fields */ }Expand description
A builder for GetRegistryInput.
Implementations§
source§impl GetRegistryInputBuilder
impl GetRegistryInputBuilder
sourcepub fn registry_id(self, input: RegistryId) -> Self
pub fn registry_id(self, input: RegistryId) -> Self
This is a wrapper structure that may contain the registry name and Amazon Resource Name (ARN).
This field is required.sourcepub fn set_registry_id(self, input: Option<RegistryId>) -> Self
pub fn set_registry_id(self, input: Option<RegistryId>) -> Self
This is a wrapper structure that may contain the registry name and Amazon Resource Name (ARN).
sourcepub fn get_registry_id(&self) -> &Option<RegistryId>
pub fn get_registry_id(&self) -> &Option<RegistryId>
This is a wrapper structure that may contain the registry name and Amazon Resource Name (ARN).
sourcepub fn build(self) -> Result<GetRegistryInput, BuildError>
pub fn build(self) -> Result<GetRegistryInput, BuildError>
Consumes the builder and constructs a GetRegistryInput.
source§impl GetRegistryInputBuilder
impl GetRegistryInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<GetRegistryOutput, SdkError<GetRegistryError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<GetRegistryOutput, SdkError<GetRegistryError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetRegistryInputBuilder
impl Clone for GetRegistryInputBuilder
source§fn clone(&self) -> GetRegistryInputBuilder
fn clone(&self) -> GetRegistryInputBuilder
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 GetRegistryInputBuilder
impl Debug for GetRegistryInputBuilder
source§impl Default for GetRegistryInputBuilder
impl Default for GetRegistryInputBuilder
source§fn default() -> GetRegistryInputBuilder
fn default() -> GetRegistryInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetRegistryInputBuilder
impl PartialEq for GetRegistryInputBuilder
source§fn eq(&self, other: &GetRegistryInputBuilder) -> bool
fn eq(&self, other: &GetRegistryInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetRegistryInputBuilder
Auto Trait Implementations§
impl Freeze for GetRegistryInputBuilder
impl RefUnwindSafe for GetRegistryInputBuilder
impl Send for GetRegistryInputBuilder
impl Sync for GetRegistryInputBuilder
impl Unpin for GetRegistryInputBuilder
impl UnwindSafe for GetRegistryInputBuilder
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
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.