Class: Aws::ECR::Types::Layer
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::Layer
- Defined in:
- gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb
Overview
An object representing an Amazon ECR image layer.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#layer_availability ⇒ String
The availability status of the image layer.
-
#layer_digest ⇒ String
The
sha256
digest of the image layer. -
#layer_size ⇒ Integer
The size, in bytes, of the image layer.
-
#media_type ⇒ String
The media type of the layer, such as
application/vnd.docker.image.rootfs.diff.tar.gzip
orapplication/vnd.oci.image.layer.v1.tar+gzip
.
Instance Attribute Details
#layer_availability ⇒ String
The availability status of the image layer.
2498 2499 2500 2501 2502 2503 2504 2505 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2498 class Layer < Struct.new( :layer_digest, :layer_availability, :layer_size, :media_type) SENSITIVE = [] include Aws::Structure end |
#layer_digest ⇒ String
The sha256
digest of the image layer.
2498 2499 2500 2501 2502 2503 2504 2505 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2498 class Layer < Struct.new( :layer_digest, :layer_availability, :layer_size, :media_type) SENSITIVE = [] include Aws::Structure end |
#layer_size ⇒ Integer
The size, in bytes, of the image layer.
2498 2499 2500 2501 2502 2503 2504 2505 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2498 class Layer < Struct.new( :layer_digest, :layer_availability, :layer_size, :media_type) SENSITIVE = [] include Aws::Structure end |
#media_type ⇒ String
The media type of the layer, such as
application/vnd.docker.image.rootfs.diff.tar.gzip
or
application/vnd.oci.image.layer.v1.tar+gzip
.
2498 2499 2500 2501 2502 2503 2504 2505 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2498 class Layer < Struct.new( :layer_digest, :layer_availability, :layer_size, :media_type) SENSITIVE = [] include Aws::Structure end |