AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Describes the events for the specified Spot Fleet request during the specified time.

Spot Fleet events are delayed by up to 30 seconds before they can be described. This ensures that you can query by the last evaluated time and not miss a recorded event. Spot Fleet events are available for 48 hours.

For more information, see Monitor fleet events using Amazon EventBridge in the Amazon EC2 User Guide.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to DescribeSpotFleetRequestHistoryAsync.

Namespace: Amazon.EC2
Assembly: AWSSDK.EC2.dll
Version: 3.x.y.z

Syntax

C#
public virtual DescribeSpotFleetRequestHistoryResponse DescribeSpotFleetRequestHistory(
         DescribeSpotFleetRequestHistoryRequest request
)

Parameters

request
Type: Amazon.EC2.Model.DescribeSpotFleetRequestHistoryRequest

Container for the necessary parameters to execute the DescribeSpotFleetRequestHistory service method.

Return Value


The response from the DescribeSpotFleetRequestHistory service method, as returned by EC2.

Examples

This example returns the history for the specified Spot fleet starting at the specified time.

To describe Spot fleet history


var client = new AmazonEC2Client();
var response = client.DescribeSpotFleetRequestHistory(new DescribeSpotFleetRequestHistoryRequest 
{
    SpotFleetRequestId = "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE",
    StartTimeUtc = new DateTime(2015, 5, 26, 12, 0, 0, DateTimeKind.Utc)
});

List<HistoryRecord> historyRecords = response.HistoryRecords;
string nextToken = response.NextToken;
string spotFleetRequestId = response.SpotFleetRequestId;
DateTime startTime = response.StartTime;

            

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also