You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::APIGateway::Types::TestInvokeAuthorizerRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing TestInvokeAuthorizerRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  rest_api_id: "String", # required
  authorizer_id: "String", # required
  headers: {
    "String" => "String",
  },
  multi_value_headers: {
    "String" => ["String"],
  },
  path_with_query_string: "String",
  body: "String",
  stage_variables: {
    "String" => "String",
  },
  additional_context: {
    "String" => "String",
  },
}

Make a request to simulate the execution of an Authorizer.

Instance Attribute Summary collapse

Instance Attribute Details

#additional_contextHash<String,String>

[Optional] A key-value map of additional context variables.

Returns:

  • (Hash<String,String>)

    [Optional] A key-value map of additional context variables.

#authorizer_idString

[Required] Specifies a test invoke authorizer request\'s Authorizer ID.

Returns:

  • (String)

    [Required] Specifies a test invoke authorizer request\'s Authorizer ID.

#bodyString

[Optional] The simulated request body of an incoming invocation request.

Returns:

  • (String)

    [Optional] The simulated request body of an incoming invocation request.

#headersHash<String,String>

[Required] A key-value map of headers to simulate an incoming invocation request. This is where the incoming authorization token, or identity source, should be specified.

Returns:

  • (Hash<String,String>)

    [Required] A key-value map of headers to simulate an incoming invocation request.

#multi_value_headersHash<String,Array<String>>

[Optional] The headers as a map from string to list of values to simulate an incoming invocation request. This is where the incoming authorization token, or identity source, may be specified.

Returns:

  • (Hash<String,Array<String>>)

    [Optional] The headers as a map from string to list of values to simulate an incoming invocation request.

#path_with_query_stringString

[Optional] The URI path, including query string, of the simulated invocation request. Use this to specify path parameters and query string parameters.

Returns:

  • (String)

    [Optional] The URI path, including query string, of the simulated invocation request.

#rest_api_idString

[Required] The string identifier of the associated RestApi.

Returns:

  • (String)

    [Required] The string identifier of the associated RestApi.

#stage_variablesHash<String,String>

A key-value map of stage variables to simulate an invocation on a deployed Stage.

Returns:

  • (Hash<String,String>)

    A key-value map of stage variables to simulate an invocation on a deployed Stage.