Class: Aws::Lightsail::Types::DeleteContainerImageRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lightsail/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#imageString

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.

<note markdown=“1”> Container images sourced from your Lightsail container service, that are registered and stored on your service, start with a colon (‘:`). 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`.

</note>

Returns:

  • (String)


4958
4959
4960
4961
4962
4963
# File 'lib/aws-sdk-lightsail/types.rb', line 4958

class DeleteContainerImageRequest < Struct.new(
  :service_name,
  :image)
  SENSITIVE = []
  include Aws::Structure
end

#service_nameString

The name of the container service for which to delete a registered container image.

Returns:

  • (String)


4958
4959
4960
4961
4962
4963
# File 'lib/aws-sdk-lightsail/types.rb', line 4958

class DeleteContainerImageRequest < Struct.new(
  :service_name,
  :image)
  SENSITIVE = []
  include Aws::Structure
end