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 aPing
operation.
-
-
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 void
close()
boolean
equals(Object o)
String
getCatalogName()
Returns the catalog name that is being pinged.String
getQueryId()
Returns the ID of the pinging query.int
hashCode()
String
toString()
-
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.
-
-