#[non_exhaustive]pub struct RepositoryCatalogDataInput { /* private fields */ }Expand description
An object that contains the catalog data for a repository. This data is publicly visible in the Amazon ECR Public Gallery.
Implementations§
source§impl RepositoryCatalogDataInput
impl RepositoryCatalogDataInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A short description of the contents of the repository. This text appears in both the image details and also when searching for repositories on the Amazon ECR Public Gallery.
sourcepub fn architectures(&self) -> Option<&[String]>
pub fn architectures(&self) -> Option<&[String]>
The system architecture that the images in the repository are compatible with. On the Amazon ECR Public Gallery, the following supported architectures appear as badges on the repository and are used as search filters.
If an unsupported tag is added to your repository catalog data, it's associated with the repository and can be retrieved using the API but isn't discoverable in the Amazon ECR Public Gallery.
-
ARM -
ARM 64 -
x86 -
x86-64
sourcepub fn operating_systems(&self) -> Option<&[String]>
pub fn operating_systems(&self) -> Option<&[String]>
The operating systems that the images in the repository are compatible with. On the Amazon ECR Public Gallery, the following supported operating systems appear as badges on the repository and are used as search filters.
If an unsupported tag is added to your repository catalog data, it's associated with the repository and can be retrieved using the API but isn't discoverable in the Amazon ECR Public Gallery.
-
Linux -
Windows
sourcepub fn logo_image_blob(&self) -> Option<&Blob>
pub fn logo_image_blob(&self) -> Option<&Blob>
The base64-encoded repository logo payload.
The repository logo is only publicly visible in the Amazon ECR Public Gallery for verified accounts.
sourcepub fn about_text(&self) -> Option<&str>
pub fn about_text(&self) -> Option<&str>
A detailed description of the contents of the repository. It's publicly visible in the Amazon ECR Public Gallery. The text must be in markdown format.
sourcepub fn usage_text(&self) -> Option<&str>
pub fn usage_text(&self) -> Option<&str>
Detailed information about how to use the contents of the repository. It's publicly visible in the Amazon ECR Public Gallery. The usage text provides context, support information, and additional usage details for users of the repository. The text must be in markdown format.
source§impl RepositoryCatalogDataInput
impl RepositoryCatalogDataInput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RepositoryCatalogDataInput.
Trait Implementations§
source§impl Clone for RepositoryCatalogDataInput
impl Clone for RepositoryCatalogDataInput
source§fn clone(&self) -> RepositoryCatalogDataInput
fn clone(&self) -> RepositoryCatalogDataInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for RepositoryCatalogDataInput
impl Debug for RepositoryCatalogDataInput
source§impl PartialEq<RepositoryCatalogDataInput> for RepositoryCatalogDataInput
impl PartialEq<RepositoryCatalogDataInput> for RepositoryCatalogDataInput
source§fn eq(&self, other: &RepositoryCatalogDataInput) -> bool
fn eq(&self, other: &RepositoryCatalogDataInput) -> bool
self and other values to be equal, and is used
by ==.