Skip to content
This repository was archived by the owner on Jun 16, 2023. It is now read-only.

Commit 0fc0833

Browse files
author
Michael Khmelnitsky
committed
Updated the documentation.
1 parent 9c03c02 commit 0fc0833

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

doc_source/sns-document-history.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ The following table lists changes to the *Amazon Simple Notification Service Dev
55

66
| Date | Documentation Update |
77
| --- | --- |
8+
| October 10, 2019 | Fixed the code excerpt that initializes and uses the SNSMessageAttributeClass in the [To Publish a Message with Attributes to an Amazon SNS Topic Using the AWS SDK for \.NET](sns-tutorial-publish-message-with-attributes.md#publish-message-with-attributes-aws-dot-net)\. |
89
| October 8, 2019 | [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/sns/latest/dg/sns-document-history.html) |
910
| October 3, 2019 | Revised the information in the following sections: [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/sns/latest/dg/sns-document-history.html) |
1011
| September 23, 2019 | Revised the information in the following sections: [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/sns/latest/dg/sns-document-history.html) |

doc_source/sns-tutorial-publish-message-with-attributes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -277,10 +277,10 @@ For detailed instructions on publishing a message with attributes to an Amazon S
277277
message.AddAttribute("encrypted", encryptedVal);
278278
279279
// Publish the message.
280-
message.Publish(snsClient, topicArn);
280+
String msgId = message.Publish(snsClient, topicArn);
281281
282282
// Print the MessageId of the published message.
283-
Console.WriteLine("MessageId: " + publishResponse.MessageId);
283+
Console.WriteLine("MessageId: " + msgId);
284284
```
285285

286286
1. Compile and run your code\.

0 commit comments

Comments
 (0)