Amazon AWS SDK Betriebsanweisung Seite 62

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 73
  • Inhaltsverzeichnis
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 61
this array to the InstanceId member of a TerminateInstancesRequest object, then passing that
object to the ec2.TerminateInstances API.
1
if (instanceIds.Count > 0)
{
try
5 {
TerminateInstancesRequest terminateRequest = new TerminateInstances
Request();
terminateRequest.InstanceId = instanceIds;
ec2.TerminateInstances(terminateRequest);
10 }
catch (AmazonEC2Exception e)
{
Console.WriteLine("Error terminating instances");
Console.WriteLine("Caught Exception: " + e.Message);
15 Console.WriteLine("Reponse Status Code: " + e.StatusCode);
Console.WriteLine("Error Code: " + e.ErrorCode);
Console.WriteLine("Request ID: " + e.RequestId);
}
}
20
Conclusion
Congratulations! You have just completed the getting started tutorial for developing Spot Instance software
with the AWS SDK for .NET.
Creating and Using an Amazon SQS Queue with
the AWS SDK for .NET
This topic demonstrates how to use the AWS SDK for .NET to create and use an Amazon Simple Queue
Service (Amazon SQS) queue.
The sample code in this topic is written in C#, but you can use the AWS SDK for .NET with any language
that is compatible with the Microsoft .NET Framework.
Topics
Create an Amazon SQS Client (p. 59)
Create an Amazon SQS Queue (p. 59)
Amazon SQS Queue URLs (p. 60)
Send an Amazon SQS Message (p. 60)
Receive a Message from an Amazon SQS Queue (p. 61)
Delete a Message from an Amazon SQS Queue (p. 62)
Related Resources (p. 63)
Version v2.0.0
58
AWS SDK for .NET Developer Guide
Conclusion
Seitenansicht 61
1 2 ... 57 58 59 60 61 62 63 64 65 66 67 ... 72 73

Kommentare zu diesen Handbüchern

Keine Kommentare