Struct aws_sdk_securityhub::model::AwsEcrContainerImageDetails [−][src]
#[non_exhaustive]pub struct AwsEcrContainerImageDetails {
pub registry_id: Option<String>,
pub repository_name: Option<String>,
pub architecture: Option<String>,
pub image_digest: Option<String>,
pub image_tags: Option<Vec<String>>,
pub image_published_at: Option<String>,
}
Expand description
Information about an Amazon ECR 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.registry_id: Option<String>
The Amazon Web Services account identifier that is associated with the registry that the image belongs to.
repository_name: Option<String>
The name of the repository that the image belongs to.
architecture: Option<String>
The architecture of the image.
image_digest: Option<String>
The sha256 digest of the image manifest.
The list of tags that are associated with the image.
image_published_at: Option<String>
The date and time when the image was pushed to the repository.
Uses the date-time
format specified in RFC 3339 section 5.6, Internet
Date/Time Format. The value cannot contain spaces. For example,
2020-03-22T13:22:13.933Z
.
Implementations
The Amazon Web Services account identifier that is associated with the registry that the image belongs to.
The name of the repository that the image belongs to.
The architecture of the image.
The sha256 digest of the image manifest.
The list of tags that are associated with the image.
The date and time when the image was pushed to the repository.
Uses the date-time
format specified in RFC 3339 section 5.6, Internet
Date/Time Format. The value cannot contain spaces. For example,
2020-03-22T13:22:13.933Z
.
Creates a new builder-style object to manufacture AwsEcrContainerImageDetails
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for AwsEcrContainerImageDetails
impl Send for AwsEcrContainerImageDetails
impl Sync for AwsEcrContainerImageDetails
impl Unpin for AwsEcrContainerImageDetails
impl UnwindSafe for AwsEcrContainerImageDetails
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more