Struct aws_sdk_apprunner::model::ImageRepository
source · [−]#[non_exhaustive]pub struct ImageRepository {
pub image_identifier: Option<String>,
pub image_configuration: Option<ImageConfiguration>,
pub image_repository_type: Option<ImageRepositoryType>,
}
Expand description
Describes a source image repository.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.image_identifier: Option<String>
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.
image_configuration: Option<ImageConfiguration>
Configuration for running the identified image.
image_repository_type: Option<ImageRepositoryType>
The type of the image repository. This reflects the repository provider and whether the repository is private or public.
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 more
sourceimpl 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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ImageRepository) -> bool
fn ne(&self, other: &ImageRepository) -> bool
This method tests for !=
.
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more