You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CostExplorer::Types::TotalImpactFilter

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing TotalImpactFilter as input to an Aws::Client method, you can use a vanilla Hash:

{
  numeric_operator: "EQUAL", # required, accepts EQUAL, GREATER_THAN_OR_EQUAL, LESS_THAN_OR_EQUAL, GREATER_THAN, LESS_THAN, BETWEEN
  start_value: 1.0, # required
  end_value: 1.0,
}

Filters cost anomalies based on the total impact.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#end_valueFloat

The upper bound dollar value used in the filter.

Returns:

  • (Float)

    The upper bound dollar value used in the filter.

#numeric_operatorString

The comparing value used in the filter.

Possible values:

  • EQUAL
  • GREATER_THAN_OR_EQUAL
  • LESS_THAN_OR_EQUAL
  • GREATER_THAN
  • LESS_THAN
  • BETWEEN

Returns:

  • (String)

    The comparing value used in the filter.

#start_valueFloat

The lower bound dollar value used in the filter.

Returns:

  • (Float)

    The lower bound dollar value used in the filter.