Class: Aws::IoT::Types::AuthInfo

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

Overview

A collection of authorization information.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#action_typeString

The type of action for which the principal is being authorized.

Returns:

  • (String)


992
993
994
995
996
997
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 992

class AuthInfo < Struct.new(
  :action_type,
  :resources)
  SENSITIVE = []
  include Aws::Structure
end

#resourcesArray<String>

The resources for which the principal is being authorized to perform the specified action.

Returns:

  • (Array<String>)


992
993
994
995
996
997
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 992

class AuthInfo < Struct.new(
  :action_type,
  :resources)
  SENSITIVE = []
  include Aws::Structure
end