Method: Aws::Pinpoint::Types::EndpointRequest#address
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
#address ⇒ String
The destination address for messages or push notifications that you send to the endpoint. The address varies by channel. For a push-notification channel, use the token provided by the push notification service, such as an Apple Push Notification service (APNs) device token or a Firebase Cloud Messaging (FCM) registration token. For the SMS channel, use a phone number in E.164 format, such as +12065550100. For the email channel, use an email address.
6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 6575 class EndpointRequest < Struct.new( :address, :attributes, :channel_type, :demographic, :effective_date, :endpoint_status, :location, :metrics, :opt_out, :request_id, :user) include Aws::Structure end |