Authorizer constructor

Authorizer({
  1. required String name,
  2. String? authorizerCredentialsArn,
  3. String? authorizerId,
  4. String? authorizerPayloadFormatVersion,
  5. int? authorizerResultTtlInSeconds,
  6. AuthorizerType? authorizerType,
  7. String? authorizerUri,
  8. bool? enableSimpleResponses,
  9. List<String>? identitySource,
  10. String? identityValidationExpression,
  11. JWTConfiguration? jwtConfiguration,
})

Implementation

Authorizer({
  required this.name,
  this.authorizerCredentialsArn,
  this.authorizerId,
  this.authorizerPayloadFormatVersion,
  this.authorizerResultTtlInSeconds,
  this.authorizerType,
  this.authorizerUri,
  this.enableSimpleResponses,
  this.identitySource,
  this.identityValidationExpression,
  this.jwtConfiguration,
});