Struct aws_sdk_apprunner::model::ImageRepository
source · [−]#[non_exhaustive]pub struct ImageRepository { /* private fields */ }
Expand description
Describes a source image repository.
Implementations
sourceimpl ImageRepository
impl ImageRepository
sourcepub fn image_identifier(&self) -> Option<&str>
pub fn image_identifier(&self) -> Option<&str>
The identifier of an image.
For an image in Amazon Elastic Container Registry (Amazon ECR), this is an image name. For the image name format, see Pulling an image in the Amazon ECR User Guide.
sourcepub fn image_configuration(&self) -> Option<&ImageConfiguration>
pub fn image_configuration(&self) -> Option<&ImageConfiguration>
Configuration for running the identified image.
sourcepub fn image_repository_type(&self) -> Option<&ImageRepositoryType>
pub fn image_repository_type(&self) -> Option<&ImageRepositoryType>
The type of the image repository. This reflects the repository provider and whether the repository is private or public.
sourceimpl ImageRepository
impl ImageRepository
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ImageRepository
.
Trait Implementations
sourceimpl Clone for ImageRepository
impl Clone for ImageRepository
sourcefn clone(&self) -> ImageRepository
fn clone(&self) -> ImageRepository
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ImageRepository
impl Debug for ImageRepository
sourceimpl PartialEq<ImageRepository> for ImageRepository
impl PartialEq<ImageRepository> for ImageRepository
sourcefn eq(&self, other: &ImageRepository) -> bool
fn eq(&self, other: &ImageRepository) -> bool
impl StructuralPartialEq for ImageRepository
Auto Trait Implementations
impl RefUnwindSafe for ImageRepository
impl Send for ImageRepository
impl Sync for ImageRepository
impl Unpin for ImageRepository
impl UnwindSafe for ImageRepository
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more