Class: Aws::ManagedGrafana::Types::RoleValues
- Inherits:
-
Struct
- Object
- Struct
- Aws::ManagedGrafana::Types::RoleValues
- Defined in:
- gems/aws-sdk-managedgrafana/lib/aws-sdk-managedgrafana/types.rb
Overview
Note:
When making an API call, you may pass RoleValues data as a hash:
{
admin: ["RoleValue"],
editor: ["RoleValue"],
}
This structure defines which groups defined in the SAML assertion
attribute are to be mapped to the Grafana Admin
and Editor
roles
in the workspace.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#admin ⇒ Array<String>
A list of groups from the SAML assertion attribute to grant the Grafana
Admin
role to. -
#editor ⇒ Array<String>
A list of groups from the SAML assertion attribute to grant the Grafana
Editor
role to.
Instance Attribute Details
#admin ⇒ Array<String>
A list of groups from the SAML assertion attribute to grant the
Grafana Admin
role to.
888 889 890 891 892 893 |
# File 'gems/aws-sdk-managedgrafana/lib/aws-sdk-managedgrafana/types.rb', line 888 class RoleValues < Struct.new( :admin, :editor) SENSITIVE = [] include Aws::Structure end |
#editor ⇒ Array<String>
A list of groups from the SAML assertion attribute to grant the
Grafana Editor
role to.
888 889 890 891 892 893 |
# File 'gems/aws-sdk-managedgrafana/lib/aws-sdk-managedgrafana/types.rb', line 888 class RoleValues < Struct.new( :admin, :editor) SENSITIVE = [] include Aws::Structure end |