Class: Aws::CostExplorer::Types::TotalImpactFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::CostExplorer::Types::TotalImpactFilter
- Defined in:
- gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb
Overview
Note:
When making an API call, you may pass TotalImpactFilter data as a 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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_value ⇒ Float
The upper bound dollar value that's used in the filter.
-
#numeric_operator ⇒ String
The comparing value that's used in the filter.
-
#start_value ⇒ Float
The lower bound dollar value that's used in the filter.
Instance Attribute Details
#end_value ⇒ Float
The upper bound dollar value that's used in the filter.
7334 7335 7336 7337 7338 7339 7340 |
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 7334 class TotalImpactFilter < Struct.new( :numeric_operator, :start_value, :end_value) SENSITIVE = [] include Aws::Structure end |
#numeric_operator ⇒ String
The comparing value that's used in the filter.
7334 7335 7336 7337 7338 7339 7340 |
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 7334 class TotalImpactFilter < Struct.new( :numeric_operator, :start_value, :end_value) SENSITIVE = [] include Aws::Structure end |
#start_value ⇒ Float
The lower bound dollar value that's used in the filter.
7334 7335 7336 7337 7338 7339 7340 |
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 7334 class TotalImpactFilter < Struct.new( :numeric_operator, :start_value, :end_value) SENSITIVE = [] include Aws::Structure end |