Class: Aws::GroundStation::Types::AgentDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::AgentDetails
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-groundstation/types.rb
Overview
Detailed information about the agent.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#agent_cpu_cores ⇒ Array<Integer>
List of CPU cores reserved for the agent.
-
#agent_version ⇒ String
Current agent version.
-
#component_versions ⇒ Array<Types::ComponentVersion>
List of versions being used by agent components.
-
#instance_id ⇒ String
ID of EC2 instance agent is running on.
-
#instance_type ⇒ String
Type of EC2 instance agent is running on.
-
#reserved_cpu_cores ⇒ Array<Integer>
<note markdown=“1”> This field should not be used.
Instance Attribute Details
#agent_cpu_cores ⇒ Array<Integer>
List of CPU cores reserved for the agent.
46 47 48 49 50 51 52 53 54 55 |
# File 'lib/aws-sdk-groundstation/types.rb', line 46 class AgentDetails < Struct.new( :agent_cpu_cores, :agent_version, :component_versions, :instance_id, :instance_type, :reserved_cpu_cores) SENSITIVE = [] include Aws::Structure end |
#agent_version ⇒ String
Current agent version.
46 47 48 49 50 51 52 53 54 55 |
# File 'lib/aws-sdk-groundstation/types.rb', line 46 class AgentDetails < Struct.new( :agent_cpu_cores, :agent_version, :component_versions, :instance_id, :instance_type, :reserved_cpu_cores) SENSITIVE = [] include Aws::Structure end |
#component_versions ⇒ Array<Types::ComponentVersion>
List of versions being used by agent components.
46 47 48 49 50 51 52 53 54 55 |
# File 'lib/aws-sdk-groundstation/types.rb', line 46 class AgentDetails < Struct.new( :agent_cpu_cores, :agent_version, :component_versions, :instance_id, :instance_type, :reserved_cpu_cores) SENSITIVE = [] include Aws::Structure end |
#instance_id ⇒ String
ID of EC2 instance agent is running on.
46 47 48 49 50 51 52 53 54 55 |
# File 'lib/aws-sdk-groundstation/types.rb', line 46 class AgentDetails < Struct.new( :agent_cpu_cores, :agent_version, :component_versions, :instance_id, :instance_type, :reserved_cpu_cores) SENSITIVE = [] include Aws::Structure end |
#instance_type ⇒ String
Type of EC2 instance agent is running on.
46 47 48 49 50 51 52 53 54 55 |
# File 'lib/aws-sdk-groundstation/types.rb', line 46 class AgentDetails < Struct.new( :agent_cpu_cores, :agent_version, :component_versions, :instance_id, :instance_type, :reserved_cpu_cores) SENSITIVE = [] include Aws::Structure end |
#reserved_cpu_cores ⇒ Array<Integer>
<note markdown=“1”> This field should not be used. Use agentCpuCores instead.
</note>
List of CPU cores reserved for processes other than the agent running on the EC2 instance.
46 47 48 49 50 51 52 53 54 55 |
# File 'lib/aws-sdk-groundstation/types.rb', line 46 class AgentDetails < Struct.new( :agent_cpu_cores, :agent_version, :component_versions, :instance_id, :instance_type, :reserved_cpu_cores) SENSITIVE = [] include Aws::Structure end |