pub struct EcrClient<'a> { /* private fields */ }Implementations§
Source§impl EcrClient<'_>
impl EcrClient<'_>
Sourcepub async fn get_images(&self) -> Result<EcrImagesResponse, Error>
pub async fn get_images(&self) -> Result<EcrImagesResponse, Error>
List every ECR image across every repository.
Sourcepub async fn get_repositories(&self) -> Result<EcrRepositoriesResponse, Error>
pub async fn get_repositories(&self) -> Result<EcrRepositoriesResponse, Error>
List every ECR repository.
Sourcepub async fn get_pull_through_rules(
&self,
) -> Result<EcrPullThroughRulesResponse, Error>
pub async fn get_pull_through_rules( &self, ) -> Result<EcrPullThroughRulesResponse, Error>
List configured ECR pull-through-cache rules.
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for EcrClient<'a>
impl<'a> !UnwindSafe for EcrClient<'a>
impl<'a> Freeze for EcrClient<'a>
impl<'a> Send for EcrClient<'a>
impl<'a> Sync for EcrClient<'a>
impl<'a> Unpin for EcrClient<'a>
impl<'a> UnsafeUnpin for EcrClient<'a>
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