Class: Aws::GameLift::Types::ContainerIdentifier
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::ContainerIdentifier
- Defined in:
- gems/aws-sdk-gamelift/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
-
#container_name ⇒ String
The identifier for a container that's running in a compute.
-
#container_runtime_id ⇒ String
The runtime ID for the container that's running in a compute.
Instance Attribute Details
#container_name ⇒ String
The identifier for a container that's running in a compute.
1165 1166 1167 1168 1169 1170 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 1165 class ContainerIdentifier < Struct.new( :container_name, :container_runtime_id) SENSITIVE = [] include Aws::Structure end |
#container_runtime_id ⇒ String
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.
1165 1166 1167 1168 1169 1170 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 1165 class ContainerIdentifier < Struct.new( :container_name, :container_runtime_id) SENSITIVE = [] include Aws::Structure end |