Class: Aws::IoT::Types::TestAuthorizationRequest

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 TestAuthorizationRequest data as a hash:

{
  principal: "Principal",
  cognito_identity_pool_id: "CognitoIdentityPoolId",
  auth_infos: [ # required
    {
      action_type: "PUBLISH", # accepts PUBLISH, SUBSCRIBE, RECEIVE, CONNECT
      resources: ["Resource"],
    },
  ],
  client_id: "ClientId",
  policy_names_to_add: ["PolicyName"],
  policy_names_to_skip: ["PolicyName"],
}

Instance Attribute Summary collapse

Instance Attribute Details

#auth_infosArray<Types::AuthInfo>

A list of authorization info objects. Simulating authorization will create a response for each ‘authInfo` object in the list.

Returns:



9856
9857
9858
9859
9860
9861
9862
9863
9864
# File 'lib/aws-sdk-iot/types.rb', line 9856

class TestAuthorizationRequest < Struct.new(
  :principal,
  :cognito_identity_pool_id,
  :auth_infos,
  :client_id,
  :policy_names_to_add,
  :policy_names_to_skip)
  include Aws::Structure
end

#client_idString

The MQTT client ID.

Returns:

  • (String)


9856
9857
9858
9859
9860
9861
9862
9863
9864
# File 'lib/aws-sdk-iot/types.rb', line 9856

class TestAuthorizationRequest < Struct.new(
  :principal,
  :cognito_identity_pool_id,
  :auth_infos,
  :client_id,
  :policy_names_to_add,
  :policy_names_to_skip)
  include Aws::Structure
end

#cognito_identity_pool_idString

The Cognito identity pool ID.

Returns:

  • (String)


9856
9857
9858
9859
9860
9861
9862
9863
9864
# File 'lib/aws-sdk-iot/types.rb', line 9856

class TestAuthorizationRequest < Struct.new(
  :principal,
  :cognito_identity_pool_id,
  :auth_infos,
  :client_id,
  :policy_names_to_add,
  :policy_names_to_skip)
  include Aws::Structure
end

#policy_names_to_addArray<String>

When testing custom authorization, the policies specified here are treated as if they are attached to the principal being authorized.

Returns:

  • (Array<String>)


9856
9857
9858
9859
9860
9861
9862
9863
9864
# File 'lib/aws-sdk-iot/types.rb', line 9856

class TestAuthorizationRequest < Struct.new(
  :principal,
  :cognito_identity_pool_id,
  :auth_infos,
  :client_id,
  :policy_names_to_add,
  :policy_names_to_skip)
  include Aws::Structure
end

#policy_names_to_skipArray<String>

When testing custom authorization, the policies specified here are treated as if they are not attached to the principal being authorized.

Returns:

  • (Array<String>)


9856
9857
9858
9859
9860
9861
9862
9863
9864
# File 'lib/aws-sdk-iot/types.rb', line 9856

class TestAuthorizationRequest < Struct.new(
  :principal,
  :cognito_identity_pool_id,
  :auth_infos,
  :client_id,
  :policy_names_to_add,
  :policy_names_to_skip)
  include Aws::Structure
end

#principalString

The principal.

Returns:

  • (String)


9856
9857
9858
9859
9860
9861
9862
9863
9864
# File 'lib/aws-sdk-iot/types.rb', line 9856

class TestAuthorizationRequest < Struct.new(
  :principal,
  :cognito_identity_pool_id,
  :auth_infos,
  :client_id,
  :policy_names_to_add,
  :policy_names_to_skip)
  include Aws::Structure
end