Class: Aws::ChimeSDKMeetings::Types::CreateAttendeeError

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-chimesdkmeetings/lib/aws-sdk-chimesdkmeetings/types.rb

Overview

The list of errors returned when errors are encountered during the BatchCreateAttendee and CreateAttendee actions. This includes external user IDs, error codes, and error messages.

Constant Summary collapse

SENSITIVE =
[:external_user_id]

Instance Attribute Summary collapse

Instance Attribute Details

#error_codeString

The error code.

Returns:

  • (String)


359
360
361
362
363
364
365
# File 'gems/aws-sdk-chimesdkmeetings/lib/aws-sdk-chimesdkmeetings/types.rb', line 359

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

#error_messageString

The error message.

Returns:

  • (String)


359
360
361
362
363
364
365
# File 'gems/aws-sdk-chimesdkmeetings/lib/aws-sdk-chimesdkmeetings/types.rb', line 359

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

#external_user_idString

The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.

Pattern: [-_&@+=,()\{\}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*

Values that begin with aws: are reserved. You can't configure a value that uses this prefix. Case insensitive.

Returns:

  • (String)


359
360
361
362
363
364
365
# File 'gems/aws-sdk-chimesdkmeetings/lib/aws-sdk-chimesdkmeetings/types.rb', line 359

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