Class: Aws::Lightsail::Types::Container

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

Overview

Describes the settings of a container that will be launched, or that is launched, to an Amazon Lightsail container service.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#commandArray<String>

The launch command for the container.

Returns:

  • (Array<String>)


2070
2071
2072
2073
2074
2075
2076
2077
# File 'lib/aws-sdk-lightsail/types.rb', line 2070

class Container < Struct.new(
  :image,
  :command,
  :environment,
  :ports)
  SENSITIVE = []
  include Aws::Structure
end

#environmentHash<String,String>

The environment variables of the container.

Returns:

  • (Hash<String,String>)


2070
2071
2072
2073
2074
2075
2076
2077
# File 'lib/aws-sdk-lightsail/types.rb', line 2070

class Container < Struct.new(
  :image,
  :command,
  :environment,
  :ports)
  SENSITIVE = []
  include Aws::Structure
end

#imageString

The name of the image used for the container.

Container images sourced from your Lightsail container service, that are registered and stored on your service, start with a colon (‘:`). For example, if your container service name is `container-service-1`, the container image label is `mystaticsite`, and you want to use the third (`3`) version of the registered container image, then you should specify `:container-service-1.mystaticsite.3`. To use the latest version of a container image, specify `latest` instead of a version number (for example, `:container-service-1.mystaticsite.latest`). Lightsail will automatically use the highest numbered version of the registered container image.

Container images sourced from a public registry like Docker Hub don’t start with a colon. For example, ‘nginx:latest` or `nginx`.

Returns:

  • (String)


2070
2071
2072
2073
2074
2075
2076
2077
# File 'lib/aws-sdk-lightsail/types.rb', line 2070

class Container < Struct.new(
  :image,
  :command,
  :environment,
  :ports)
  SENSITIVE = []
  include Aws::Structure
end

#portsHash<String,String>

The open firewall ports of the container.

Returns:

  • (Hash<String,String>)


2070
2071
2072
2073
2074
2075
2076
2077
# File 'lib/aws-sdk-lightsail/types.rb', line 2070

class Container < Struct.new(
  :image,
  :command,
  :environment,
  :ports)
  SENSITIVE = []
  include Aws::Structure
end