Interface BatchDeleteAgentError.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchDeleteAgentError.Builder,BatchDeleteAgentError>,SdkBuilder<BatchDeleteAgentError.Builder,BatchDeleteAgentError>,SdkPojo
- Enclosing class:
- BatchDeleteAgentError
public static interface BatchDeleteAgentError.Builder extends SdkPojo, CopyableBuilder<BatchDeleteAgentError.Builder,BatchDeleteAgentError>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchDeleteAgentError.BuilderagentId(String agentId)The ID of the agent or data collector to delete.BatchDeleteAgentError.BuildererrorCode(String errorCode)The type of error that occurred for the delete failed agent.BatchDeleteAgentError.BuildererrorCode(DeleteAgentErrorCode errorCode)The type of error that occurred for the delete failed agent.BatchDeleteAgentError.BuildererrorMessage(String errorMessage)The description of the error that occurred for the delete failed agent.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
agentId
BatchDeleteAgentError.Builder agentId(String agentId)
The ID of the agent or data collector to delete.
- Parameters:
agentId- The ID of the agent or data collector to delete.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorMessage
BatchDeleteAgentError.Builder errorMessage(String errorMessage)
The description of the error that occurred for the delete failed agent.
- Parameters:
errorMessage- The description of the error that occurred for the delete failed agent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorCode
BatchDeleteAgentError.Builder errorCode(String errorCode)
The type of error that occurred for the delete failed agent. Valid status are: AGENT_IN_USE | NOT_FOUND | INTERNAL_SERVER_ERROR.
- Parameters:
errorCode- The type of error that occurred for the delete failed agent. Valid status are: AGENT_IN_USE | NOT_FOUND | INTERNAL_SERVER_ERROR.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DeleteAgentErrorCode,DeleteAgentErrorCode
-
errorCode
BatchDeleteAgentError.Builder errorCode(DeleteAgentErrorCode errorCode)
The type of error that occurred for the delete failed agent. Valid status are: AGENT_IN_USE | NOT_FOUND | INTERNAL_SERVER_ERROR.
- Parameters:
errorCode- The type of error that occurred for the delete failed agent. Valid status are: AGENT_IN_USE | NOT_FOUND | INTERNAL_SERVER_ERROR.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DeleteAgentErrorCode,DeleteAgentErrorCode
-
-