Module: AWSCDK::APIGateway::IAuthorizer

Included in:
Authorizer, CognitoUserPoolsAuthorizer, RequestAuthorizer, TokenAuthorizer
Defined in:
api_gateway/i_authorizer.rb

Overview

Represents an API Gateway authorizer.

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.jsii_overridable_methodsObject



21
22
23
24
25
26
# File 'api_gateway/i_authorizer.rb', line 21

def self.jsii_overridable_methods
  {
    :authorizer_id => { kind: :property, name: "authorizerId", is_optional: false },
    :authorization_type => { kind: :property, name: "authorizationType", is_optional: true },
  }
end

Instance Method Details

#authorization_typeAWSCDK::APIGateway::AuthorizationType?

The authorization type of this authorizer.



17
18
19
# File 'api_gateway/i_authorizer.rb', line 17

def authorization_type()
  jsii_get_property("authorizationType")
end

#authorizer_idString

The authorizer ID.

Returns:

  • (String)


10
11
12
# File 'api_gateway/i_authorizer.rb', line 10

def authorizer_id()
  jsii_get_property("authorizerId")
end