Class: Aws::ECR::Types::CreateRepositoryRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ecr/types.rb

Overview

Note:

When making an API call, you may pass CreateRepositoryRequest data as a hash:

{
  repository_name: "RepositoryName", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#repository_nameString

The name to use for the repository. The repository name may be specified on its own (such as ‘nginx-web-app`) or it can be prepended with a namespace to group the repository into a category (such as `project-a/nginx-web-app`).

Returns:

  • (String)


296
297
298
299
# File 'lib/aws-sdk-ecr/types.rb', line 296

class CreateRepositoryRequest < Struct.new(
  :repository_name)
  include Aws::Structure
end