Class: Aws::IoT::Types::TestInvokeAuthorizerRequest

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

Overview

Note:

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

{
  authorizer_name: "AuthorizerName", # required
  token: "Token",
  token_signature: "TokenSignature",
  http_context: {
    headers: {
      "HttpHeaderName" => "HttpHeaderValue",
    },
    query_string: "HttpQueryString",
  },
  mqtt_context: {
    username: "MqttUsername",
    password: "data",
    client_id: "MqttClientId",
  },
  tls_context: {
    server_name: "ServerName",
  },
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#authorizer_nameString

The custom authorizer name.

Returns:

  • (String)


18051
18052
18053
18054
18055
18056
18057
18058
18059
18060
# File 'lib/aws-sdk-iot/types.rb', line 18051

class TestInvokeAuthorizerRequest < Struct.new(
  :authorizer_name,
  :token,
  :token_signature,
  :http_context,
  :mqtt_context,
  :tls_context)
  SENSITIVE = []
  include Aws::Structure
end

#http_contextTypes::HttpContext

Specifies a test HTTP authorization request.

Returns:



18051
18052
18053
18054
18055
18056
18057
18058
18059
18060
# File 'lib/aws-sdk-iot/types.rb', line 18051

class TestInvokeAuthorizerRequest < Struct.new(
  :authorizer_name,
  :token,
  :token_signature,
  :http_context,
  :mqtt_context,
  :tls_context)
  SENSITIVE = []
  include Aws::Structure
end

#mqtt_contextTypes::MqttContext

Specifies a test MQTT authorization request.

Returns:



18051
18052
18053
18054
18055
18056
18057
18058
18059
18060
# File 'lib/aws-sdk-iot/types.rb', line 18051

class TestInvokeAuthorizerRequest < Struct.new(
  :authorizer_name,
  :token,
  :token_signature,
  :http_context,
  :mqtt_context,
  :tls_context)
  SENSITIVE = []
  include Aws::Structure
end

#tls_contextTypes::TlsContext

Specifies a test TLS authorization request.

Returns:



18051
18052
18053
18054
18055
18056
18057
18058
18059
18060
# File 'lib/aws-sdk-iot/types.rb', line 18051

class TestInvokeAuthorizerRequest < Struct.new(
  :authorizer_name,
  :token,
  :token_signature,
  :http_context,
  :mqtt_context,
  :tls_context)
  SENSITIVE = []
  include Aws::Structure
end

#tokenString

The token returned by your custom authentication service.

Returns:

  • (String)


18051
18052
18053
18054
18055
18056
18057
18058
18059
18060
# File 'lib/aws-sdk-iot/types.rb', line 18051

class TestInvokeAuthorizerRequest < Struct.new(
  :authorizer_name,
  :token,
  :token_signature,
  :http_context,
  :mqtt_context,
  :tls_context)
  SENSITIVE = []
  include Aws::Structure
end

#token_signatureString

The signature made with the token and your custom authentication service's private key. This value must be Base-64-encoded.

Returns:

  • (String)


18051
18052
18053
18054
18055
18056
18057
18058
18059
18060
# File 'lib/aws-sdk-iot/types.rb', line 18051

class TestInvokeAuthorizerRequest < Struct.new(
  :authorizer_name,
  :token,
  :token_signature,
  :http_context,
  :mqtt_context,
  :tls_context)
  SENSITIVE = []
  include Aws::Structure
end