Authorizer constructor

Authorizer({
  1. String? authType,
  2. String? authorizerCredentials,
  3. int? authorizerResultTtlInSeconds,
  4. String? authorizerUri,
  5. String? id,
  6. String? identitySource,
  7. String? identityValidationExpression,
  8. String? name,
  9. List<String>? providerARNs,
  10. AuthorizerType? type,
})

Implementation

Authorizer({
  this.authType,
  this.authorizerCredentials,
  this.authorizerResultTtlInSeconds,
  this.authorizerUri,
  this.id,
  this.identitySource,
  this.identityValidationExpression,
  this.name,
  this.providerARNs,
  this.type,
});