Struct aws_sdk_ecr::types::AwsEcrContainerImageDetails
source · #[non_exhaustive]pub struct AwsEcrContainerImageDetails {
pub architecture: Option<String>,
pub author: Option<String>,
pub image_hash: Option<String>,
pub image_tags: Option<Vec<String>>,
pub platform: Option<String>,
pub pushed_at: Option<DateTime>,
pub registry: Option<String>,
pub repository_name: Option<String>,
}Expand description
The image details of the Amazon ECR container image.
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.architecture: Option<String>The architecture of the Amazon ECR container image.
The image author of the Amazon ECR container image.
image_hash: Option<String>The image hash of the Amazon ECR container image.
The image tags attached to the Amazon ECR container image.
platform: Option<String>The platform of the Amazon ECR container image.
pushed_at: Option<DateTime>The date and time the Amazon ECR container image was pushed.
registry: Option<String>The registry the Amazon ECR container image belongs to.
repository_name: Option<String>The name of the repository the Amazon ECR container image resides in.
Implementations§
source§impl AwsEcrContainerImageDetails
impl AwsEcrContainerImageDetails
sourcepub fn architecture(&self) -> Option<&str>
pub fn architecture(&self) -> Option<&str>
The architecture of the Amazon ECR container image.
The image author of the Amazon ECR container image.
sourcepub fn image_hash(&self) -> Option<&str>
pub fn image_hash(&self) -> Option<&str>
The image hash of the Amazon ECR container image.
The image tags attached to the Amazon ECR container image.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .image_tags.is_none().
sourcepub fn pushed_at(&self) -> Option<&DateTime>
pub fn pushed_at(&self) -> Option<&DateTime>
The date and time the Amazon ECR container image was pushed.
sourcepub fn repository_name(&self) -> Option<&str>
pub fn repository_name(&self) -> Option<&str>
The name of the repository the Amazon ECR container image resides in.
source§impl AwsEcrContainerImageDetails
impl AwsEcrContainerImageDetails
sourcepub fn builder() -> AwsEcrContainerImageDetailsBuilder
pub fn builder() -> AwsEcrContainerImageDetailsBuilder
Creates a new builder-style object to manufacture AwsEcrContainerImageDetails.
Trait Implementations§
source§impl Clone for AwsEcrContainerImageDetails
impl Clone for AwsEcrContainerImageDetails
source§fn clone(&self) -> AwsEcrContainerImageDetails
fn clone(&self) -> AwsEcrContainerImageDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for AwsEcrContainerImageDetails
impl Debug for AwsEcrContainerImageDetails
impl StructuralPartialEq for AwsEcrContainerImageDetails
Auto Trait Implementations§
impl Freeze for AwsEcrContainerImageDetails
impl RefUnwindSafe for AwsEcrContainerImageDetails
impl Send for AwsEcrContainerImageDetails
impl Sync for AwsEcrContainerImageDetails
impl Unpin for AwsEcrContainerImageDetails
impl UnwindSafe for AwsEcrContainerImageDetails
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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