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
source§impl PartialEq for AwsEcrContainerImageDetails
impl PartialEq for AwsEcrContainerImageDetails
source§fn eq(&self, other: &AwsEcrContainerImageDetails) -> bool
fn eq(&self, other: &AwsEcrContainerImageDetails) -> bool
self
and other
values to be equal, and is used
by ==
.