Class: Aws::Chime::Types::UserError
- Inherits:
-
Struct
- Object
- Struct
- Aws::Chime::Types::UserError
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-chime/types.rb
Overview
The list of errors returned when errors are encountered during the BatchSuspendUser, BatchUnsuspendUser, or BatchUpdateUser actions. This includes user IDs, error codes, and error messages.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_code ⇒ String
The error code.
-
#error_message ⇒ String
The error message.
-
#user_id ⇒ String
The user ID for which the action failed.
Instance Attribute Details
#error_code ⇒ String
The error code.
9038 9039 9040 9041 9042 9043 9044 |
# File 'lib/aws-sdk-chime/types.rb', line 9038 class UserError < Struct.new( :user_id, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |