User guide

if (topic.Attributes.Count > 0)
{
Console.WriteLine(" Attributes:");
foreach (var attr in topic.Attributes)
{
Console.WriteLine("{0} = {1}", attr.Key, attr.Value);
}
}
}
}
var subs = sns.GetSubscriptions();
if (subs.Any())
{
Console.WriteLine("Subscriptions:");
foreach (var sub in subs)
{
Console.WriteLine(" Subscription ARN: {0}", sub.Arn);
var attrs = sub.Attributes;
if (attrs.Any())
{
Console.WriteLine(" Attributes:");
foreach (var attr in attrs)
{
Console.WriteLine("{0} = {1}", attr.Key, attr.Value);
}
}
}
}
For related API reference information, see Amazon.SNS.Resources.
Amazon Simple Queue Service Programming
with the AWS SDK for .NET
The AWS SDK for .NET supports Amazon Simple Queue Service (Amazon SQS), which is a messaging
queue service that handles message or workflows between other components in a system. For more
information, see Amazon SQS
The following information introduces you to the Amazon SQS programming models in the SDK for .NET.
Topics
Programming Models (p. 120)
Version v2.0.0
119
AWS SDK for .NET Developer Guide
Amazon Simple Queue Service (Amazon SQS)