Struct aws_sdk_ecr::operation::describe_image_replication_status::builders::DescribeImageReplicationStatusFluentBuilder
source · pub struct DescribeImageReplicationStatusFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to DescribeImageReplicationStatus.
Returns the replication status for a specified image.
Implementations§
source§impl DescribeImageReplicationStatusFluentBuilder
impl DescribeImageReplicationStatusFluentBuilder
sourcepub fn as_input(&self) -> &DescribeImageReplicationStatusInputBuilder
pub fn as_input(&self) -> &DescribeImageReplicationStatusInputBuilder
Access the DescribeImageReplicationStatus as a reference.
sourcepub async fn send(
self,
) -> Result<DescribeImageReplicationStatusOutput, SdkError<DescribeImageReplicationStatusError, HttpResponse>>
pub async fn send( self, ) -> Result<DescribeImageReplicationStatusOutput, SdkError<DescribeImageReplicationStatusError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self,
) -> CustomizableOperation<DescribeImageReplicationStatusOutput, DescribeImageReplicationStatusError, Self>
pub fn customize( self, ) -> CustomizableOperation<DescribeImageReplicationStatusOutput, DescribeImageReplicationStatusError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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.
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.
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.
Trait Implementations§
source§impl Clone for DescribeImageReplicationStatusFluentBuilder
impl Clone for DescribeImageReplicationStatusFluentBuilder
source§fn clone(&self) -> DescribeImageReplicationStatusFluentBuilder
fn clone(&self) -> DescribeImageReplicationStatusFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl Freeze for DescribeImageReplicationStatusFluentBuilder
impl !RefUnwindSafe for DescribeImageReplicationStatusFluentBuilder
impl Send for DescribeImageReplicationStatusFluentBuilder
impl Sync for DescribeImageReplicationStatusFluentBuilder
impl Unpin for DescribeImageReplicationStatusFluentBuilder
impl !UnwindSafe for DescribeImageReplicationStatusFluentBuilder
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