Class: Aws::ECS::Types::VersionInfo

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

Overview

The Docker and Amazon ECS container agent version information about a container instance.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#agent_hashString

The Git commit hash for the Amazon ECS container agent build on the

amazon-ecs-agent ][1

GitHub repository.

[1]: github.com/aws/amazon-ecs-agent/commits/master

Returns:

  • (String)


12591
12592
12593
12594
12595
12596
12597
# File 'lib/aws-sdk-ecs/types.rb', line 12591

class VersionInfo < Struct.new(
  :agent_version,
  :agent_hash,
  :docker_version)
  SENSITIVE = []
  include Aws::Structure
end

#agent_versionString

The version number of the Amazon ECS container agent.

Returns:

  • (String)


12591
12592
12593
12594
12595
12596
12597
# File 'lib/aws-sdk-ecs/types.rb', line 12591

class VersionInfo < Struct.new(
  :agent_version,
  :agent_hash,
  :docker_version)
  SENSITIVE = []
  include Aws::Structure
end

#docker_versionString

The Docker version that’s running on the container instance.

Returns:

  • (String)


12591
12592
12593
12594
12595
12596
12597
# File 'lib/aws-sdk-ecs/types.rb', line 12591

class VersionInfo < Struct.new(
  :agent_version,
  :agent_hash,
  :docker_version)
  SENSITIVE = []
  include Aws::Structure
end