@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class UpdateRouteResult extends AmazonWebServiceResult<ResponseMetadata> implements Serializable, Cloneable
Constructor and Description |
---|
UpdateRouteResult() |
Modifier and Type | Method and Description |
---|---|
UpdateRouteResult |
addRequestModelsEntry(String key,
String value) |
UpdateRouteResult |
addRequestParametersEntry(String key,
ParameterConstraints value) |
UpdateRouteResult |
clearRequestModelsEntries()
Removes all the entries added into RequestModels.
|
UpdateRouteResult |
clearRequestParametersEntries()
Removes all the entries added into RequestParameters.
|
UpdateRouteResult |
clone() |
boolean |
equals(Object obj) |
Boolean |
getApiKeyRequired()
Specifies whether an API key is required for this route.
|
List<String> |
getAuthorizationScopes()
A list of authorization scopes configured on a route.
|
String |
getAuthorizationType()
The authorization type for the route.
|
String |
getAuthorizerId()
The identifier of the Authorizer resource to be associated with this route, if the authorizationType is CUSTOM .
|
String |
getModelSelectionExpression()
The model selection expression for the route.
|
String |
getOperationName()
The operation name for the route.
|
Map<String,String> |
getRequestModels()
The request models for the route.
|
Map<String,ParameterConstraints> |
getRequestParameters()
The request parameters for the route.
|
String |
getRouteId()
The route ID.
|
String |
getRouteKey()
The route key for the route.
|
String |
getRouteResponseSelectionExpression()
The route response selection expression for the route.
|
String |
getTarget()
The target for the route.
|
int |
hashCode() |
Boolean |
isApiKeyRequired()
Specifies whether an API key is required for this route.
|
void |
setApiKeyRequired(Boolean apiKeyRequired)
Specifies whether an API key is required for this route.
|
void |
setAuthorizationScopes(Collection<String> authorizationScopes)
A list of authorization scopes configured on a route.
|
void |
setAuthorizationType(String authorizationType)
The authorization type for the route.
|
void |
setAuthorizerId(String authorizerId)
The identifier of the Authorizer resource to be associated with this route, if the authorizationType is CUSTOM .
|
void |
setModelSelectionExpression(String modelSelectionExpression)
The model selection expression for the route.
|
void |
setOperationName(String operationName)
The operation name for the route.
|
void |
setRequestModels(Map<String,String> requestModels)
The request models for the route.
|
void |
setRequestParameters(Map<String,ParameterConstraints> requestParameters)
The request parameters for the route.
|
void |
setRouteId(String routeId)
The route ID.
|
void |
setRouteKey(String routeKey)
The route key for the route.
|
void |
setRouteResponseSelectionExpression(String routeResponseSelectionExpression)
The route response selection expression for the route.
|
void |
setTarget(String target)
The target for the route.
|
String |
toString()
Returns a string representation of this object.
|
UpdateRouteResult |
withApiKeyRequired(Boolean apiKeyRequired)
Specifies whether an API key is required for this route.
|
UpdateRouteResult |
withAuthorizationScopes(Collection<String> authorizationScopes)
A list of authorization scopes configured on a route.
|
UpdateRouteResult |
withAuthorizationScopes(String... authorizationScopes)
A list of authorization scopes configured on a route.
|
UpdateRouteResult |
withAuthorizationType(AuthorizationType authorizationType)
The authorization type for the route.
|
UpdateRouteResult |
withAuthorizationType(String authorizationType)
The authorization type for the route.
|
UpdateRouteResult |
withAuthorizerId(String authorizerId)
The identifier of the Authorizer resource to be associated with this route, if the authorizationType is CUSTOM .
|
UpdateRouteResult |
withModelSelectionExpression(String modelSelectionExpression)
The model selection expression for the route.
|
UpdateRouteResult |
withOperationName(String operationName)
The operation name for the route.
|
UpdateRouteResult |
withRequestModels(Map<String,String> requestModels)
The request models for the route.
|
UpdateRouteResult |
withRequestParameters(Map<String,ParameterConstraints> requestParameters)
The request parameters for the route.
|
UpdateRouteResult |
withRouteId(String routeId)
The route ID.
|
UpdateRouteResult |
withRouteKey(String routeKey)
The route key for the route.
|
UpdateRouteResult |
withRouteResponseSelectionExpression(String routeResponseSelectionExpression)
The route response selection expression for the route.
|
UpdateRouteResult |
withTarget(String target)
The target for the route.
|
getSdkHttpMetadata, getSdkResponseMetadata, setSdkHttpMetadata, setSdkResponseMetadata
public void setApiKeyRequired(Boolean apiKeyRequired)
Specifies whether an API key is required for this route.
apiKeyRequired
- Specifies whether an API key is required for this route.public Boolean getApiKeyRequired()
Specifies whether an API key is required for this route.
public UpdateRouteResult withApiKeyRequired(Boolean apiKeyRequired)
Specifies whether an API key is required for this route.
apiKeyRequired
- Specifies whether an API key is required for this route.public Boolean isApiKeyRequired()
Specifies whether an API key is required for this route.
public List<String> getAuthorizationScopes()
A list of authorization scopes configured on a route. The scopes are used with a COGNITO_USER_POOLS authorizer to authorize the method invocation. The authorization works by matching the route scopes against the scopes parsed from the access token in the incoming request. The method invocation is authorized if any route scope matches a claimed scope in the access token. Otherwise, the invocation is not authorized. When the route scope is configured, the client must provide an access token instead of an identity token for authorization purposes.
public void setAuthorizationScopes(Collection<String> authorizationScopes)
A list of authorization scopes configured on a route. The scopes are used with a COGNITO_USER_POOLS authorizer to authorize the method invocation. The authorization works by matching the route scopes against the scopes parsed from the access token in the incoming request. The method invocation is authorized if any route scope matches a claimed scope in the access token. Otherwise, the invocation is not authorized. When the route scope is configured, the client must provide an access token instead of an identity token for authorization purposes.
authorizationScopes
- A list of authorization scopes configured on a route. The scopes are used with a COGNITO_USER_POOLS
authorizer to authorize the method invocation. The authorization works by matching the route scopes
against the scopes parsed from the access token in the incoming request. The method invocation is
authorized if any route scope matches a claimed scope in the access token. Otherwise, the invocation is
not authorized. When the route scope is configured, the client must provide an access token instead of an
identity token for authorization purposes.public UpdateRouteResult withAuthorizationScopes(String... authorizationScopes)
A list of authorization scopes configured on a route. The scopes are used with a COGNITO_USER_POOLS authorizer to authorize the method invocation. The authorization works by matching the route scopes against the scopes parsed from the access token in the incoming request. The method invocation is authorized if any route scope matches a claimed scope in the access token. Otherwise, the invocation is not authorized. When the route scope is configured, the client must provide an access token instead of an identity token for authorization purposes.
NOTE: This method appends the values to the existing list (if any). Use
setAuthorizationScopes(java.util.Collection)
or withAuthorizationScopes(java.util.Collection)
if you want to override the existing values.
authorizationScopes
- A list of authorization scopes configured on a route. The scopes are used with a COGNITO_USER_POOLS
authorizer to authorize the method invocation. The authorization works by matching the route scopes
against the scopes parsed from the access token in the incoming request. The method invocation is
authorized if any route scope matches a claimed scope in the access token. Otherwise, the invocation is
not authorized. When the route scope is configured, the client must provide an access token instead of an
identity token for authorization purposes.public UpdateRouteResult withAuthorizationScopes(Collection<String> authorizationScopes)
A list of authorization scopes configured on a route. The scopes are used with a COGNITO_USER_POOLS authorizer to authorize the method invocation. The authorization works by matching the route scopes against the scopes parsed from the access token in the incoming request. The method invocation is authorized if any route scope matches a claimed scope in the access token. Otherwise, the invocation is not authorized. When the route scope is configured, the client must provide an access token instead of an identity token for authorization purposes.
authorizationScopes
- A list of authorization scopes configured on a route. The scopes are used with a COGNITO_USER_POOLS
authorizer to authorize the method invocation. The authorization works by matching the route scopes
against the scopes parsed from the access token in the incoming request. The method invocation is
authorized if any route scope matches a claimed scope in the access token. Otherwise, the invocation is
not authorized. When the route scope is configured, the client must provide an access token instead of an
identity token for authorization purposes.public void setAuthorizationType(String authorizationType)
The authorization type for the route. Valid values are NONE for open access, AWS_IAM for using AWS IAM permissions, and CUSTOM for using a Lambda authorizer
authorizationType
- The authorization type for the route. Valid values are NONE for open access, AWS_IAM for using AWS IAM
permissions, and CUSTOM for using a Lambda authorizerAuthorizationType
public String getAuthorizationType()
The authorization type for the route. Valid values are NONE for open access, AWS_IAM for using AWS IAM permissions, and CUSTOM for using a Lambda authorizer
AuthorizationType
public UpdateRouteResult withAuthorizationType(String authorizationType)
The authorization type for the route. Valid values are NONE for open access, AWS_IAM for using AWS IAM permissions, and CUSTOM for using a Lambda authorizer
authorizationType
- The authorization type for the route. Valid values are NONE for open access, AWS_IAM for using AWS IAM
permissions, and CUSTOM for using a Lambda authorizerAuthorizationType
public UpdateRouteResult withAuthorizationType(AuthorizationType authorizationType)
The authorization type for the route. Valid values are NONE for open access, AWS_IAM for using AWS IAM permissions, and CUSTOM for using a Lambda authorizer
authorizationType
- The authorization type for the route. Valid values are NONE for open access, AWS_IAM for using AWS IAM
permissions, and CUSTOM for using a Lambda authorizerAuthorizationType
public void setAuthorizerId(String authorizerId)
The identifier of the Authorizer resource to be associated with this route, if the authorizationType is CUSTOM . The authorizer identifier is generated by API Gateway when you created the authorizer.
authorizerId
- The identifier of the Authorizer resource to be associated with this route, if the authorizationType is
CUSTOM . The authorizer identifier is generated by API Gateway when you created the authorizer.public String getAuthorizerId()
The identifier of the Authorizer resource to be associated with this route, if the authorizationType is CUSTOM . The authorizer identifier is generated by API Gateway when you created the authorizer.
public UpdateRouteResult withAuthorizerId(String authorizerId)
The identifier of the Authorizer resource to be associated with this route, if the authorizationType is CUSTOM . The authorizer identifier is generated by API Gateway when you created the authorizer.
authorizerId
- The identifier of the Authorizer resource to be associated with this route, if the authorizationType is
CUSTOM . The authorizer identifier is generated by API Gateway when you created the authorizer.public void setModelSelectionExpression(String modelSelectionExpression)
The model selection expression for the route.
modelSelectionExpression
- The model selection expression for the route.public String getModelSelectionExpression()
The model selection expression for the route.
public UpdateRouteResult withModelSelectionExpression(String modelSelectionExpression)
The model selection expression for the route.
modelSelectionExpression
- The model selection expression for the route.public void setOperationName(String operationName)
The operation name for the route.
operationName
- The operation name for the route.public String getOperationName()
The operation name for the route.
public UpdateRouteResult withOperationName(String operationName)
The operation name for the route.
operationName
- The operation name for the route.public Map<String,String> getRequestModels()
The request models for the route.
public void setRequestModels(Map<String,String> requestModels)
The request models for the route.
requestModels
- The request models for the route.public UpdateRouteResult withRequestModels(Map<String,String> requestModels)
The request models for the route.
requestModels
- The request models for the route.public UpdateRouteResult addRequestModelsEntry(String key, String value)
public UpdateRouteResult clearRequestModelsEntries()
public Map<String,ParameterConstraints> getRequestParameters()
The request parameters for the route.
public void setRequestParameters(Map<String,ParameterConstraints> requestParameters)
The request parameters for the route.
requestParameters
- The request parameters for the route.public UpdateRouteResult withRequestParameters(Map<String,ParameterConstraints> requestParameters)
The request parameters for the route.
requestParameters
- The request parameters for the route.public UpdateRouteResult addRequestParametersEntry(String key, ParameterConstraints value)
public UpdateRouteResult clearRequestParametersEntries()
public void setRouteId(String routeId)
The route ID.
routeId
- The route ID.public String getRouteId()
The route ID.
public UpdateRouteResult withRouteId(String routeId)
The route ID.
routeId
- The route ID.public void setRouteKey(String routeKey)
The route key for the route.
routeKey
- The route key for the route.public String getRouteKey()
The route key for the route.
public UpdateRouteResult withRouteKey(String routeKey)
The route key for the route.
routeKey
- The route key for the route.public void setRouteResponseSelectionExpression(String routeResponseSelectionExpression)
The route response selection expression for the route.
routeResponseSelectionExpression
- The route response selection expression for the route.public String getRouteResponseSelectionExpression()
The route response selection expression for the route.
public UpdateRouteResult withRouteResponseSelectionExpression(String routeResponseSelectionExpression)
The route response selection expression for the route.
routeResponseSelectionExpression
- The route response selection expression for the route.public void setTarget(String target)
The target for the route.
target
- The target for the route.public String getTarget()
The target for the route.
public UpdateRouteResult withTarget(String target)
The target for the route.
target
- The target for the route.public String toString()
toString
in class Object
Object.toString()
public UpdateRouteResult clone()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.