aws-cdk-lib.aws_ecr.CfnPublicRepository.RepositoryCatalogDataProperty

interface RepositoryCatalogDataProperty

LanguageType name
.NETAmazon.CDK.AWS.ECR.CfnPublicRepository.RepositoryCatalogDataProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsecr#CfnPublicRepository_RepositoryCatalogDataProperty
Javasoftware.amazon.awscdk.services.ecr.CfnPublicRepository.RepositoryCatalogDataProperty
Pythonaws_cdk.aws_ecr.CfnPublicRepository.RepositoryCatalogDataProperty
TypeScript aws-cdk-lib » aws_ecr » CfnPublicRepository » RepositoryCatalogDataProperty

The details about the repository that are publicly visible in the Amazon ECR Public Gallery.

For more information, see Amazon ECR Public repository catalog data in the Amazon ECR Public User Guide .

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecr as ecr } from 'aws-cdk-lib';
const repositoryCatalogDataProperty: ecr.CfnPublicRepository.RepositoryCatalogDataProperty = {
  aboutText: 'aboutText',
  architectures: ['architectures'],
  operatingSystems: ['operatingSystems'],
  repositoryDescription: 'repositoryDescription',
  usageText: 'usageText',
};

Properties

NameTypeDescription
aboutText?stringThe longform description of the contents of the repository.
architectures?string[]The architecture tags that are associated with the repository.
operatingSystems?string[]The operating system tags that are associated with the repository.
repositoryDescription?stringThe short description of the repository.
usageText?stringThe longform usage details of the contents of the repository.

aboutText?

Type: string (optional)

The longform description of the contents of the repository.

This text appears in the repository details on the Amazon ECR Public Gallery.


architectures?

Type: string[] (optional)

The architecture tags that are associated with the repository.


operatingSystems?

Type: string[] (optional)

The operating system tags that are associated with the repository.


repositoryDescription?

Type: string (optional)

The short description of the repository.


usageText?

Type: string (optional)

The longform usage details of the contents of the repository.

The usage text provides context for users of the repository.