AWSConnectSendNotificationActionDefinition
Objective-C
@interface AWSConnectSendNotificationActionDefinition
Swift
class AWSConnectSendNotificationActionDefinition
Information about the send notification action.
Required parameters: [DeliveryMethod, Content, ContentType, Recipient]
-
Notification content. Supports variable injection. For more information, see JSONPath reference in the Amazon Connect Administrators Guide.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable content;
Swift
var content: String? { get set }
-
Content type format.
Declaration
Objective-C
@property (nonatomic) AWSConnectNotificationContentType contentType;
Swift
var contentType: AWSConnectNotificationContentType { get set }
-
Notification delivery method.
Declaration
Objective-C
@property (nonatomic) AWSConnectNotificationDeliveryType deliveryMethod;
Swift
var deliveryMethod: AWSConnectNotificationDeliveryType { get set }
-
Notification recipient.
Declaration
Objective-C
@property (nonatomic, strong) AWSConnectNotificationRecipientType *_Nullable recipient;
Swift
var recipient: AWSConnectNotificationRecipientType? { get set }
-
The subject of the email if the delivery method is
EMAIL
. Supports variable injection. For more information, see JSONPath reference in the Amazon Connect Administrators Guide.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable subject;
Swift
var subject: String? { get set }