Class: Aws::Chime::Types::UserError

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-chime/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

Instance Attribute Details

#error_codeString

The error code.

Returns:

  • (String)


9038
9039
9040
9041
9042
9043
9044
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 9038

class UserError < Struct.new(
  :user_id,
  :error_code,
  :error_message)
  SENSITIVE = []
  include Aws::Structure
end

#error_messageString

The error message.

Returns:

  • (String)


9038
9039
9040
9041
9042
9043
9044
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 9038

class UserError < Struct.new(
  :user_id,
  :error_code,
  :error_message)
  SENSITIVE = []
  include Aws::Structure
end

#user_idString

The user ID for which the action failed.

Returns:

  • (String)


9038
9039
9040
9041
9042
9043
9044
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 9038

class UserError < Struct.new(
  :user_id,
  :error_code,
  :error_message)
  SENSITIVE = []
  include Aws::Structure
end