public class Authorizer extends Object implements Serializable, Cloneable
Represents an authorization layer for methods. If enabled on a method, API Gateway will activate the authorizer when a client calls the method.
Constructor and Description |
---|
Authorizer() |
Modifier and Type | Method and Description |
---|---|
Authorizer |
clone() |
boolean |
equals(Object obj) |
String |
getAuthorizerCredentials()
Specifies the credentials required for the authorizer, if any.
|
Integer |
getAuthorizerResultTtlInSeconds()
The TTL in seconds of cached authorizer results.
|
String |
getAuthorizerUri()
[Required] Specifies the authorizer's Uniform Resource Identifier (URI).
|
String |
getAuthType()
Optional customer-defined field, used in Swagger imports/exports.
|
String |
getId()
The identifier for the authorizer resource.
|
String |
getIdentitySource()
[Required] The source of the identity in an incoming request.
|
String |
getIdentityValidationExpression()
A validation expression for the incoming identity.
|
String |
getName()
[Required] The name of the authorizer.
|
String |
getType()
[Required] The type of the authorizer.
|
int |
hashCode() |
void |
setAuthorizerCredentials(String authorizerCredentials)
Specifies the credentials required for the authorizer, if any.
|
void |
setAuthorizerResultTtlInSeconds(Integer authorizerResultTtlInSeconds)
The TTL in seconds of cached authorizer results.
|
void |
setAuthorizerUri(String authorizerUri)
[Required] Specifies the authorizer's Uniform Resource Identifier (URI).
|
void |
setAuthType(String authType)
Optional customer-defined field, used in Swagger imports/exports.
|
void |
setId(String id)
The identifier for the authorizer resource.
|
void |
setIdentitySource(String identitySource)
[Required] The source of the identity in an incoming request.
|
void |
setIdentityValidationExpression(String identityValidationExpression)
A validation expression for the incoming identity.
|
void |
setName(String name)
[Required] The name of the authorizer.
|
void |
setType(AuthorizerType type)
[Required] The type of the authorizer.
|
void |
setType(String type)
[Required] The type of the authorizer.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
Authorizer |
withAuthorizerCredentials(String authorizerCredentials)
Specifies the credentials required for the authorizer, if any.
|
Authorizer |
withAuthorizerResultTtlInSeconds(Integer authorizerResultTtlInSeconds)
The TTL in seconds of cached authorizer results.
|
Authorizer |
withAuthorizerUri(String authorizerUri)
[Required] Specifies the authorizer's Uniform Resource Identifier (URI).
|
Authorizer |
withAuthType(String authType)
Optional customer-defined field, used in Swagger imports/exports.
|
Authorizer |
withId(String id)
The identifier for the authorizer resource.
|
Authorizer |
withIdentitySource(String identitySource)
[Required] The source of the identity in an incoming request.
|
Authorizer |
withIdentityValidationExpression(String identityValidationExpression)
A validation expression for the incoming identity.
|
Authorizer |
withName(String name)
[Required] The name of the authorizer.
|
Authorizer |
withType(AuthorizerType type)
[Required] The type of the authorizer.
|
Authorizer |
withType(String type)
[Required] The type of the authorizer.
|
public void setId(String id)
The identifier for the authorizer resource.
id
- The identifier for the authorizer resource.public String getId()
The identifier for the authorizer resource.
public Authorizer withId(String id)
The identifier for the authorizer resource.
id
- The identifier for the authorizer resource.public void setName(String name)
[Required] The name of the authorizer.
name
- [Required] The name of the authorizer.public String getName()
[Required] The name of the authorizer.
public Authorizer withName(String name)
[Required] The name of the authorizer.
name
- [Required] The name of the authorizer.public void setType(String type)
[Required] The type of the authorizer. Currently, the only valid type is TOKEN.
type
- [Required] The type of the authorizer. Currently, the only valid
type is TOKEN.AuthorizerType
public String getType()
[Required] The type of the authorizer. Currently, the only valid type is TOKEN.
AuthorizerType
public Authorizer withType(String type)
[Required] The type of the authorizer. Currently, the only valid type is TOKEN.
type
- [Required] The type of the authorizer. Currently, the only valid
type is TOKEN.AuthorizerType
public void setType(AuthorizerType type)
[Required] The type of the authorizer. Currently, the only valid type is TOKEN.
type
- [Required] The type of the authorizer. Currently, the only valid
type is TOKEN.AuthorizerType
public Authorizer withType(AuthorizerType type)
[Required] The type of the authorizer. Currently, the only valid type is TOKEN.
type
- [Required] The type of the authorizer. Currently, the only valid
type is TOKEN.AuthorizerType
public void setAuthType(String authType)
Optional customer-defined field, used in Swagger imports/exports. Has no functional impact.
authType
- Optional customer-defined field, used in Swagger imports/exports.
Has no functional impact.public String getAuthType()
Optional customer-defined field, used in Swagger imports/exports. Has no functional impact.
public Authorizer withAuthType(String authType)
Optional customer-defined field, used in Swagger imports/exports. Has no functional impact.
authType
- Optional customer-defined field, used in Swagger imports/exports.
Has no functional impact.public void setAuthorizerUri(String authorizerUri)
[Required] Specifies the authorizer's Uniform Resource Identifier (URI).
For TOKEN authorizers, this must be a well-formed Lambda function URI.
The URI should be of the form
arn:aws:apigateway:{region}:lambda:path/{service_api}
.
Region
is used to determine the right endpoint. In this
case, path
is used to indicate that the remaining substring
in the URI should be treated as the path to the resource, including the
initial /
. For Lambda functions, this is usually of the form
/2015-03-31/functions/[FunctionARN]/invocations
authorizerUri
- [Required] Specifies the authorizer's Uniform Resource Identifier
(URI). For TOKEN authorizers, this must be a well-formed Lambda
function URI. The URI should be of the form
arn:aws:apigateway:{region}:lambda:path/{service_api}
. Region
is used to determine the right endpoint. In
this case, path
is used to indicate that the
remaining substring in the URI should be treated as the path to
the resource, including the initial /
. For Lambda
functions, this is usually of the form
/2015-03-31/functions/[FunctionARN]/invocationspublic String getAuthorizerUri()
[Required] Specifies the authorizer's Uniform Resource Identifier (URI).
For TOKEN authorizers, this must be a well-formed Lambda function URI.
The URI should be of the form
arn:aws:apigateway:{region}:lambda:path/{service_api}
.
Region
is used to determine the right endpoint. In this
case, path
is used to indicate that the remaining substring
in the URI should be treated as the path to the resource, including the
initial /
. For Lambda functions, this is usually of the form
/2015-03-31/functions/[FunctionARN]/invocations
arn:aws:apigateway:{region}:lambda:path/{service_api}
. Region
is used to determine the right endpoint. In
this case, path
is used to indicate that the
remaining substring in the URI should be treated as the path to
the resource, including the initial /
. For Lambda
functions, this is usually of the form
/2015-03-31/functions/[FunctionARN]/invocationspublic Authorizer withAuthorizerUri(String authorizerUri)
[Required] Specifies the authorizer's Uniform Resource Identifier (URI).
For TOKEN authorizers, this must be a well-formed Lambda function URI.
The URI should be of the form
arn:aws:apigateway:{region}:lambda:path/{service_api}
.
Region
is used to determine the right endpoint. In this
case, path
is used to indicate that the remaining substring
in the URI should be treated as the path to the resource, including the
initial /
. For Lambda functions, this is usually of the form
/2015-03-31/functions/[FunctionARN]/invocations
authorizerUri
- [Required] Specifies the authorizer's Uniform Resource Identifier
(URI). For TOKEN authorizers, this must be a well-formed Lambda
function URI. The URI should be of the form
arn:aws:apigateway:{region}:lambda:path/{service_api}
. Region
is used to determine the right endpoint. In
this case, path
is used to indicate that the
remaining substring in the URI should be treated as the path to
the resource, including the initial /
. For Lambda
functions, this is usually of the form
/2015-03-31/functions/[FunctionARN]/invocationspublic void setAuthorizerCredentials(String authorizerCredentials)
Specifies the credentials required for the authorizer, if any. Two options are available. To specify an IAM Role for Amazon API Gateway to assume, use the role's Amazon Resource Name (ARN). To use resource-based permissions on the Lambda function, specify null.
authorizerCredentials
- Specifies the credentials required for the authorizer, if any. Two
options are available. To specify an IAM Role for Amazon API
Gateway to assume, use the role's Amazon Resource Name (ARN). To
use resource-based permissions on the Lambda function, specify
null.public String getAuthorizerCredentials()
Specifies the credentials required for the authorizer, if any. Two options are available. To specify an IAM Role for Amazon API Gateway to assume, use the role's Amazon Resource Name (ARN). To use resource-based permissions on the Lambda function, specify null.
public Authorizer withAuthorizerCredentials(String authorizerCredentials)
Specifies the credentials required for the authorizer, if any. Two options are available. To specify an IAM Role for Amazon API Gateway to assume, use the role's Amazon Resource Name (ARN). To use resource-based permissions on the Lambda function, specify null.
authorizerCredentials
- Specifies the credentials required for the authorizer, if any. Two
options are available. To specify an IAM Role for Amazon API
Gateway to assume, use the role's Amazon Resource Name (ARN). To
use resource-based permissions on the Lambda function, specify
null.public void setIdentitySource(String identitySource)
[Required] The source of the identity in an incoming request. For TOKEN authorizers, this value is a mapping expression with the same syntax as integration parameter mappings. The only valid source for tokens is 'header', so the expression should match 'method.request.header.[headerName]'. The value of the header '[headerName]' will be interpreted as the incoming token.
identitySource
- [Required] The source of the identity in an incoming request. For
TOKEN authorizers, this value is a mapping expression with the
same syntax as integration parameter mappings. The only valid
source for tokens is 'header', so the expression should match
'method.request.header.[headerName]'. The value of the header
'[headerName]' will be interpreted as the incoming token.public String getIdentitySource()
[Required] The source of the identity in an incoming request. For TOKEN authorizers, this value is a mapping expression with the same syntax as integration parameter mappings. The only valid source for tokens is 'header', so the expression should match 'method.request.header.[headerName]'. The value of the header '[headerName]' will be interpreted as the incoming token.
public Authorizer withIdentitySource(String identitySource)
[Required] The source of the identity in an incoming request. For TOKEN authorizers, this value is a mapping expression with the same syntax as integration parameter mappings. The only valid source for tokens is 'header', so the expression should match 'method.request.header.[headerName]'. The value of the header '[headerName]' will be interpreted as the incoming token.
identitySource
- [Required] The source of the identity in an incoming request. For
TOKEN authorizers, this value is a mapping expression with the
same syntax as integration parameter mappings. The only valid
source for tokens is 'header', so the expression should match
'method.request.header.[headerName]'. The value of the header
'[headerName]' will be interpreted as the incoming token.public void setIdentityValidationExpression(String identityValidationExpression)
A validation expression for the incoming identity. For TOKEN authorizers, this value should be a regular expression. The incoming token from the client is matched against this expression, and will proceed if the token matches. If the token doesn't match, the client receives a 401 Unauthorized response.
identityValidationExpression
- A validation expression for the incoming identity. For TOKEN
authorizers, this value should be a regular expression. The
incoming token from the client is matched against this expression,
and will proceed if the token matches. If the token doesn't match,
the client receives a 401 Unauthorized response.public String getIdentityValidationExpression()
A validation expression for the incoming identity. For TOKEN authorizers, this value should be a regular expression. The incoming token from the client is matched against this expression, and will proceed if the token matches. If the token doesn't match, the client receives a 401 Unauthorized response.
public Authorizer withIdentityValidationExpression(String identityValidationExpression)
A validation expression for the incoming identity. For TOKEN authorizers, this value should be a regular expression. The incoming token from the client is matched against this expression, and will proceed if the token matches. If the token doesn't match, the client receives a 401 Unauthorized response.
identityValidationExpression
- A validation expression for the incoming identity. For TOKEN
authorizers, this value should be a regular expression. The
incoming token from the client is matched against this expression,
and will proceed if the token matches. If the token doesn't match,
the client receives a 401 Unauthorized response.public void setAuthorizerResultTtlInSeconds(Integer authorizerResultTtlInSeconds)
The TTL in seconds of cached authorizer results. If greater than 0, API Gateway will cache authorizer responses. If this field is not set, the default value is 300. The maximum value is 3600, or 1 hour.
authorizerResultTtlInSeconds
- The TTL in seconds of cached authorizer results. If greater than
0, API Gateway will cache authorizer responses. If this field is
not set, the default value is 300. The maximum value is 3600, or 1
hour.public Integer getAuthorizerResultTtlInSeconds()
The TTL in seconds of cached authorizer results. If greater than 0, API Gateway will cache authorizer responses. If this field is not set, the default value is 300. The maximum value is 3600, or 1 hour.
public Authorizer withAuthorizerResultTtlInSeconds(Integer authorizerResultTtlInSeconds)
The TTL in seconds of cached authorizer results. If greater than 0, API Gateway will cache authorizer responses. If this field is not set, the default value is 300. The maximum value is 3600, or 1 hour.
authorizerResultTtlInSeconds
- The TTL in seconds of cached authorizer results. If greater than
0, API Gateway will cache authorizer responses. If this field is
not set, the default value is 300. The maximum value is 3600, or 1
hour.public String toString()
toString
in class Object
Object.toString()
public Authorizer clone()
Copyright © 2016. All rights reserved.