Class: Aws::Chime::Types::CreateAttendeeError
- Inherits:
-
Struct
- Object
- Struct
- Aws::Chime::Types::CreateAttendeeError
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-chime/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
-
#error_code ⇒ String
The error code.
-
#error_message ⇒ String
The error message.
-
#external_user_id ⇒ String
The Amazon Chime SDK external user ID.
Instance Attribute Details
#error_code ⇒ String
The error code.
1705 1706 1707 1708 1709 1710 1711 |
# File 'lib/aws-sdk-chime/types.rb', line 1705 class CreateAttendeeError < Struct.new( :external_user_id, :error_code, :error_message) SENSITIVE = [:external_user_id] include Aws::Structure end |
#error_message ⇒ String
The error message.
1705 1706 1707 1708 1709 1710 1711 |
# File 'lib/aws-sdk-chime/types.rb', line 1705 class CreateAttendeeError < Struct.new( :external_user_id, :error_code, :error_message) SENSITIVE = [:external_user_id] include Aws::Structure end |
#external_user_id ⇒ String
The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.
1705 1706 1707 1708 1709 1710 1711 |
# File 'lib/aws-sdk-chime/types.rb', line 1705 class CreateAttendeeError < Struct.new( :external_user_id, :error_code, :error_message) SENSITIVE = [:external_user_id] include Aws::Structure end |