Class: Aws::CostExplorer::Types::ProvideAnomalyFeedbackRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-costexplorer/types.rb

Overview

Note:

When making an API call, you may pass ProvideAnomalyFeedbackRequest data as a hash:

{
  anomaly_id: "GenericString", # required
  feedback: "YES", # required, accepts YES, NO, PLANNED_ACTIVITY
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#anomaly_idString

A cost anomaly ID.

Returns:

  • (String)


5130
5131
5132
5133
5134
5135
# File 'lib/aws-sdk-costexplorer/types.rb', line 5130

class ProvideAnomalyFeedbackRequest < Struct.new(
  :anomaly_id,
  :feedback)
  SENSITIVE = []
  include Aws::Structure
end

#feedbackString

Describes whether the cost anomaly was a planned activity or you considered it an anomaly.

Returns:

  • (String)


5130
5131
5132
5133
5134
5135
# File 'lib/aws-sdk-costexplorer/types.rb', line 5130

class ProvideAnomalyFeedbackRequest < Struct.new(
  :anomaly_id,
  :feedback)
  SENSITIVE = []
  include Aws::Structure
end