Class: Aws::APIGateway::Types::GetAuthorizerRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-apigateway/types.rb

Overview

Note:

When making an API call, you may pass GetAuthorizerRequest data as a hash:

{
  rest_api_id: "String", # required
  authorizer_id: "String", # required
}

Request to describe an existing Authorizer resource.

Instance Attribute Summary collapse

Instance Attribute Details

#authorizer_idString

[Required] The identifier of the Authorizer resource.

Returns:

  • (String)


3010
3011
3012
3013
3014
# File 'lib/aws-sdk-apigateway/types.rb', line 3010

class GetAuthorizerRequest < Struct.new(
  :rest_api_id,
  :authorizer_id)
  include Aws::Structure
end

#rest_api_idString

[Required] The string identifier of the associated RestApi.

Returns:

  • (String)


3010
3011
3012
3013
3014
# File 'lib/aws-sdk-apigateway/types.rb', line 3010

class GetAuthorizerRequest < Struct.new(
  :rest_api_id,
  :authorizer_id)
  include Aws::Structure
end