EC2 / Client / describe_capacity_block_extension_history

describe_capacity_block_extension_history#

EC2.Client.describe_capacity_block_extension_history(**kwargs)#

Describes the events for the specified Capacity Block extension during the specified time.

See also: AWS API Documentation

Request Syntax

response = client.describe_capacity_block_extension_history(
    CapacityReservationIds=[
        'string',
    ],
    NextToken='string',
    MaxResults=123,
    Filters=[
        {
            'Name': 'string',
            'Values': [
                'string',
            ]
        },
    ],
    DryRun=True|False
)
Parameters:
  • CapacityReservationIds (list) –

    The IDs of Capacity Block reservations that you want to display the history for.

    • (string) –

  • NextToken (string) – The token to use to retrieve the next page of results.

  • MaxResults (integer) – The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

  • Filters (list) –

    One or more filters

    • availability-zone - The Availability Zone of the extension.

    • availability-zone-id - The Availability Zone ID of the extension.

    • capacity-block-extension-offering-id - The ID of the extension offering.

    • capacity-block-extension-status - The status of the extension ( payment-pending | payment-failed | payment-succeeded).

    • capacity-reservation-id - The reservation ID of the extension.

    • instance-type - The instance type of the extension.

    • (dict) –

      A filter name and value pair that is used to return a more specific list of results from a describe operation. Filters can be used to match a set of resources by specific criteria, such as tags, attributes, or IDs.

      If you specify multiple filters, the filters are joined with an AND, and the request returns only results that match all of the specified filters.

      • Name (string) –

        The name of the filter. Filter names are case-sensitive.

      • Values (list) –

        The filter values. Filter values are case-sensitive. If you specify multiple values for a filter, the values are joined with an OR, and the request returns all results that match any of the specified values.

        • (string) –

  • DryRun (boolean) – Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

Return type:

dict

Returns:

Response Syntax

{
    'CapacityBlockExtensions': [
        {
            'CapacityReservationId': 'string',
            'InstanceType': 'string',
            'InstanceCount': 123,
            'AvailabilityZone': 'string',
            'AvailabilityZoneId': 'string',
            'CapacityBlockExtensionOfferingId': 'string',
            'CapacityBlockExtensionDurationHours': 123,
            'CapacityBlockExtensionStatus': 'payment-pending'|'payment-failed'|'payment-succeeded',
            'CapacityBlockExtensionPurchaseDate': datetime(2015, 1, 1),
            'CapacityBlockExtensionStartDate': datetime(2015, 1, 1),
            'CapacityBlockExtensionEndDate': datetime(2015, 1, 1),
            'UpfrontFee': 'string',
            'CurrencyCode': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • CapacityBlockExtensions (list) –

      Describes one or more of your Capacity Block extensions. The results describe only the Capacity Block extensions in the Amazon Web Services Region that you’re currently using.

      • (dict) –

        Describes a Capacity Block extension. With an extension, you can extend the duration of time for an existing Capacity Block.

        • CapacityReservationId (string) –

          The reservation ID of the Capacity Block extension.

        • InstanceType (string) –

          The instance type of the Capacity Block extension.

        • InstanceCount (integer) –

          The number of instances in the Capacity Block extension.

        • AvailabilityZone (string) –

          The Availability Zone of the Capacity Block extension.

        • AvailabilityZoneId (string) –

          The Availability Zone ID of the Capacity Block extension.

        • CapacityBlockExtensionOfferingId (string) –

          The ID of the Capacity Block extension offering.

        • CapacityBlockExtensionDurationHours (integer) –

          The duration of the Capacity Block extension in hours.

        • CapacityBlockExtensionStatus (string) –

          The status of the Capacity Block extension. A Capacity Block extension can have one of the following statuses:

          • payment-pending - The Capacity Block extension payment is processing. If your payment can’t be processed within 12 hours, the Capacity Block extension is failed.

          • payment-failed - Payment for the Capacity Block extension request was not successful.

          • payment-succeeded - Payment for the Capacity Block extension request was successful. You receive an invoice that reflects the one-time upfront payment. In the invoice, you can associate the paid amount with the Capacity Block reservation ID.

        • CapacityBlockExtensionPurchaseDate (datetime) –

          The date when the Capacity Block extension was purchased.

        • CapacityBlockExtensionStartDate (datetime) –

          The start date of the Capacity Block extension.

        • CapacityBlockExtensionEndDate (datetime) –

          The end date of the Capacity Block extension.

        • UpfrontFee (string) –

          The total price to be paid up front.

        • CurrencyCode (string) –

          The currency of the payment for the Capacity Block extension.

    • NextToken (string) –

      The token to use to retrieve the next page of results. This value is null when there are no more results to return.