Class: Aws::GameLift::Types::ContainerIdentifier

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

Overview

A unique identifier for a container in a compute on a managed container fleet instance. This information makes it possible to remotely connect to a specific container on a fleet instance.

**Related to:** ContainerAttribute

Use with: GetComputeAccess

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)


1165
1166
1167
1168
1169
1170
# File 'lib/aws-sdk-gamelift/types.rb', line 1165

class ContainerIdentifier < 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. It is returned as a ‘ContainerAttribute` value in a `Compute` object.

Returns:

  • (String)


1165
1166
1167
1168
1169
1170
# File 'lib/aws-sdk-gamelift/types.rb', line 1165

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