Class: Aws::IdentityStore::Types::Role

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

Overview

The role associated with the user.

Constant Summary collapse

SENSITIVE =
[:value, :type]

Instance Attribute Summary collapse

Instance Attribute Details

#primaryBoolean

A Boolean value representing whether this is the primary role for the associated resource.

Returns:

  • (Boolean)


1614
1615
1616
1617
1618
1619
1620
# File 'lib/aws-sdk-identitystore/types.rb', line 1614

class Role < Struct.new(
  :value,
  :type,
  :primary)
  SENSITIVE = [:value, :type]
  include Aws::Structure
end

#typeString

A string representing the type of role. For example, “Work.”

Returns:

  • (String)


1614
1615
1616
1617
1618
1619
1620
# File 'lib/aws-sdk-identitystore/types.rb', line 1614

class Role < Struct.new(
  :value,
  :type,
  :primary)
  SENSITIVE = [:value, :type]
  include Aws::Structure
end

#valueString

A string containing a role name. For example, “Researcher.”

Returns:

  • (String)


1614
1615
1616
1617
1618
1619
1620
# File 'lib/aws-sdk-identitystore/types.rb', line 1614

class Role < Struct.new(
  :value,
  :type,
  :primary)
  SENSITIVE = [:value, :type]
  include Aws::Structure
end