Class: Aws::ECRPublic::Types::Layer
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECRPublic::Types::Layer
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ecrpublic/types.rb
Overview
An object that represents 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.
1060 1061 1062 1063 1064 1065 1066 1067 |
# File 'lib/aws-sdk-ecrpublic/types.rb', line 1060 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.
1060 1061 1062 1063 1064 1065 1066 1067 |
# File 'lib/aws-sdk-ecrpublic/types.rb', line 1060 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.
1060 1061 1062 1063 1064 1065 1066 1067 |
# File 'lib/aws-sdk-ecrpublic/types.rb', line 1060 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`.
1060 1061 1062 1063 1064 1065 1066 1067 |
# File 'lib/aws-sdk-ecrpublic/types.rb', line 1060 class Layer < Struct.new( :layer_digest, :layer_availability, :layer_size, :media_type) SENSITIVE = [] include Aws::Structure end |