Class: Aws::GameLift::Types::ContainerAttribute
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::ContainerAttribute
- 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
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.
589 590 591 592 593 594 |
# File 'lib/aws-sdk-gamelift/types.rb', line 589 class ContainerAttribute < 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.
589 590 591 592 593 594 |
# File 'lib/aws-sdk-gamelift/types.rb', line 589 class ContainerAttribute < Struct.new( :container_name, :container_runtime_id) SENSITIVE = [] include Aws::Structure end |