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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#authorizer_idString

[Required] The identifier of the Authorizer resource.

Returns:

  • (String)


3117
3118
3119
3120
3121
3122
# File 'lib/aws-sdk-apigateway/types.rb', line 3117

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

#rest_api_idString

[Required] The string identifier of the associated RestApi.

Returns:

  • (String)


3117
3118
3119
3120
3121
3122
# File 'lib/aws-sdk-apigateway/types.rb', line 3117

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