Class: Aws::GameLift::Types::ContainerIdentifier
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::ContainerIdentifier
- 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]
[1]: docs.aws.amazon.com/gamelift/latest/apireference/API_ContainerAttribute.html [2]: docs.aws.amazon.com/gamelift/latest/apireference/API_GetComputeAccess.html
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.
1205 1206 1207 1208 1209 1210 |
# File 'lib/aws-sdk-gamelift/types.rb', line 1205 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.
1205 1206 1207 1208 1209 1210 |
# File 'lib/aws-sdk-gamelift/types.rb', line 1205 class ContainerIdentifier < Struct.new( :container_name, :container_runtime_id) SENSITIVE = [] include Aws::Structure end |