Class: Aws::ApplicationDiscoveryService::Types::BatchDeleteAgentError
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationDiscoveryService::Types::BatchDeleteAgentError
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-applicationdiscoveryservice/types.rb
Overview
An object representing the agent or data collector that failed to delete, each containing agentId, errorMessage, and errorCode.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#agent_id ⇒ String
The ID of the agent or data collector to delete.
-
#error_code ⇒ String
The type of error that occurred for the delete failed agent.
-
#error_message ⇒ String
The description of the error that occurred for the delete failed agent.
Instance Attribute Details
#agent_id ⇒ String
The ID of the agent or data collector to delete.
166 167 168 169 170 171 172 |
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 166 class BatchDeleteAgentError < Struct.new( :agent_id, :error_message, :error_code) SENSITIVE = [] include Aws::Structure end |
#error_code ⇒ String
The type of error that occurred for the delete failed agent. Valid status are: AGENT_IN_USE | NOT_FOUND | INTERNAL_SERVER_ERROR.
166 167 168 169 170 171 172 |
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 166 class BatchDeleteAgentError < Struct.new( :agent_id, :error_message, :error_code) SENSITIVE = [] include Aws::Structure end |
#error_message ⇒ String
The description of the error that occurred for the delete failed agent.
166 167 168 169 170 171 172 |
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 166 class BatchDeleteAgentError < Struct.new( :agent_id, :error_message, :error_code) SENSITIVE = [] include Aws::Structure end |