aws-sdk-costexplorer 1.50.0 → 1.55.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-costexplorer.rb +1 -1
- data/lib/aws-sdk-costexplorer/client.rb +61 -29
- data/lib/aws-sdk-costexplorer/client_api.rb +24 -2
- data/lib/aws-sdk-costexplorer/types.rb +94 -18
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8ddcbfcf351adf9c4c5b13e0b62e3fff3b71543a1a97774f8f8199954319646c
|
4
|
+
data.tar.gz: 248b0bf1505f8715185c88ae65cc13453dc4c757bdafee566eeca329ed7438ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa2fc50f1aea036e02324f1eb5bc6915fe646ce39a0a71212781797987c06df9b8f60fa3448c3a9e32f6a194a8aa3efcdfe29c398a44096560b430566b35fa8a
|
7
|
+
data.tar.gz: 8e18b95afce70c86a416d086053eada9187f1c206f8769a3db903f465d43892796eb7fe15ac8e56a75af4fa1bb7eecf5dc476011ff2cd585611b701af139183f
|
data/lib/aws-sdk-costexplorer.rb
CHANGED
@@ -385,6 +385,7 @@ module Aws::CostExplorer
|
|
385
385
|
# cost_categories: {
|
386
386
|
# key: "CostCategoryName",
|
387
387
|
# values: ["Value"],
|
388
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
388
389
|
# },
|
389
390
|
# },
|
390
391
|
# dimensional_value_count: 1,
|
@@ -422,7 +423,7 @@ module Aws::CostExplorer
|
|
422
423
|
# anomaly_subscription: { # required
|
423
424
|
# subscription_arn: "GenericString",
|
424
425
|
# account_id: "GenericString",
|
425
|
-
# monitor_arn_list: ["
|
426
|
+
# monitor_arn_list: ["Arn"], # required
|
426
427
|
# subscribers: [ # required
|
427
428
|
# {
|
428
429
|
# address: "SubscriberAddress",
|
@@ -505,6 +506,7 @@ module Aws::CostExplorer
|
|
505
506
|
# cost_categories: {
|
506
507
|
# key: "CostCategoryName",
|
507
508
|
# values: ["Value"],
|
509
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
508
510
|
# },
|
509
511
|
# },
|
510
512
|
# },
|
@@ -655,6 +657,11 @@ module Aws::CostExplorer
|
|
655
657
|
# resp.cost_category.rules[0].rule.cost_categories.key #=> String
|
656
658
|
# resp.cost_category.rules[0].rule.cost_categories.values #=> Array
|
657
659
|
# resp.cost_category.rules[0].rule.cost_categories.values[0] #=> String
|
660
|
+
# resp.cost_category.rules[0].rule.cost_categories.match_options #=> Array
|
661
|
+
# resp.cost_category.rules[0].rule.cost_categories.match_options[0] #=> String, one of "EQUALS", "STARTS_WITH", "ENDS_WITH", "CONTAINS", "CASE_SENSITIVE", "CASE_INSENSITIVE"
|
662
|
+
# resp.cost_category.processing_status #=> Array
|
663
|
+
# resp.cost_category.processing_status[0].component #=> String, one of "COST_EXPLORER"
|
664
|
+
# resp.cost_category.processing_status[0].status #=> String, one of "PROCESSING", "APPLIED"
|
658
665
|
#
|
659
666
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/DescribeCostCategoryDefinition AWS API Documentation
|
660
667
|
#
|
@@ -801,6 +808,8 @@ module Aws::CostExplorer
|
|
801
808
|
# resp.anomaly_monitors[0].monitor_specification.cost_categories.key #=> String
|
802
809
|
# resp.anomaly_monitors[0].monitor_specification.cost_categories.values #=> Array
|
803
810
|
# resp.anomaly_monitors[0].monitor_specification.cost_categories.values[0] #=> String
|
811
|
+
# resp.anomaly_monitors[0].monitor_specification.cost_categories.match_options #=> Array
|
812
|
+
# resp.anomaly_monitors[0].monitor_specification.cost_categories.match_options[0] #=> String, one of "EQUALS", "STARTS_WITH", "ENDS_WITH", "CONTAINS", "CASE_SENSITIVE", "CASE_INSENSITIVE"
|
804
813
|
# resp.anomaly_monitors[0].dimensional_value_count #=> Integer
|
805
814
|
# resp.next_page_token #=> String
|
806
815
|
#
|
@@ -875,13 +884,17 @@ module Aws::CostExplorer
|
|
875
884
|
# `UsageQuantity`, that you want the request to return. You can also
|
876
885
|
# filter and group your data by various dimensions, such as `SERVICE` or
|
877
886
|
# `AZ`, in a specific time range. For a complete list of valid
|
878
|
-
# dimensions, see the [GetDimensionValues][1] operation.
|
879
|
-
# in an organization in AWS Organizations have access to all
|
880
|
-
# accounts.
|
887
|
+
# dimensions, see the [GetDimensionValues][1] operation. Management
|
888
|
+
# account in an organization in AWS Organizations have access to all
|
889
|
+
# member accounts.
|
890
|
+
#
|
891
|
+
# For information about filter limitations, see [Quotas and
|
892
|
+
# restrictions][2] in the *Billing and Cost Management User Guide*.
|
881
893
|
#
|
882
894
|
#
|
883
895
|
#
|
884
896
|
# [1]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_GetDimensionValues.html
|
897
|
+
# [2]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-limits.html
|
885
898
|
#
|
886
899
|
# @option params [required, Types::DateInterval] :time_period
|
887
900
|
# Sets the start and end dates for retrieving AWS costs. The start date
|
@@ -988,6 +1001,7 @@ module Aws::CostExplorer
|
|
988
1001
|
# cost_categories: {
|
989
1002
|
# key: "CostCategoryName",
|
990
1003
|
# values: ["Value"],
|
1004
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
991
1005
|
# },
|
992
1006
|
# },
|
993
1007
|
# metrics: ["MetricName"], # required
|
@@ -1035,8 +1049,8 @@ module Aws::CostExplorer
|
|
1035
1049
|
# return. You can also filter and group your data by various dimensions,
|
1036
1050
|
# such as `SERVICE` or `AZ`, in a specific time range. For a complete
|
1037
1051
|
# list of valid dimensions, see the [GetDimensionValues][1] operation.
|
1038
|
-
#
|
1039
|
-
# all member accounts. This API is currently available for the Amazon
|
1052
|
+
# Management account in an organization in AWS Organizations have access
|
1053
|
+
# to all member accounts. This API is currently available for the Amazon
|
1040
1054
|
# Elastic Compute Cloud – Compute service only.
|
1041
1055
|
#
|
1042
1056
|
# <note markdown="1"> This is an opt-in only feature. You can enable this feature from the
|
@@ -1107,7 +1121,7 @@ module Aws::CostExplorer
|
|
1107
1121
|
#
|
1108
1122
|
# @option params [Array<Types::GroupDefinition>] :group_by
|
1109
1123
|
# You can group Amazon Web Services costs using up to two different
|
1110
|
-
# groups:
|
1124
|
+
# groups: `DIMENSION`, `TAG`, `COST_CATEGORY`.
|
1111
1125
|
#
|
1112
1126
|
# @option params [String] :next_page_token
|
1113
1127
|
# The token to retrieve the next set of results. AWS provides the token
|
@@ -1155,6 +1169,7 @@ module Aws::CostExplorer
|
|
1155
1169
|
# cost_categories: {
|
1156
1170
|
# key: "CostCategoryName",
|
1157
1171
|
# values: ["Value"],
|
1172
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
1158
1173
|
# },
|
1159
1174
|
# },
|
1160
1175
|
# metrics: ["MetricName"],
|
@@ -1286,6 +1301,7 @@ module Aws::CostExplorer
|
|
1286
1301
|
# cost_categories: {
|
1287
1302
|
# key: "CostCategoryName",
|
1288
1303
|
# values: ["Value"],
|
1304
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
1289
1305
|
# },
|
1290
1306
|
# },
|
1291
1307
|
# prediction_interval_level: 1,
|
@@ -1486,11 +1502,11 @@ module Aws::CostExplorer
|
|
1486
1502
|
# Retrieves the reservation coverage for your account. This enables you
|
1487
1503
|
# to see how much of your Amazon Elastic Compute Cloud, Amazon
|
1488
1504
|
# ElastiCache, Amazon Relational Database Service, or Amazon Redshift
|
1489
|
-
# usage is covered by a reservation. An organization's
|
1490
|
-
# can see the coverage of the associated member accounts. This
|
1491
|
-
# dimensions, Cost Categories, and nested expressions. For any
|
1492
|
-
# period, you can filter data about reservation usage by the
|
1493
|
-
# dimensions:
|
1505
|
+
# usage is covered by a reservation. An organization's management
|
1506
|
+
# account can see the coverage of the associated member accounts. This
|
1507
|
+
# supports dimensions, Cost Categories, and nested expressions. For any
|
1508
|
+
# time period, you can filter data about reservation usage by the
|
1509
|
+
# following dimensions:
|
1494
1510
|
#
|
1495
1511
|
# * AZ
|
1496
1512
|
#
|
@@ -1662,6 +1678,7 @@ module Aws::CostExplorer
|
|
1662
1678
|
# cost_categories: {
|
1663
1679
|
# key: "CostCategoryName",
|
1664
1680
|
# values: ["Value"],
|
1681
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
1665
1682
|
# },
|
1666
1683
|
# },
|
1667
1684
|
# metrics: ["MetricName"],
|
@@ -1743,8 +1760,8 @@ module Aws::CostExplorer
|
|
1743
1760
|
#
|
1744
1761
|
# @option params [String] :account_scope
|
1745
1762
|
# The account scope that you want your recommendations for. Amazon Web
|
1746
|
-
# Services calculates recommendations including the
|
1747
|
-
# member accounts if the value is set to `PAYER`. If the value is
|
1763
|
+
# Services calculates recommendations including the management account
|
1764
|
+
# and member accounts if the value is set to `PAYER`. If the value is
|
1748
1765
|
# `LINKED`, recommendations are calculated for individual member
|
1749
1766
|
# accounts only.
|
1750
1767
|
#
|
@@ -1871,11 +1888,11 @@ module Aws::CostExplorer
|
|
1871
1888
|
req.send_request(options)
|
1872
1889
|
end
|
1873
1890
|
|
1874
|
-
# Retrieves the reservation utilization for your account.
|
1875
|
-
# in an organization have access to member accounts. You can
|
1876
|
-
# by dimensions in a time period. You can use
|
1877
|
-
# determine the possible dimension values.
|
1878
|
-
# by `SUBSCRIPTION_ID`.
|
1891
|
+
# Retrieves the reservation utilization for your account. Management
|
1892
|
+
# account in an organization have access to member accounts. You can
|
1893
|
+
# filter data by dimensions in a time period. You can use
|
1894
|
+
# `GetDimensionValues` to determine the possible dimension values.
|
1895
|
+
# Currently, you can group only by `SUBSCRIPTION_ID`.
|
1879
1896
|
#
|
1880
1897
|
# @option params [required, Types::DateInterval] :time_period
|
1881
1898
|
# Sets the start and end dates for retrieving RI utilization. The start
|
@@ -1983,6 +2000,7 @@ module Aws::CostExplorer
|
|
1983
2000
|
# cost_categories: {
|
1984
2001
|
# key: "CostCategoryName",
|
1985
2002
|
# values: ["Value"],
|
2003
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
1986
2004
|
# },
|
1987
2005
|
# },
|
1988
2006
|
# next_page_token: "NextPageToken",
|
@@ -2170,6 +2188,7 @@ module Aws::CostExplorer
|
|
2170
2188
|
# cost_categories: {
|
2171
2189
|
# key: "CostCategoryName",
|
2172
2190
|
# values: ["Value"],
|
2191
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
2173
2192
|
# },
|
2174
2193
|
# },
|
2175
2194
|
# configuration: {
|
@@ -2186,6 +2205,7 @@ module Aws::CostExplorer
|
|
2186
2205
|
# resp.metadata.recommendation_id #=> String
|
2187
2206
|
# resp.metadata.generation_timestamp #=> String
|
2188
2207
|
# resp.metadata.lookback_period_in_days #=> String, one of "SEVEN_DAYS", "THIRTY_DAYS", "SIXTY_DAYS"
|
2208
|
+
# resp.metadata.additional_metadata #=> String
|
2189
2209
|
# resp.summary.total_recommendation_count #=> String
|
2190
2210
|
# resp.summary.estimated_total_monthly_savings_amount #=> String
|
2191
2211
|
# resp.summary.savings_currency_code #=> String
|
@@ -2261,10 +2281,10 @@ module Aws::CostExplorer
|
|
2261
2281
|
|
2262
2282
|
# Retrieves the Savings Plans covered for your account. This enables you
|
2263
2283
|
# to see how much of your cost is covered by a Savings Plan. An
|
2264
|
-
# organization’s
|
2265
|
-
# member accounts. This supports dimensions, Cost Categories,
|
2266
|
-
# expressions. For any time period, you can filter data for
|
2267
|
-
# Plans usage with the following dimensions:
|
2284
|
+
# organization’s management account can see the coverage of the
|
2285
|
+
# associated member accounts. This supports dimensions, Cost Categories,
|
2286
|
+
# and nested expressions. For any time period, you can filter data for
|
2287
|
+
# Savings Plans usage with the following dimensions:
|
2268
2288
|
#
|
2269
2289
|
# * `LINKED_ACCOUNT`
|
2270
2290
|
#
|
@@ -2377,6 +2397,7 @@ module Aws::CostExplorer
|
|
2377
2397
|
# cost_categories: {
|
2378
2398
|
# key: "CostCategoryName",
|
2379
2399
|
# values: ["Value"],
|
2400
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
2380
2401
|
# },
|
2381
2402
|
# },
|
2382
2403
|
# metrics: ["MetricName"],
|
@@ -2421,8 +2442,8 @@ module Aws::CostExplorer
|
|
2421
2442
|
#
|
2422
2443
|
# @option params [String] :account_scope
|
2423
2444
|
# The account scope that you want your recommendations for. Amazon Web
|
2424
|
-
# Services calculates recommendations including the
|
2425
|
-
# member accounts if the value is set to `PAYER`. If the value is
|
2445
|
+
# Services calculates recommendations including the management account
|
2446
|
+
# and member accounts if the value is set to `PAYER`. If the value is
|
2426
2447
|
# `LINKED`, recommendations are calculated for individual member
|
2427
2448
|
# accounts only.
|
2428
2449
|
#
|
@@ -2495,6 +2516,7 @@ module Aws::CostExplorer
|
|
2495
2516
|
# cost_categories: {
|
2496
2517
|
# key: "CostCategoryName",
|
2497
2518
|
# values: ["Value"],
|
2519
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
2498
2520
|
# },
|
2499
2521
|
# },
|
2500
2522
|
# })
|
@@ -2503,6 +2525,7 @@ module Aws::CostExplorer
|
|
2503
2525
|
#
|
2504
2526
|
# resp.metadata.recommendation_id #=> String
|
2505
2527
|
# resp.metadata.generation_timestamp #=> String
|
2528
|
+
# resp.metadata.additional_metadata #=> String
|
2506
2529
|
# resp.savings_plans_purchase_recommendation.account_scope #=> String, one of "PAYER", "LINKED"
|
2507
2530
|
# resp.savings_plans_purchase_recommendation.savings_plans_type #=> String, one of "COMPUTE_SP", "EC2_INSTANCE_SP"
|
2508
2531
|
# resp.savings_plans_purchase_recommendation.term_in_years #=> String, one of "ONE_YEAR", "THREE_YEARS"
|
@@ -2550,7 +2573,7 @@ module Aws::CostExplorer
|
|
2550
2573
|
end
|
2551
2574
|
|
2552
2575
|
# Retrieves the Savings Plans utilization for your account across date
|
2553
|
-
# ranges with daily or monthly granularity.
|
2576
|
+
# ranges with daily or monthly granularity. Management account in an
|
2554
2577
|
# organization have access to member accounts. You can use
|
2555
2578
|
# `GetDimensionValues` in `SAVINGS_PLANS` to determine the possible
|
2556
2579
|
# dimension values.
|
@@ -2637,6 +2660,7 @@ module Aws::CostExplorer
|
|
2637
2660
|
# cost_categories: {
|
2638
2661
|
# key: "CostCategoryName",
|
2639
2662
|
# values: ["Value"],
|
2663
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
2640
2664
|
# },
|
2641
2665
|
# },
|
2642
2666
|
# })
|
@@ -2768,6 +2792,7 @@ module Aws::CostExplorer
|
|
2768
2792
|
# cost_categories: {
|
2769
2793
|
# key: "CostCategoryName",
|
2770
2794
|
# values: ["Value"],
|
2795
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
2771
2796
|
# },
|
2772
2797
|
# },
|
2773
2798
|
# next_token: "NextPageToken",
|
@@ -2950,6 +2975,7 @@ module Aws::CostExplorer
|
|
2950
2975
|
# cost_categories: {
|
2951
2976
|
# key: "CostCategoryName",
|
2952
2977
|
# values: ["Value"],
|
2978
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
2953
2979
|
# },
|
2954
2980
|
# },
|
2955
2981
|
# prediction_interval_level: 1,
|
@@ -3018,6 +3044,11 @@ module Aws::CostExplorer
|
|
3018
3044
|
# resp.cost_category_references[0].effective_start #=> String
|
3019
3045
|
# resp.cost_category_references[0].effective_end #=> String
|
3020
3046
|
# resp.cost_category_references[0].number_of_rules #=> Integer
|
3047
|
+
# resp.cost_category_references[0].processing_status #=> Array
|
3048
|
+
# resp.cost_category_references[0].processing_status[0].component #=> String, one of "COST_EXPLORER"
|
3049
|
+
# resp.cost_category_references[0].processing_status[0].status #=> String, one of "PROCESSING", "APPLIED"
|
3050
|
+
# resp.cost_category_references[0].values #=> Array
|
3051
|
+
# resp.cost_category_references[0].values[0] #=> String
|
3021
3052
|
# resp.next_token #=> String
|
3022
3053
|
#
|
3023
3054
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/ListCostCategoryDefinitions AWS API Documentation
|
@@ -3108,7 +3139,7 @@ module Aws::CostExplorer
|
|
3108
3139
|
# notifications.
|
3109
3140
|
#
|
3110
3141
|
# @option params [Array<String>] :monitor_arn_list
|
3111
|
-
# A list of cost anomaly
|
3142
|
+
# A list of cost anomaly monitor ARNs.
|
3112
3143
|
#
|
3113
3144
|
# @option params [Array<Types::Subscriber>] :subscribers
|
3114
3145
|
# The update to the subscriber list.
|
@@ -3126,7 +3157,7 @@ module Aws::CostExplorer
|
|
3126
3157
|
# subscription_arn: "GenericString", # required
|
3127
3158
|
# threshold: 1.0,
|
3128
3159
|
# frequency: "DAILY", # accepts DAILY, IMMEDIATE, WEEKLY
|
3129
|
-
# monitor_arn_list: ["
|
3160
|
+
# monitor_arn_list: ["Arn"],
|
3130
3161
|
# subscribers: [
|
3131
3162
|
# {
|
3132
3163
|
# address: "SubscriberAddress",
|
@@ -3209,6 +3240,7 @@ module Aws::CostExplorer
|
|
3209
3240
|
# cost_categories: {
|
3210
3241
|
# key: "CostCategoryName",
|
3211
3242
|
# values: ["Value"],
|
3243
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
3212
3244
|
# },
|
3213
3245
|
# },
|
3214
3246
|
# },
|
@@ -3242,7 +3274,7 @@ module Aws::CostExplorer
|
|
3242
3274
|
params: params,
|
3243
3275
|
config: config)
|
3244
3276
|
context[:gem_name] = 'aws-sdk-costexplorer'
|
3245
|
-
context[:gem_version] = '1.
|
3277
|
+
context[:gem_version] = '1.55.0'
|
3246
3278
|
Seahorse::Client::Request.new(handlers, context)
|
3247
3279
|
end
|
3248
3280
|
|
@@ -35,13 +35,18 @@ module Aws::CostExplorer
|
|
35
35
|
CostCategory = Shapes::StructureShape.new(name: 'CostCategory')
|
36
36
|
CostCategoryMaxResults = Shapes::IntegerShape.new(name: 'CostCategoryMaxResults')
|
37
37
|
CostCategoryName = Shapes::StringShape.new(name: 'CostCategoryName')
|
38
|
+
CostCategoryProcessingStatus = Shapes::StructureShape.new(name: 'CostCategoryProcessingStatus')
|
39
|
+
CostCategoryProcessingStatusList = Shapes::ListShape.new(name: 'CostCategoryProcessingStatusList')
|
38
40
|
CostCategoryReference = Shapes::StructureShape.new(name: 'CostCategoryReference')
|
39
41
|
CostCategoryReferencesList = Shapes::ListShape.new(name: 'CostCategoryReferencesList')
|
40
42
|
CostCategoryRule = Shapes::StructureShape.new(name: 'CostCategoryRule')
|
41
43
|
CostCategoryRuleVersion = Shapes::StringShape.new(name: 'CostCategoryRuleVersion')
|
42
44
|
CostCategoryRulesList = Shapes::ListShape.new(name: 'CostCategoryRulesList')
|
45
|
+
CostCategoryStatus = Shapes::StringShape.new(name: 'CostCategoryStatus')
|
46
|
+
CostCategoryStatusComponent = Shapes::StringShape.new(name: 'CostCategoryStatusComponent')
|
43
47
|
CostCategoryValue = Shapes::StringShape.new(name: 'CostCategoryValue')
|
44
48
|
CostCategoryValues = Shapes::StructureShape.new(name: 'CostCategoryValues')
|
49
|
+
CostCategoryValuesList = Shapes::ListShape.new(name: 'CostCategoryValuesList')
|
45
50
|
Coverage = Shapes::StructureShape.new(name: 'Coverage')
|
46
51
|
CoverageByTime = Shapes::StructureShape.new(name: 'CoverageByTime')
|
47
52
|
CoverageCost = Shapes::StructureShape.new(name: 'CoverageCost')
|
@@ -149,6 +154,7 @@ module Aws::CostExplorer
|
|
149
154
|
MetricValue = Shapes::StructureShape.new(name: 'MetricValue')
|
150
155
|
Metrics = Shapes::MapShape.new(name: 'Metrics')
|
151
156
|
ModifyRecommendationDetail = Shapes::StructureShape.new(name: 'ModifyRecommendationDetail')
|
157
|
+
MonitorArnList = Shapes::ListShape.new(name: 'MonitorArnList')
|
152
158
|
MonitorDimension = Shapes::StringShape.new(name: 'MonitorDimension')
|
153
159
|
MonitorType = Shapes::StringShape.new(name: 'MonitorType')
|
154
160
|
NetRISavings = Shapes::StringShape.new(name: 'NetRISavings')
|
@@ -298,7 +304,7 @@ module Aws::CostExplorer
|
|
298
304
|
|
299
305
|
AnomalySubscription.add_member(:subscription_arn, Shapes::ShapeRef.new(shape: GenericString, location_name: "SubscriptionArn"))
|
300
306
|
AnomalySubscription.add_member(:account_id, Shapes::ShapeRef.new(shape: GenericString, location_name: "AccountId"))
|
301
|
-
AnomalySubscription.add_member(:monitor_arn_list, Shapes::ShapeRef.new(shape:
|
307
|
+
AnomalySubscription.add_member(:monitor_arn_list, Shapes::ShapeRef.new(shape: MonitorArnList, required: true, location_name: "MonitorArnList"))
|
302
308
|
AnomalySubscription.add_member(:subscribers, Shapes::ShapeRef.new(shape: Subscribers, required: true, location_name: "Subscribers"))
|
303
309
|
AnomalySubscription.add_member(:threshold, Shapes::ShapeRef.new(shape: NullableNonNegativeDouble, required: true, location_name: "Threshold"))
|
304
310
|
AnomalySubscription.add_member(:frequency, Shapes::ShapeRef.new(shape: AnomalySubscriptionFrequency, required: true, location_name: "Frequency"))
|
@@ -319,13 +325,22 @@ module Aws::CostExplorer
|
|
319
325
|
CostCategory.add_member(:name, Shapes::ShapeRef.new(shape: CostCategoryName, required: true, location_name: "Name"))
|
320
326
|
CostCategory.add_member(:rule_version, Shapes::ShapeRef.new(shape: CostCategoryRuleVersion, required: true, location_name: "RuleVersion"))
|
321
327
|
CostCategory.add_member(:rules, Shapes::ShapeRef.new(shape: CostCategoryRulesList, required: true, location_name: "Rules"))
|
328
|
+
CostCategory.add_member(:processing_status, Shapes::ShapeRef.new(shape: CostCategoryProcessingStatusList, location_name: "ProcessingStatus"))
|
322
329
|
CostCategory.struct_class = Types::CostCategory
|
323
330
|
|
331
|
+
CostCategoryProcessingStatus.add_member(:component, Shapes::ShapeRef.new(shape: CostCategoryStatusComponent, location_name: "Component"))
|
332
|
+
CostCategoryProcessingStatus.add_member(:status, Shapes::ShapeRef.new(shape: CostCategoryStatus, location_name: "Status"))
|
333
|
+
CostCategoryProcessingStatus.struct_class = Types::CostCategoryProcessingStatus
|
334
|
+
|
335
|
+
CostCategoryProcessingStatusList.member = Shapes::ShapeRef.new(shape: CostCategoryProcessingStatus)
|
336
|
+
|
324
337
|
CostCategoryReference.add_member(:cost_category_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "CostCategoryArn"))
|
325
338
|
CostCategoryReference.add_member(:name, Shapes::ShapeRef.new(shape: CostCategoryName, location_name: "Name"))
|
326
339
|
CostCategoryReference.add_member(:effective_start, Shapes::ShapeRef.new(shape: ZonedDateTime, location_name: "EffectiveStart"))
|
327
340
|
CostCategoryReference.add_member(:effective_end, Shapes::ShapeRef.new(shape: ZonedDateTime, location_name: "EffectiveEnd"))
|
328
341
|
CostCategoryReference.add_member(:number_of_rules, Shapes::ShapeRef.new(shape: NonNegativeInteger, location_name: "NumberOfRules"))
|
342
|
+
CostCategoryReference.add_member(:processing_status, Shapes::ShapeRef.new(shape: CostCategoryProcessingStatusList, location_name: "ProcessingStatus"))
|
343
|
+
CostCategoryReference.add_member(:values, Shapes::ShapeRef.new(shape: CostCategoryValuesList, location_name: "Values"))
|
329
344
|
CostCategoryReference.struct_class = Types::CostCategoryReference
|
330
345
|
|
331
346
|
CostCategoryReferencesList.member = Shapes::ShapeRef.new(shape: CostCategoryReference)
|
@@ -338,8 +353,11 @@ module Aws::CostExplorer
|
|
338
353
|
|
339
354
|
CostCategoryValues.add_member(:key, Shapes::ShapeRef.new(shape: CostCategoryName, location_name: "Key"))
|
340
355
|
CostCategoryValues.add_member(:values, Shapes::ShapeRef.new(shape: Values, location_name: "Values"))
|
356
|
+
CostCategoryValues.add_member(:match_options, Shapes::ShapeRef.new(shape: MatchOptions, location_name: "MatchOptions"))
|
341
357
|
CostCategoryValues.struct_class = Types::CostCategoryValues
|
342
358
|
|
359
|
+
CostCategoryValuesList.member = Shapes::ShapeRef.new(shape: CostCategoryValue)
|
360
|
+
|
343
361
|
Coverage.add_member(:coverage_hours, Shapes::ShapeRef.new(shape: CoverageHours, location_name: "CoverageHours"))
|
344
362
|
Coverage.add_member(:coverage_normalized_units, Shapes::ShapeRef.new(shape: CoverageNormalizedUnits, location_name: "CoverageNormalizedUnits"))
|
345
363
|
Coverage.add_member(:coverage_cost, Shapes::ShapeRef.new(shape: CoverageCost, location_name: "CoverageCost"))
|
@@ -774,6 +792,8 @@ module Aws::CostExplorer
|
|
774
792
|
ModifyRecommendationDetail.add_member(:target_instances, Shapes::ShapeRef.new(shape: TargetInstancesList, location_name: "TargetInstances"))
|
775
793
|
ModifyRecommendationDetail.struct_class = Types::ModifyRecommendationDetail
|
776
794
|
|
795
|
+
MonitorArnList.member = Shapes::ShapeRef.new(shape: Arn)
|
796
|
+
|
777
797
|
ProvideAnomalyFeedbackRequest.add_member(:anomaly_id, Shapes::ShapeRef.new(shape: GenericString, required: true, location_name: "AnomalyId"))
|
778
798
|
ProvideAnomalyFeedbackRequest.add_member(:feedback, Shapes::ShapeRef.new(shape: AnomalyFeedbackType, required: true, location_name: "Feedback"))
|
779
799
|
ProvideAnomalyFeedbackRequest.struct_class = Types::ProvideAnomalyFeedbackRequest
|
@@ -908,6 +928,7 @@ module Aws::CostExplorer
|
|
908
928
|
RightsizingRecommendationMetadata.add_member(:recommendation_id, Shapes::ShapeRef.new(shape: GenericString, location_name: "RecommendationId"))
|
909
929
|
RightsizingRecommendationMetadata.add_member(:generation_timestamp, Shapes::ShapeRef.new(shape: GenericString, location_name: "GenerationTimestamp"))
|
910
930
|
RightsizingRecommendationMetadata.add_member(:lookback_period_in_days, Shapes::ShapeRef.new(shape: LookbackPeriodInDays, location_name: "LookbackPeriodInDays"))
|
931
|
+
RightsizingRecommendationMetadata.add_member(:additional_metadata, Shapes::ShapeRef.new(shape: GenericString, location_name: "AdditionalMetadata"))
|
911
932
|
RightsizingRecommendationMetadata.struct_class = Types::RightsizingRecommendationMetadata
|
912
933
|
|
913
934
|
RightsizingRecommendationSummary.add_member(:total_recommendation_count, Shapes::ShapeRef.new(shape: GenericString, location_name: "TotalRecommendationCount"))
|
@@ -978,6 +999,7 @@ module Aws::CostExplorer
|
|
978
999
|
|
979
1000
|
SavingsPlansPurchaseRecommendationMetadata.add_member(:recommendation_id, Shapes::ShapeRef.new(shape: GenericString, location_name: "RecommendationId"))
|
980
1001
|
SavingsPlansPurchaseRecommendationMetadata.add_member(:generation_timestamp, Shapes::ShapeRef.new(shape: GenericString, location_name: "GenerationTimestamp"))
|
1002
|
+
SavingsPlansPurchaseRecommendationMetadata.add_member(:additional_metadata, Shapes::ShapeRef.new(shape: GenericString, location_name: "AdditionalMetadata"))
|
981
1003
|
SavingsPlansPurchaseRecommendationMetadata.struct_class = Types::SavingsPlansPurchaseRecommendationMetadata
|
982
1004
|
|
983
1005
|
SavingsPlansPurchaseRecommendationSummary.add_member(:estimated_roi, Shapes::ShapeRef.new(shape: GenericString, location_name: "EstimatedROI"))
|
@@ -1085,7 +1107,7 @@ module Aws::CostExplorer
|
|
1085
1107
|
UpdateAnomalySubscriptionRequest.add_member(:subscription_arn, Shapes::ShapeRef.new(shape: GenericString, required: true, location_name: "SubscriptionArn"))
|
1086
1108
|
UpdateAnomalySubscriptionRequest.add_member(:threshold, Shapes::ShapeRef.new(shape: NullableNonNegativeDouble, location_name: "Threshold"))
|
1087
1109
|
UpdateAnomalySubscriptionRequest.add_member(:frequency, Shapes::ShapeRef.new(shape: AnomalySubscriptionFrequency, location_name: "Frequency"))
|
1088
|
-
UpdateAnomalySubscriptionRequest.add_member(:monitor_arn_list, Shapes::ShapeRef.new(shape:
|
1110
|
+
UpdateAnomalySubscriptionRequest.add_member(:monitor_arn_list, Shapes::ShapeRef.new(shape: MonitorArnList, location_name: "MonitorArnList"))
|
1089
1111
|
UpdateAnomalySubscriptionRequest.add_member(:subscribers, Shapes::ShapeRef.new(shape: Subscribers, location_name: "Subscribers"))
|
1090
1112
|
UpdateAnomalySubscriptionRequest.add_member(:subscription_name, Shapes::ShapeRef.new(shape: GenericString, location_name: "SubscriptionName"))
|
1091
1113
|
UpdateAnomalySubscriptionRequest.struct_class = Types::UpdateAnomalySubscriptionRequest
|
@@ -137,6 +137,7 @@ module Aws::CostExplorer
|
|
137
137
|
# cost_categories: {
|
138
138
|
# key: "CostCategoryName",
|
139
139
|
# values: ["Value"],
|
140
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
140
141
|
# },
|
141
142
|
# },
|
142
143
|
# dimensional_value_count: 1,
|
@@ -272,7 +273,7 @@ module Aws::CostExplorer
|
|
272
273
|
# {
|
273
274
|
# subscription_arn: "GenericString",
|
274
275
|
# account_id: "GenericString",
|
275
|
-
# monitor_arn_list: ["
|
276
|
+
# monitor_arn_list: ["Arn"], # required
|
276
277
|
# subscribers: [ # required
|
277
278
|
# {
|
278
279
|
# address: "SubscriberAddress",
|
@@ -370,6 +371,11 @@ module Aws::CostExplorer
|
|
370
371
|
# that Cost Category value.
|
371
372
|
# @return [Array<Types::CostCategoryRule>]
|
372
373
|
#
|
374
|
+
# @!attribute [rw] processing_status
|
375
|
+
# The list of processing statuses for Cost Management products for a
|
376
|
+
# specific cost category.
|
377
|
+
# @return [Array<Types::CostCategoryProcessingStatus>]
|
378
|
+
#
|
373
379
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/CostCategory AWS API Documentation
|
374
380
|
#
|
375
381
|
class CostCategory < Struct.new(
|
@@ -378,7 +384,28 @@ module Aws::CostExplorer
|
|
378
384
|
:effective_end,
|
379
385
|
:name,
|
380
386
|
:rule_version,
|
381
|
-
:rules
|
387
|
+
:rules,
|
388
|
+
:processing_status)
|
389
|
+
SENSITIVE = []
|
390
|
+
include Aws::Structure
|
391
|
+
end
|
392
|
+
|
393
|
+
# The list of processing statuses for Cost Management products for a
|
394
|
+
# specific cost category.
|
395
|
+
#
|
396
|
+
# @!attribute [rw] component
|
397
|
+
# The Cost Management product name of the applied status.
|
398
|
+
# @return [String]
|
399
|
+
#
|
400
|
+
# @!attribute [rw] status
|
401
|
+
# The process status for a specific cost category.
|
402
|
+
# @return [String]
|
403
|
+
#
|
404
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/CostCategoryProcessingStatus AWS API Documentation
|
405
|
+
#
|
406
|
+
class CostCategoryProcessingStatus < Struct.new(
|
407
|
+
:component,
|
408
|
+
:status)
|
382
409
|
SENSITIVE = []
|
383
410
|
include Aws::Structure
|
384
411
|
end
|
@@ -409,6 +436,15 @@ module Aws::CostExplorer
|
|
409
436
|
# The number of rules associated with a specific Cost Category.
|
410
437
|
# @return [Integer]
|
411
438
|
#
|
439
|
+
# @!attribute [rw] processing_status
|
440
|
+
# The list of processing statuses for Cost Management products for a
|
441
|
+
# specific cost category.
|
442
|
+
# @return [Array<Types::CostCategoryProcessingStatus>]
|
443
|
+
#
|
444
|
+
# @!attribute [rw] values
|
445
|
+
# A list of unique cost category values in a specific cost category.
|
446
|
+
# @return [Array<String>]
|
447
|
+
#
|
412
448
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/CostCategoryReference AWS API Documentation
|
413
449
|
#
|
414
450
|
class CostCategoryReference < Struct.new(
|
@@ -416,7 +452,9 @@ module Aws::CostExplorer
|
|
416
452
|
:name,
|
417
453
|
:effective_start,
|
418
454
|
:effective_end,
|
419
|
-
:number_of_rules
|
455
|
+
:number_of_rules,
|
456
|
+
:processing_status,
|
457
|
+
:values)
|
420
458
|
SENSITIVE = []
|
421
459
|
include Aws::Structure
|
422
460
|
end
|
@@ -457,6 +495,7 @@ module Aws::CostExplorer
|
|
457
495
|
# cost_categories: {
|
458
496
|
# key: "CostCategoryName",
|
459
497
|
# values: ["Value"],
|
498
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
460
499
|
# },
|
461
500
|
# },
|
462
501
|
# }
|
@@ -504,6 +543,7 @@ module Aws::CostExplorer
|
|
504
543
|
# {
|
505
544
|
# key: "CostCategoryName",
|
506
545
|
# values: ["Value"],
|
546
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
507
547
|
# }
|
508
548
|
#
|
509
549
|
# @!attribute [rw] key
|
@@ -514,11 +554,19 @@ module Aws::CostExplorer
|
|
514
554
|
# The specific value of the Cost Category.
|
515
555
|
# @return [Array<String>]
|
516
556
|
#
|
557
|
+
# @!attribute [rw] match_options
|
558
|
+
# The match options that you can use to filter your results.
|
559
|
+
# MatchOptions is only applicable for only applicable for actions
|
560
|
+
# related to cost category. The default values for `MatchOptions` is
|
561
|
+
# `EQUALS` and `CASE_SENSITIVE`.
|
562
|
+
# @return [Array<String>]
|
563
|
+
#
|
517
564
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/CostCategoryValues AWS API Documentation
|
518
565
|
#
|
519
566
|
class CostCategoryValues < Struct.new(
|
520
567
|
:key,
|
521
|
-
:values
|
568
|
+
:values,
|
569
|
+
:match_options)
|
522
570
|
SENSITIVE = []
|
523
571
|
include Aws::Structure
|
524
572
|
end
|
@@ -702,6 +750,7 @@ module Aws::CostExplorer
|
|
702
750
|
# cost_categories: {
|
703
751
|
# key: "CostCategoryName",
|
704
752
|
# values: ["Value"],
|
753
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
705
754
|
# },
|
706
755
|
# },
|
707
756
|
# dimensional_value_count: 1,
|
@@ -740,7 +789,7 @@ module Aws::CostExplorer
|
|
740
789
|
# anomaly_subscription: { # required
|
741
790
|
# subscription_arn: "GenericString",
|
742
791
|
# account_id: "GenericString",
|
743
|
-
# monitor_arn_list: ["
|
792
|
+
# monitor_arn_list: ["Arn"], # required
|
744
793
|
# subscribers: [ # required
|
745
794
|
# {
|
746
795
|
# address: "SubscriberAddress",
|
@@ -815,6 +864,7 @@ module Aws::CostExplorer
|
|
815
864
|
# cost_categories: {
|
816
865
|
# key: "CostCategoryName",
|
817
866
|
# values: ["Value"],
|
867
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
818
868
|
# },
|
819
869
|
# },
|
820
870
|
# },
|
@@ -1508,6 +1558,7 @@ module Aws::CostExplorer
|
|
1508
1558
|
# cost_categories: {
|
1509
1559
|
# key: "CostCategoryName",
|
1510
1560
|
# values: ["Value"],
|
1561
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
1511
1562
|
# },
|
1512
1563
|
# },
|
1513
1564
|
# ],
|
@@ -1535,6 +1586,7 @@ module Aws::CostExplorer
|
|
1535
1586
|
# cost_categories: {
|
1536
1587
|
# key: "CostCategoryName",
|
1537
1588
|
# values: ["Value"],
|
1589
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
1538
1590
|
# },
|
1539
1591
|
# },
|
1540
1592
|
# ],
|
@@ -1565,6 +1617,7 @@ module Aws::CostExplorer
|
|
1565
1617
|
# cost_categories: {
|
1566
1618
|
# key: "CostCategoryName",
|
1567
1619
|
# values: ["Value"],
|
1620
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
1568
1621
|
# },
|
1569
1622
|
# },
|
1570
1623
|
# dimensions: {
|
@@ -1580,6 +1633,7 @@ module Aws::CostExplorer
|
|
1580
1633
|
# cost_categories: {
|
1581
1634
|
# key: "CostCategoryName",
|
1582
1635
|
# values: ["Value"],
|
1636
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
1583
1637
|
# },
|
1584
1638
|
# }
|
1585
1639
|
#
|
@@ -1880,6 +1934,7 @@ module Aws::CostExplorer
|
|
1880
1934
|
# cost_categories: {
|
1881
1935
|
# key: "CostCategoryName",
|
1882
1936
|
# values: ["Value"],
|
1937
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
1883
1938
|
# },
|
1884
1939
|
# },
|
1885
1940
|
# metrics: ["MetricName"], # required
|
@@ -2036,6 +2091,7 @@ module Aws::CostExplorer
|
|
2036
2091
|
# cost_categories: {
|
2037
2092
|
# key: "CostCategoryName",
|
2038
2093
|
# values: ["Value"],
|
2094
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
2039
2095
|
# },
|
2040
2096
|
# },
|
2041
2097
|
# metrics: ["MetricName"],
|
@@ -2109,7 +2165,7 @@ module Aws::CostExplorer
|
|
2109
2165
|
#
|
2110
2166
|
# @!attribute [rw] group_by
|
2111
2167
|
# You can group Amazon Web Services costs using up to two different
|
2112
|
-
# groups:
|
2168
|
+
# groups: `DIMENSION`, `TAG`, `COST_CATEGORY`.
|
2113
2169
|
# @return [Array<Types::GroupDefinition>]
|
2114
2170
|
#
|
2115
2171
|
# @!attribute [rw] next_page_token
|
@@ -2193,6 +2249,7 @@ module Aws::CostExplorer
|
|
2193
2249
|
# cost_categories: {
|
2194
2250
|
# key: "CostCategoryName",
|
2195
2251
|
# values: ["Value"],
|
2252
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
2196
2253
|
# },
|
2197
2254
|
# },
|
2198
2255
|
# prediction_interval_level: 1,
|
@@ -2616,6 +2673,7 @@ module Aws::CostExplorer
|
|
2616
2673
|
# cost_categories: {
|
2617
2674
|
# key: "CostCategoryName",
|
2618
2675
|
# values: ["Value"],
|
2676
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
2619
2677
|
# },
|
2620
2678
|
# },
|
2621
2679
|
# metrics: ["MetricName"],
|
@@ -2790,8 +2848,8 @@ module Aws::CostExplorer
|
|
2790
2848
|
#
|
2791
2849
|
# @!attribute [rw] account_scope
|
2792
2850
|
# The account scope that you want your recommendations for. Amazon Web
|
2793
|
-
# Services calculates recommendations including the
|
2794
|
-
# member accounts if the value is set to `PAYER`. If the value is
|
2851
|
+
# Services calculates recommendations including the management account
|
2852
|
+
# and member accounts if the value is set to `PAYER`. If the value is
|
2795
2853
|
# `LINKED`, recommendations are calculated for individual member
|
2796
2854
|
# accounts only.
|
2797
2855
|
# @return [String]
|
@@ -2906,6 +2964,7 @@ module Aws::CostExplorer
|
|
2906
2964
|
# cost_categories: {
|
2907
2965
|
# key: "CostCategoryName",
|
2908
2966
|
# values: ["Value"],
|
2967
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
2909
2968
|
# },
|
2910
2969
|
# },
|
2911
2970
|
# next_page_token: "NextPageToken",
|
@@ -3042,6 +3101,7 @@ module Aws::CostExplorer
|
|
3042
3101
|
# cost_categories: {
|
3043
3102
|
# key: "CostCategoryName",
|
3044
3103
|
# values: ["Value"],
|
3104
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
3045
3105
|
# },
|
3046
3106
|
# },
|
3047
3107
|
# configuration: {
|
@@ -3219,6 +3279,7 @@ module Aws::CostExplorer
|
|
3219
3279
|
# cost_categories: {
|
3220
3280
|
# key: "CostCategoryName",
|
3221
3281
|
# values: ["Value"],
|
3282
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
3222
3283
|
# },
|
3223
3284
|
# },
|
3224
3285
|
# metrics: ["MetricName"],
|
@@ -3357,6 +3418,7 @@ module Aws::CostExplorer
|
|
3357
3418
|
# cost_categories: {
|
3358
3419
|
# key: "CostCategoryName",
|
3359
3420
|
# values: ["Value"],
|
3421
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
3360
3422
|
# },
|
3361
3423
|
# },
|
3362
3424
|
# }
|
@@ -3376,8 +3438,8 @@ module Aws::CostExplorer
|
|
3376
3438
|
#
|
3377
3439
|
# @!attribute [rw] account_scope
|
3378
3440
|
# The account scope that you want your recommendations for. Amazon Web
|
3379
|
-
# Services calculates recommendations including the
|
3380
|
-
# member accounts if the value is set to `PAYER`. If the value is
|
3441
|
+
# Services calculates recommendations including the management account
|
3442
|
+
# and member accounts if the value is set to `PAYER`. If the value is
|
3381
3443
|
# `LINKED`, recommendations are calculated for individual member
|
3382
3444
|
# accounts only.
|
3383
3445
|
# @return [String]
|
@@ -3487,6 +3549,7 @@ module Aws::CostExplorer
|
|
3487
3549
|
# cost_categories: {
|
3488
3550
|
# key: "CostCategoryName",
|
3489
3551
|
# values: ["Value"],
|
3552
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
3490
3553
|
# },
|
3491
3554
|
# },
|
3492
3555
|
# next_token: "NextPageToken",
|
@@ -3611,6 +3674,7 @@ module Aws::CostExplorer
|
|
3611
3674
|
# cost_categories: {
|
3612
3675
|
# key: "CostCategoryName",
|
3613
3676
|
# values: ["Value"],
|
3677
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
3614
3678
|
# },
|
3615
3679
|
# },
|
3616
3680
|
# }
|
@@ -3796,6 +3860,7 @@ module Aws::CostExplorer
|
|
3796
3860
|
# cost_categories: {
|
3797
3861
|
# key: "CostCategoryName",
|
3798
3862
|
# values: ["Value"],
|
3863
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
3799
3864
|
# },
|
3800
3865
|
# },
|
3801
3866
|
# prediction_interval_level: 1,
|
@@ -4747,12 +4812,17 @@ module Aws::CostExplorer
|
|
4747
4812
|
# recommendation.
|
4748
4813
|
# @return [String]
|
4749
4814
|
#
|
4815
|
+
# @!attribute [rw] additional_metadata
|
4816
|
+
# Additional metadata that may be applicable to the recommendation.
|
4817
|
+
# @return [String]
|
4818
|
+
#
|
4750
4819
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/RightsizingRecommendationMetadata AWS API Documentation
|
4751
4820
|
#
|
4752
4821
|
class RightsizingRecommendationMetadata < Struct.new(
|
4753
4822
|
:recommendation_id,
|
4754
4823
|
:generation_timestamp,
|
4755
|
-
:lookback_period_in_days
|
4824
|
+
:lookback_period_in_days,
|
4825
|
+
:additional_metadata)
|
4756
4826
|
SENSITIVE = []
|
4757
4827
|
include Aws::Structure
|
4758
4828
|
end
|
@@ -4936,8 +5006,8 @@ module Aws::CostExplorer
|
|
4936
5006
|
#
|
4937
5007
|
# @!attribute [rw] account_scope
|
4938
5008
|
# The account scope that you want your recommendations for. Amazon Web
|
4939
|
-
# Services calculates recommendations including the
|
4940
|
-
# member accounts if the value is set to `PAYER`. If the value is
|
5009
|
+
# Services calculates recommendations including the management account
|
5010
|
+
# and member accounts if the value is set to `PAYER`. If the value is
|
4941
5011
|
# `LINKED`, recommendations are calculated for individual member
|
4942
5012
|
# accounts only.
|
4943
5013
|
# @return [String]
|
@@ -5096,11 +5166,16 @@ module Aws::CostExplorer
|
|
5096
5166
|
# The timestamp showing when the recommendations were generated.
|
5097
5167
|
# @return [String]
|
5098
5168
|
#
|
5169
|
+
# @!attribute [rw] additional_metadata
|
5170
|
+
# Additional metadata that may be applicable to the recommendation.
|
5171
|
+
# @return [String]
|
5172
|
+
#
|
5099
5173
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/SavingsPlansPurchaseRecommendationMetadata AWS API Documentation
|
5100
5174
|
#
|
5101
5175
|
class SavingsPlansPurchaseRecommendationMetadata < Struct.new(
|
5102
5176
|
:recommendation_id,
|
5103
|
-
:generation_timestamp
|
5177
|
+
:generation_timestamp,
|
5178
|
+
:additional_metadata)
|
5104
5179
|
SENSITIVE = []
|
5105
5180
|
include Aws::Structure
|
5106
5181
|
end
|
@@ -5302,8 +5377,8 @@ module Aws::CostExplorer
|
|
5302
5377
|
end
|
5303
5378
|
|
5304
5379
|
# A single daily or monthly Savings Plans utilization rate, and details
|
5305
|
-
# for your account. A
|
5306
|
-
# member accounts. You can use `GetDimensionValues` to determine the
|
5380
|
+
# for your account. A management account in an organization have access
|
5381
|
+
# to member accounts. You can use `GetDimensionValues` to determine the
|
5307
5382
|
# possible dimension values.
|
5308
5383
|
#
|
5309
5384
|
# @!attribute [rw] savings_plan_arn
|
@@ -5631,7 +5706,7 @@ module Aws::CostExplorer
|
|
5631
5706
|
# subscription_arn: "GenericString", # required
|
5632
5707
|
# threshold: 1.0,
|
5633
5708
|
# frequency: "DAILY", # accepts DAILY, IMMEDIATE, WEEKLY
|
5634
|
-
# monitor_arn_list: ["
|
5709
|
+
# monitor_arn_list: ["Arn"],
|
5635
5710
|
# subscribers: [
|
5636
5711
|
# {
|
5637
5712
|
# address: "SubscriberAddress",
|
@@ -5656,7 +5731,7 @@ module Aws::CostExplorer
|
|
5656
5731
|
# @return [String]
|
5657
5732
|
#
|
5658
5733
|
# @!attribute [rw] monitor_arn_list
|
5659
|
-
# A list of cost anomaly
|
5734
|
+
# A list of cost anomaly monitor ARNs.
|
5660
5735
|
# @return [Array<String>]
|
5661
5736
|
#
|
5662
5737
|
# @!attribute [rw] subscribers
|
@@ -5728,6 +5803,7 @@ module Aws::CostExplorer
|
|
5728
5803
|
# cost_categories: {
|
5729
5804
|
# key: "CostCategoryName",
|
5730
5805
|
# values: ["Value"],
|
5806
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
5731
5807
|
# },
|
5732
5808
|
# },
|
5733
5809
|
# },
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-costexplorer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.55.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-12-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|