Class GetAuthorizersRequest
- java.lang.Object
-
- com.amazonaws.AmazonWebServiceRequest
-
- com.amazonaws.services.apigateway.model.GetAuthorizersRequest
-
- All Implemented Interfaces:
ReadLimitInfo
,Serializable
,Cloneable
public class GetAuthorizersRequest extends AmazonWebServiceRequest implements Serializable, Cloneable
Request to describe an existing Authorizers resource.
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.amazonaws.AmazonWebServiceRequest
NOOP
-
-
Constructor Summary
Constructors Constructor Description GetAuthorizersRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GetAuthorizersRequest
clone()
Creates a shallow clone of this request.boolean
equals(Object obj)
Integer
getLimit()
Limit the number of Authorizer resources in the response.String
getPosition()
If not all Authorizer resources in the response were present, the position will specificy where to start the next page of results.String
getRestApiId()
The RestApi identifier for the Authorizers resource.int
hashCode()
void
setLimit(Integer limit)
Limit the number of Authorizer resources in the response.void
setPosition(String position)
If not all Authorizer resources in the response were present, the position will specificy where to start the next page of results.void
setRestApiId(String restApiId)
The RestApi identifier for the Authorizers resource.String
toString()
Returns a string representation of this object; useful for testing and debugging.GetAuthorizersRequest
withLimit(Integer limit)
Limit the number of Authorizer resources in the response.GetAuthorizersRequest
withPosition(String position)
If not all Authorizer resources in the response were present, the position will specificy where to start the next page of results.GetAuthorizersRequest
withRestApiId(String restApiId)
The RestApi identifier for the Authorizers resource.-
Methods inherited from class com.amazonaws.AmazonWebServiceRequest
copyBaseTo, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getReadLimit, getRequestClientOptions, getRequestCredentials, getRequestCredentialsProvider, getRequestMetricCollector, getSdkClientExecutionTimeout, getSdkRequestTimeout, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestCredentialsProvider, setRequestMetricCollector, setSdkClientExecutionTimeout, setSdkRequestTimeout, withGeneralProgressListener, withRequestMetricCollector, withSdkClientExecutionTimeout, withSdkRequestTimeout
-
-
-
-
Method Detail
-
setRestApiId
public void setRestApiId(String restApiId)
The RestApi identifier for the Authorizers resource.
- Parameters:
restApiId
- The RestApi identifier for the Authorizers resource.
-
getRestApiId
public String getRestApiId()
The RestApi identifier for the Authorizers resource.
- Returns:
- The RestApi identifier for the Authorizers resource.
-
withRestApiId
public GetAuthorizersRequest withRestApiId(String restApiId)
The RestApi identifier for the Authorizers resource.
- Parameters:
restApiId
- The RestApi identifier for the Authorizers resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setPosition
public void setPosition(String position)
If not all Authorizer resources in the response were present, the position will specificy where to start the next page of results.
- Parameters:
position
- If not all Authorizer resources in the response were present, the position will specificy where to start the next page of results.
-
getPosition
public String getPosition()
If not all Authorizer resources in the response were present, the position will specificy where to start the next page of results.
- Returns:
- If not all Authorizer resources in the response were present, the position will specificy where to start the next page of results.
-
withPosition
public GetAuthorizersRequest withPosition(String position)
If not all Authorizer resources in the response were present, the position will specificy where to start the next page of results.
- Parameters:
position
- If not all Authorizer resources in the response were present, the position will specificy where to start the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setLimit
public void setLimit(Integer limit)
Limit the number of Authorizer resources in the response.
- Parameters:
limit
- Limit the number of Authorizer resources in the response.
-
getLimit
public Integer getLimit()
Limit the number of Authorizer resources in the response.
- Returns:
- Limit the number of Authorizer resources in the response.
-
withLimit
public GetAuthorizersRequest withLimit(Integer limit)
Limit the number of Authorizer resources in the response.
- Parameters:
limit
- Limit the number of Authorizer resources in the response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public GetAuthorizersRequest clone()
Description copied from class:AmazonWebServiceRequest
Creates a shallow clone of this request. Explicitly does not clone the deep structure of the request object.- Overrides:
clone
in classAmazonWebServiceRequest
- See Also:
Object.clone()
-
-