Class: Aws::IdentityStore::Types::Role
- Inherits:
-
Struct
- Object
- Struct
- Aws::IdentityStore::Types::Role
- 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
-
#primary ⇒ Boolean
A Boolean value representing whether this is the primary role for the associated resource.
-
#type ⇒ String
A string representing the type of role.
-
#value ⇒ String
A string containing a role name.
Instance Attribute Details
#primary ⇒ Boolean
A Boolean value representing whether this is the primary role for the associated resource.
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 |