Class: Aws::ManagedGrafana::Types::User
- Inherits:
-
Struct
- Object
- Struct
- Aws::ManagedGrafana::Types::User
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-managedgrafana/types.rb
Overview
A structure that specifies one user or group in the workspace.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The ID of the user or group.
-
#type ⇒ String
Specifies whether this is a single user or a group.
Instance Attribute Details
#id ⇒ String
The ID of the user or group.
Pattern: ‘^([0-9a-fA-F]10-|)[A-Fa-f0-9]8-[A-Fa-f0-9]4-[A-Fa-f0-9]4-[A-Fa-f0-9]4-[A-Fa-f0-9]12$`
1903 1904 1905 1906 1907 1908 |
# File 'lib/aws-sdk-managedgrafana/types.rb', line 1903 class User < Struct.new( :id, :type) SENSITIVE = [] include Aws::Structure end |