Class: Aws::CostExplorer::Types::GetAnomalyMonitorsRequest

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 GetAnomalyMonitorsRequest data as a hash:

{
  monitor_arn_list: ["Value"],
  next_page_token: "NextPageToken",
  max_results: 1,
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The number of entries a paginated response contains.

Returns:

  • (Integer)


1912
1913
1914
1915
1916
1917
1918
# File 'lib/aws-sdk-costexplorer/types.rb', line 1912

class GetAnomalyMonitorsRequest < Struct.new(
  :monitor_arn_list,
  :next_page_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end

#monitor_arn_listArray<String>

A list of cost anomaly monitor ARNs.

Returns:

  • (Array<String>)


1912
1913
1914
1915
1916
1917
1918
# File 'lib/aws-sdk-costexplorer/types.rb', line 1912

class GetAnomalyMonitorsRequest < Struct.new(
  :monitor_arn_list,
  :next_page_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end

#next_page_tokenString

The token to retrieve the next set of results. AWS provides the token when the response from a previous call has more results than the maximum page size.

Returns:

  • (String)


1912
1913
1914
1915
1916
1917
1918
# File 'lib/aws-sdk-costexplorer/types.rb', line 1912

class GetAnomalyMonitorsRequest < Struct.new(
  :monitor_arn_list,
  :next_page_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end