Class: Aws::CostExplorer::Types::AnomalyDateInterval
- Inherits:
-
Struct
- Object
- Struct
- Aws::CostExplorer::Types::AnomalyDateInterval
- Defined in:
- gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb
Overview
Note:
When making an API call, you may pass AnomalyDateInterval data as a hash:
{
start_date: "YearMonthDay", # required
end_date: "YearMonthDay",
}
The time period for an anomaly.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_date ⇒ String
The last date an anomaly was observed.
-
#start_date ⇒ String
The first date an anomaly was observed.
Instance Attribute Details
#end_date ⇒ String
The last date an anomaly was observed.
90 91 92 93 94 95 |
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 90 class AnomalyDateInterval < Struct.new( :start_date, :end_date) SENSITIVE = [] include Aws::Structure end |
#start_date ⇒ String
The first date an anomaly was observed.
90 91 92 93 94 95 |
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 90 class AnomalyDateInterval < Struct.new( :start_date, :end_date) SENSITIVE = [] include Aws::Structure end |