AWSConnectParticipantSendMessageRequest
Objective-C
@interface AWSConnectParticipantSendMessageRequest
Swift
class AWSConnectParticipantSendMessageRequest
-
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable clientToken;
Swift
var clientToken: String? { get set }
-
The authentication token associated with the connection.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable connectionToken;
Swift
var connectionToken: String? { get set }
-
The content of the message.
For
text/plain
andtext/markdown
, the Length Constraints are Minimum of 1, Maximum of 1024.For
application/json
, the Length Constraints are Minimum of 1, Maximum of 12000.For
application/vnd.amazonaws.connect.message.interactive.response
, the Length Constraints are Minimum of 1, Maximum of 12288.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable content;
Swift
var content: String? { get set }
-
The type of the content. Supported types are
text/plain
,text/markdown
,application/json
, andapplication/vnd.amazonaws.connect.message.interactive.response
.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable contentType;
Swift
var contentType: String? { get set }