Class: Aws::Lightsail::Types::DeleteContainerImageRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::DeleteContainerImageRequest
- Defined in:
- gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#image ⇒ String
The name of the container image to delete from the container service.
-
#service_name ⇒ String
The name of the container service for which to delete a registered container image.
Instance Attribute Details
#image ⇒ String
The name of the container image to delete from the container service.
Use the GetContainerImages action to get the name of the container
images that are registered to a container service.
:).
For example, :container-service-1.mystaticwebsite.1. Container
images sourced from a public registry like Docker Hub don't start
with a colon. For example, nginx:latest or nginx.
5072 5073 5074 5075 5076 5077 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 5072 class DeleteContainerImageRequest < Struct.new( :service_name, :image) SENSITIVE = [] include Aws::Structure end |
#service_name ⇒ String
The name of the container service for which to delete a registered container image.
5072 5073 5074 5075 5076 5077 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 5072 class DeleteContainerImageRequest < Struct.new( :service_name, :image) SENSITIVE = [] include Aws::Structure end |