Class: Aws::ApplicationDiscoveryService::Types::AgentConfigurationStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationDiscoveryService::Types::AgentConfigurationStatus
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-applicationdiscoveryservice/types.rb
Overview
Information about agents that were instructed to start collecting data. Information includes the agent ID, a description of the operation, and whether the agent configuration was updated.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#agent_id ⇒ String
The agent ID.
-
#description ⇒ String
A description of the operation performed.
-
#operation_succeeded ⇒ Boolean
Information about the status of the ‘StartDataCollection` and `StopDataCollection` operations.
Instance Attribute Details
#agent_id ⇒ String
The agent ID.
32 33 34 35 36 37 38 |
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 32 class AgentConfigurationStatus < Struct.new( :agent_id, :operation_succeeded, :description) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description of the operation performed.
32 33 34 35 36 37 38 |
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 32 class AgentConfigurationStatus < Struct.new( :agent_id, :operation_succeeded, :description) SENSITIVE = [] include Aws::Structure end |
#operation_succeeded ⇒ Boolean
Information about the status of the ‘StartDataCollection` and `StopDataCollection` operations. The system has recorded the data collection operation. The agent receives this command the next time it polls for a new command.
32 33 34 35 36 37 38 |
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 32 class AgentConfigurationStatus < Struct.new( :agent_id, :operation_succeeded, :description) SENSITIVE = [] include Aws::Structure end |