Class PingRequest
- java.lang.Object
-
- com.amazonaws.athena.connector.lambda.request.FederationRequest
-
- com.amazonaws.athena.connector.lambda.request.PingRequest
-
- All Implemented Interfaces:
AutoCloseable
public class PingRequest extends FederationRequest
Represents the input of aPingoperation.
-
-
Constructor Summary
Constructors Constructor Description PingRequest(FederatedIdentity identity, String catalogName, String queryId)Constructs a new PingRequest object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()booleanequals(Object o)StringgetCatalogName()Returns the catalog name that is being pinged.StringgetQueryId()Returns the ID of the pinging query.inthashCode()StringtoString()-
Methods inherited from class com.amazonaws.athena.connector.lambda.request.FederationRequest
getIdentity
-
-
-
-
Constructor Detail
-
PingRequest
public PingRequest(FederatedIdentity identity, String catalogName, String queryId)
Constructs a new PingRequest object.- Parameters:
identity- The identity of the caller.catalogName- The catalog name that is being pinged.queryId- The ID of the pinging query.
-
-