|
NAMEPaws::SNS::Publish - Arguments for method Publish on Paws::SNSDESCRIPTIONThis class represents the parameters used for calling the method Publish on the Amazon Simple Notification Service service. Use the attributes of this class as arguments to method Publish.You shouln't make instances of this class. Each attribute should be used as a named argument in the call to Publish. As an example: $service_obj->Publish(Att1 => $value1, Att2 => $value2, ...); Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. ATTRIBUTESREQUIRED Message => StrThe message you want to send to the topic.If you want to send the same message to all transport protocols, include the text of the message as a String value. If you want to send different messages for each transport protocol, set the value of the "MessageStructure" parameter to "json" and use a JSON object for the "Message" parameter. See the Examples section for the format of the JSON object. Constraints: Messages must be UTF-8 encoded strings at most 256 KB in size (262144 bytes, not 262144 characters). JSON-specific constraints:
MessageAttributes => Paws::SNS::MessageAttributeMapMessage attributes for Publish action.MessageStructure => StrSet "MessageStructure" to "json" if you want to send a different message for each protocol. For example, using one publish action, you can send a short message to your SMS subscribers and a longer message to your email subscribers. If you set "MessageStructure" to "json", the value of the "Message" parameter must:
You can define other top-level keys that define the message you want to send to a specific transport protocol (e.g., "http"). For information about sending different messages for each protocol using the AWS Management Console, go to Create Different Messages for Each Protocol in the Amazon Simple Notification Service Getting Started Guide. Valid value: "json" Subject => StrOptional parameter to be used as the "Subject" line when the message is delivered to email endpoints. This field will also be included, if present, in the standard JSON messages delivered to other endpoints.Constraints: Subjects must be ASCII text that begins with a letter, number, or punctuation mark; must not include line breaks or control characters; and must be less than 100 characters long. TargetArn => StrEither TopicArn or EndpointArn, but not both.TopicArn => StrThe topic you want to publish to.SEE ALSOThis class forms part of Paws, documenting arguments for method Publish in Paws::SNSBUGS and CONTRIBUTIONSThe source code is located here: https://github.com/pplu/aws-sdk-perlPlease report bugs to: https://github.com/pplu/aws-sdk-perl/issues
Visit the GSP FreeBSD Man Page Interface. |