Struct aws_sdk_ecr::operation::describe_image_replication_status::builders::DescribeImageReplicationStatusInputBuilder
source · #[non_exhaustive]pub struct DescribeImageReplicationStatusInputBuilder { /* private fields */ }Expand description
A builder for DescribeImageReplicationStatusInput.
Implementations§
source§impl DescribeImageReplicationStatusInputBuilder
impl DescribeImageReplicationStatusInputBuilder
sourcepub fn repository_name(self, input: impl Into<String>) -> Self
pub fn repository_name(self, input: impl Into<String>) -> Self
The name of the repository that the image is in.
This field is required.sourcepub fn set_repository_name(self, input: Option<String>) -> Self
pub fn set_repository_name(self, input: Option<String>) -> Self
The name of the repository that the image is in.
sourcepub fn get_repository_name(&self) -> &Option<String>
pub fn get_repository_name(&self) -> &Option<String>
The name of the repository that the image is in.
sourcepub fn image_id(self, input: ImageIdentifier) -> Self
pub fn image_id(self, input: ImageIdentifier) -> Self
An object with identifying information for an image in an Amazon ECR repository.
This field is required.sourcepub fn set_image_id(self, input: Option<ImageIdentifier>) -> Self
pub fn set_image_id(self, input: Option<ImageIdentifier>) -> Self
An object with identifying information for an image in an Amazon ECR repository.
sourcepub fn get_image_id(&self) -> &Option<ImageIdentifier>
pub fn get_image_id(&self) -> &Option<ImageIdentifier>
An object with identifying information for an image in an Amazon ECR repository.
sourcepub fn registry_id(self, input: impl Into<String>) -> Self
pub fn registry_id(self, input: impl Into<String>) -> Self
The Amazon Web Services account ID associated with the registry. If you do not specify a registry, the default registry is assumed.
sourcepub fn set_registry_id(self, input: Option<String>) -> Self
pub fn set_registry_id(self, input: Option<String>) -> Self
The Amazon Web Services account ID associated with the registry. If you do not specify a registry, the default registry is assumed.
sourcepub fn get_registry_id(&self) -> &Option<String>
pub fn get_registry_id(&self) -> &Option<String>
The Amazon Web Services account ID associated with the registry. If you do not specify a registry, the default registry is assumed.
sourcepub fn build(self) -> Result<DescribeImageReplicationStatusInput, BuildError>
pub fn build(self) -> Result<DescribeImageReplicationStatusInput, BuildError>
Consumes the builder and constructs a DescribeImageReplicationStatusInput.
source§impl DescribeImageReplicationStatusInputBuilder
impl DescribeImageReplicationStatusInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<DescribeImageReplicationStatusOutput, SdkError<DescribeImageReplicationStatusError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<DescribeImageReplicationStatusOutput, SdkError<DescribeImageReplicationStatusError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DescribeImageReplicationStatusInputBuilder
impl Clone for DescribeImageReplicationStatusInputBuilder
source§fn clone(&self) -> DescribeImageReplicationStatusInputBuilder
fn clone(&self) -> DescribeImageReplicationStatusInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DescribeImageReplicationStatusInputBuilder
impl Default for DescribeImageReplicationStatusInputBuilder
source§fn default() -> DescribeImageReplicationStatusInputBuilder
fn default() -> DescribeImageReplicationStatusInputBuilder
source§impl PartialEq for DescribeImageReplicationStatusInputBuilder
impl PartialEq for DescribeImageReplicationStatusInputBuilder
source§fn eq(&self, other: &DescribeImageReplicationStatusInputBuilder) -> bool
fn eq(&self, other: &DescribeImageReplicationStatusInputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeImageReplicationStatusInputBuilder
Auto Trait Implementations§
impl Freeze for DescribeImageReplicationStatusInputBuilder
impl RefUnwindSafe for DescribeImageReplicationStatusInputBuilder
impl Send for DescribeImageReplicationStatusInputBuilder
impl Sync for DescribeImageReplicationStatusInputBuilder
impl Unpin for DescribeImageReplicationStatusInputBuilder
impl UnwindSafe for DescribeImageReplicationStatusInputBuilder
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