Class: Aws::ECR::Types::Repository

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

Overview

An object representing a repository.

Instance Attribute Summary collapse

Instance Attribute Details

#created_atTime

The date and time, in JavaScript date/time format, when the repository was created.

Returns:

  • (Time)


1132
1133
1134
1135
1136
1137
1138
1139
# File 'lib/aws-sdk-ecr/types.rb', line 1132

class Repository < Struct.new(
  :repository_arn,
  :registry_id,
  :repository_name,
  :repository_uri,
  :created_at)
  include Aws::Structure
end

#registry_idString

The AWS account ID associated with the registry that contains the repository.

Returns:

  • (String)


1132
1133
1134
1135
1136
1137
1138
1139
# File 'lib/aws-sdk-ecr/types.rb', line 1132

class Repository < Struct.new(
  :repository_arn,
  :registry_id,
  :repository_name,
  :repository_uri,
  :created_at)
  include Aws::Structure
end

#repository_arnString

The Amazon Resource Name (ARN) that identifies the repository. The ARN contains the ‘arn:aws:ecr` namespace, followed by the region of the repository, the AWS account ID of the repository owner, the repository namespace, and then the repository name. For example, `arn:aws:ecr:region:012345678910:repository/test`.

Returns:

  • (String)


1132
1133
1134
1135
1136
1137
1138
1139
# File 'lib/aws-sdk-ecr/types.rb', line 1132

class Repository < Struct.new(
  :repository_arn,
  :registry_id,
  :repository_name,
  :repository_uri,
  :created_at)
  include Aws::Structure
end

#repository_nameString

The name of the repository.

Returns:

  • (String)


1132
1133
1134
1135
1136
1137
1138
1139
# File 'lib/aws-sdk-ecr/types.rb', line 1132

class Repository < Struct.new(
  :repository_arn,
  :registry_id,
  :repository_name,
  :repository_uri,
  :created_at)
  include Aws::Structure
end

#repository_uriString

The URI for the repository. You can use this URI for Docker ‘push` and `pull` operations.

Returns:

  • (String)


1132
1133
1134
1135
1136
1137
1138
1139
# File 'lib/aws-sdk-ecr/types.rb', line 1132

class Repository < Struct.new(
  :repository_arn,
  :registry_id,
  :repository_name,
  :repository_uri,
  :created_at)
  include Aws::Structure
end