Class: Aws::GameLift::Types::DescribeComputeInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::DescribeComputeInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamelift/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#compute_name ⇒ String
The unique identifier of the compute resource to retrieve properties for.
-
#fleet_id ⇒ String
A unique identifier for the fleet that the compute belongs to.
Instance Attribute Details
#compute_name ⇒ String
The unique identifier of the compute resource to retrieve properties for. For a managed container fleet or Anywhere fleet, use a compute name. For an EC2 fleet, use an instance ID. To retrieve a fleet’s compute identifiers, call [ListCompute].
[1]: docs.aws.amazon.com/gamelift/latest/apireference/API_ListCompute.html
3647 3648 3649 3650 3651 3652 |
# File 'lib/aws-sdk-gamelift/types.rb', line 3647 class DescribeComputeInput < Struct.new( :fleet_id, :compute_name) SENSITIVE = [] include Aws::Structure end |
#fleet_id ⇒ String
A unique identifier for the fleet that the compute belongs to. You can use either the fleet ID or ARN value.
3647 3648 3649 3650 3651 3652 |
# File 'lib/aws-sdk-gamelift/types.rb', line 3647 class DescribeComputeInput < Struct.new( :fleet_id, :compute_name) SENSITIVE = [] include Aws::Structure end |