Class: Aws::Lightsail::Types::ContainerImage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::ContainerImage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lightsail/types.rb
Overview
Describes a container image that is registered to an Amazon Lightsail container service.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#created_at ⇒ Time
The timestamp when the container image was created.
-
#digest ⇒ String
The digest of the container image.
-
#image ⇒ String
The name of the container image.
Instance Attribute Details
#created_at ⇒ Time
The timestamp when the container image was created.
2096 2097 2098 2099 2100 2101 2102 |
# File 'lib/aws-sdk-lightsail/types.rb', line 2096 class ContainerImage < Struct.new( :image, :digest, :created_at) SENSITIVE = [] include Aws::Structure end |
#digest ⇒ String
The digest of the container image.
2096 2097 2098 2099 2100 2101 2102 |
# File 'lib/aws-sdk-lightsail/types.rb', line 2096 class ContainerImage < Struct.new( :image, :digest, :created_at) SENSITIVE = [] include Aws::Structure end |
#image ⇒ String
The name of the container image.
2096 2097 2098 2099 2100 2101 2102 |
# File 'lib/aws-sdk-lightsail/types.rb', line 2096 class ContainerImage < Struct.new( :image, :digest, :created_at) SENSITIVE = [] include Aws::Structure end |