Class: Aws::GroundStation::Types::AgentDetails

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-groundstation/types.rb

Overview

Detailed information about the agent.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#agent_cpu_coresArray<Integer>

List of CPU cores reserved for the agent.

Returns:

  • (Array<Integer>)


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_versionString

Current agent version.

Returns:

  • (String)


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_versionsArray<Types::ComponentVersion>

List of versions being used by agent components.

Returns:



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_idString

ID of EC2 instance agent is running on.

Returns:

  • (String)


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_typeString

Type of EC2 instance agent is running on.

Returns:

  • (String)


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_coresArray<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.

Returns:

  • (Array<Integer>)


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