Class: Aws::ChimeSDKMeetings::Types::CreateAttendeeError
- Inherits:
-
Struct
- Object
- Struct
- Aws::ChimeSDKMeetings::Types::CreateAttendeeError
- Includes:
- Structure
- Defined in:
- 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
-
#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.
359 360 361 362 363 364 365 |
# File '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_message ⇒ String
The error message.
359 360 361 362 363 364 365 |
# File '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_id ⇒ String
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.
359 360 361 362 363 364 365 |
# File '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 |