Class: Aws::ApplicationDiscoveryService::Types::DeleteAgent
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationDiscoveryService::Types::DeleteAgent
- Defined in:
- gems/aws-sdk-applicationdiscoveryservice/lib/aws-sdk-applicationdiscoveryservice/types.rb
Overview
An object representing the agent or data collector to be deleted along with the optional configurations for error handling.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#agent_id ⇒ String
The ID of the agent or data collector to delete.
-
#force ⇒ Boolean
Optional flag used to force delete an agent or data collector.
Instance Attribute Details
#agent_id ⇒ String
The ID of the agent or data collector to delete.
744 745 746 747 748 749 |
# File 'gems/aws-sdk-applicationdiscoveryservice/lib/aws-sdk-applicationdiscoveryservice/types.rb', line 744 class DeleteAgent < Struct.new( :agent_id, :force) SENSITIVE = [] include Aws::Structure end |
#force ⇒ Boolean
Optional flag used to force delete an agent or data collector. It is needed to delete any agent in HEALTHY/UNHEALTHY/RUNNING status. Note that deleting an agent that is actively reporting health causes it to be re-registered with a different agent ID after data collector re-connects with Amazon Web Services.
744 745 746 747 748 749 |
# File 'gems/aws-sdk-applicationdiscoveryservice/lib/aws-sdk-applicationdiscoveryservice/types.rb', line 744 class DeleteAgent < Struct.new( :agent_id, :force) SENSITIVE = [] include Aws::Structure end |