Class: Aws::GameLift::Types::ContainerAttribute

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

Overview

A unique identifier for a container in a container fleet compute.

**Returned by:** [DescribeCompute]

[1]: docs.aws.amazon.com/gamelift/latest/apireference/API_DescribeCompute.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#container_nameString

The identifier for a container that’s running in a compute.

Returns:

  • (String)


599
600
601
602
603
604
# File 'lib/aws-sdk-gamelift/types.rb', line 599

class ContainerAttribute < Struct.new(
  :container_name,
  :container_runtime_id)
  SENSITIVE = []
  include Aws::Structure
end

#container_runtime_idString

The runtime ID for the container that’s running in a compute. This value is unique within the compute.

Returns:

  • (String)


599
600
601
602
603
604
# File 'lib/aws-sdk-gamelift/types.rb', line 599

class ContainerAttribute < Struct.new(
  :container_name,
  :container_runtime_id)
  SENSITIVE = []
  include Aws::Structure
end