Class: Aws::ECR::Types::Layer
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::Layer
- Includes:
- Structure
- Defined in:
- 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` or `application/vnd.oci.image.layer.v1.tar+gzip`.
Instance Attribute Details
#layer_availability ⇒ String
The availability status of the image layer.
2501 2502 2503 2504 2505 2506 2507 2508 |
# File 'lib/aws-sdk-ecr/types.rb', line 2501 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.
2501 2502 2503 2504 2505 2506 2507 2508 |
# File 'lib/aws-sdk-ecr/types.rb', line 2501 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.
2501 2502 2503 2504 2505 2506 2507 2508 |
# File 'lib/aws-sdk-ecr/types.rb', line 2501 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`.
2501 2502 2503 2504 2505 2506 2507 2508 |
# File 'lib/aws-sdk-ecr/types.rb', line 2501 class Layer < Struct.new( :layer_digest, :layer_availability, :layer_size, :media_type) SENSITIVE = [] include Aws::Structure end |