Class: Aws::ManagedGrafana::Types::PermissionEntry

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

Overview

A structure containing the identity of one user or group and the ‘Admin`, `Editor`, or `Viewer` role that they have.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#roleString

Specifies whether the user or group has the ‘Admin`, `Editor`, or `Viewer` role.

Returns:

  • (String)


1222
1223
1224
1225
1226
1227
# File 'lib/aws-sdk-managedgrafana/types.rb', line 1222

class PermissionEntry < Struct.new(
  :role,
  :user)
  SENSITIVE = []
  include Aws::Structure
end

#userTypes::User

A structure with the ID of the user or group with this role.

Returns:



1222
1223
1224
1225
1226
1227
# File 'lib/aws-sdk-managedgrafana/types.rb', line 1222

class PermissionEntry < Struct.new(
  :role,
  :user)
  SENSITIVE = []
  include Aws::Structure
end