Class: Aws::ECRPublic::Types::CreateRepositoryRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECRPublic::Types::CreateRepositoryRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ecrpublic/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#catalog_data ⇒ Types::RepositoryCatalogDataInput
The details about the repository that are publicly visible in the Amazon ECR Public Gallery.
-
#repository_name ⇒ String
The name to use for the repository.
-
#tags ⇒ Array<Types::Tag>
The metadata that you apply to each repository to help categorize and organize your repositories.
Instance Attribute Details
#catalog_data ⇒ Types::RepositoryCatalogDataInput
The details about the repository that are publicly visible in the Amazon ECR Public Gallery.
207 208 209 210 211 212 213 |
# File 'lib/aws-sdk-ecrpublic/types.rb', line 207 class CreateRepositoryRequest < Struct.new( :repository_name, :catalog_data, :tags) SENSITIVE = [] include Aws::Structure end |
#repository_name ⇒ String
The name to use for the repository. This appears publicly in the Amazon ECR Public Gallery. The repository name can be specified on its own (for example ‘nginx-web-app`) or prepended with a namespace to group the repository into a category (for example `project-a/nginx-web-app`).
207 208 209 210 211 212 213 |
# File 'lib/aws-sdk-ecrpublic/types.rb', line 207 class CreateRepositoryRequest < Struct.new( :repository_name, :catalog_data, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The metadata that you apply to each repository to help categorize and organize your repositories. Each tag consists of a key and an optional value. You define both of them. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
207 208 209 210 211 212 213 |
# File 'lib/aws-sdk-ecrpublic/types.rb', line 207 class CreateRepositoryRequest < Struct.new( :repository_name, :catalog_data, :tags) SENSITIVE = [] include Aws::Structure end |