Amazon AWS SDK Guia do Utilizador Página 123

  • Descarregar
  • Adicionar aos meus manuais
  • Imprimir
  • Página
    / 155
  • Índice
  • MARCADORES
  • Avaliado. / 5. Com base em avaliações de clientes
Vista de página 122
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)
Vista de página 122
1 2 ... 118 119 120 121 122 123 124 125 126 127 128 ... 154 155

Comentários a estes Manuais

Sem comentários