Class: Aws::IoTEvents::Types::SMSConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iotevents/types.rb

Overview

Contains the configuration information of SMS notifications.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#additional_messageString

The message that you want to send. The message can be up to 200 characters.

Returns:

  • (String)


2684
2685
2686
2687
2688
2689
2690
# File 'lib/aws-sdk-iotevents/types.rb', line 2684

class SMSConfiguration < Struct.new(
  :sender_id,
  :additional_message,
  :recipients)
  SENSITIVE = []
  include Aws::Structure
end

#recipientsArray<Types::RecipientDetail>

Specifies one or more recipients who receive the message.

You must [add the users that receive SMS messages to your AWS SSO store].

[1]: docs.aws.amazon.com/singlesignon/latest/userguide/addusers.html

Returns:



2684
2685
2686
2687
2688
2689
2690
# File 'lib/aws-sdk-iotevents/types.rb', line 2684

class SMSConfiguration < Struct.new(
  :sender_id,
  :additional_message,
  :recipients)
  SENSITIVE = []
  include Aws::Structure
end

#sender_idString

The sender ID.

Returns:

  • (String)


2684
2685
2686
2687
2688
2689
2690
# File 'lib/aws-sdk-iotevents/types.rb', line 2684

class SMSConfiguration < Struct.new(
  :sender_id,
  :additional_message,
  :recipients)
  SENSITIVE = []
  include Aws::Structure
end