aws-sdk-costexplorer 1.64.0 → 1.65.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-costexplorer.rb +1 -1
- data/lib/aws-sdk-costexplorer/client.rb +188 -141
- data/lib/aws-sdk-costexplorer/client_api.rb +29 -0
- data/lib/aws-sdk-costexplorer/types.rb +642 -469
- metadata +2 -2
|
@@ -46,6 +46,14 @@ module Aws::CostExplorer
|
|
|
46
46
|
CostCategoryRuleType = Shapes::StringShape.new(name: 'CostCategoryRuleType')
|
|
47
47
|
CostCategoryRuleVersion = Shapes::StringShape.new(name: 'CostCategoryRuleVersion')
|
|
48
48
|
CostCategoryRulesList = Shapes::ListShape.new(name: 'CostCategoryRulesList')
|
|
49
|
+
CostCategorySplitChargeMethod = Shapes::StringShape.new(name: 'CostCategorySplitChargeMethod')
|
|
50
|
+
CostCategorySplitChargeRule = Shapes::StructureShape.new(name: 'CostCategorySplitChargeRule')
|
|
51
|
+
CostCategorySplitChargeRuleParameter = Shapes::StructureShape.new(name: 'CostCategorySplitChargeRuleParameter')
|
|
52
|
+
CostCategorySplitChargeRuleParameterType = Shapes::StringShape.new(name: 'CostCategorySplitChargeRuleParameterType')
|
|
53
|
+
CostCategorySplitChargeRuleParameterValuesList = Shapes::ListShape.new(name: 'CostCategorySplitChargeRuleParameterValuesList')
|
|
54
|
+
CostCategorySplitChargeRuleParametersList = Shapes::ListShape.new(name: 'CostCategorySplitChargeRuleParametersList')
|
|
55
|
+
CostCategorySplitChargeRuleTargetsList = Shapes::ListShape.new(name: 'CostCategorySplitChargeRuleTargetsList')
|
|
56
|
+
CostCategorySplitChargeRulesList = Shapes::ListShape.new(name: 'CostCategorySplitChargeRulesList')
|
|
49
57
|
CostCategoryStatus = Shapes::StringShape.new(name: 'CostCategoryStatus')
|
|
50
58
|
CostCategoryStatusComponent = Shapes::StringShape.new(name: 'CostCategoryStatusComponent')
|
|
51
59
|
CostCategoryValue = Shapes::StringShape.new(name: 'CostCategoryValue')
|
|
@@ -346,6 +354,7 @@ module Aws::CostExplorer
|
|
|
346
354
|
CostCategory.add_member(:name, Shapes::ShapeRef.new(shape: CostCategoryName, required: true, location_name: "Name"))
|
|
347
355
|
CostCategory.add_member(:rule_version, Shapes::ShapeRef.new(shape: CostCategoryRuleVersion, required: true, location_name: "RuleVersion"))
|
|
348
356
|
CostCategory.add_member(:rules, Shapes::ShapeRef.new(shape: CostCategoryRulesList, required: true, location_name: "Rules"))
|
|
357
|
+
CostCategory.add_member(:split_charge_rules, Shapes::ShapeRef.new(shape: CostCategorySplitChargeRulesList, location_name: "SplitChargeRules"))
|
|
349
358
|
CostCategory.add_member(:processing_status, Shapes::ShapeRef.new(shape: CostCategoryProcessingStatusList, location_name: "ProcessingStatus"))
|
|
350
359
|
CostCategory.add_member(:default_value, Shapes::ShapeRef.new(shape: CostCategoryValue, location_name: "DefaultValue"))
|
|
351
360
|
CostCategory.struct_class = Types::CostCategory
|
|
@@ -382,6 +391,24 @@ module Aws::CostExplorer
|
|
|
382
391
|
|
|
383
392
|
CostCategoryRulesList.member = Shapes::ShapeRef.new(shape: CostCategoryRule)
|
|
384
393
|
|
|
394
|
+
CostCategorySplitChargeRule.add_member(:source, Shapes::ShapeRef.new(shape: GenericString, required: true, location_name: "Source"))
|
|
395
|
+
CostCategorySplitChargeRule.add_member(:targets, Shapes::ShapeRef.new(shape: CostCategorySplitChargeRuleTargetsList, required: true, location_name: "Targets"))
|
|
396
|
+
CostCategorySplitChargeRule.add_member(:method, Shapes::ShapeRef.new(shape: CostCategorySplitChargeMethod, required: true, location_name: "Method"))
|
|
397
|
+
CostCategorySplitChargeRule.add_member(:parameters, Shapes::ShapeRef.new(shape: CostCategorySplitChargeRuleParametersList, location_name: "Parameters"))
|
|
398
|
+
CostCategorySplitChargeRule.struct_class = Types::CostCategorySplitChargeRule
|
|
399
|
+
|
|
400
|
+
CostCategorySplitChargeRuleParameter.add_member(:type, Shapes::ShapeRef.new(shape: CostCategorySplitChargeRuleParameterType, required: true, location_name: "Type"))
|
|
401
|
+
CostCategorySplitChargeRuleParameter.add_member(:values, Shapes::ShapeRef.new(shape: CostCategorySplitChargeRuleParameterValuesList, required: true, location_name: "Values"))
|
|
402
|
+
CostCategorySplitChargeRuleParameter.struct_class = Types::CostCategorySplitChargeRuleParameter
|
|
403
|
+
|
|
404
|
+
CostCategorySplitChargeRuleParameterValuesList.member = Shapes::ShapeRef.new(shape: GenericString)
|
|
405
|
+
|
|
406
|
+
CostCategorySplitChargeRuleParametersList.member = Shapes::ShapeRef.new(shape: CostCategorySplitChargeRuleParameter)
|
|
407
|
+
|
|
408
|
+
CostCategorySplitChargeRuleTargetsList.member = Shapes::ShapeRef.new(shape: GenericString)
|
|
409
|
+
|
|
410
|
+
CostCategorySplitChargeRulesList.member = Shapes::ShapeRef.new(shape: CostCategorySplitChargeRule)
|
|
411
|
+
|
|
385
412
|
CostCategoryValues.add_member(:key, Shapes::ShapeRef.new(shape: CostCategoryName, location_name: "Key"))
|
|
386
413
|
CostCategoryValues.add_member(:values, Shapes::ShapeRef.new(shape: Values, location_name: "Values"))
|
|
387
414
|
CostCategoryValues.add_member(:match_options, Shapes::ShapeRef.new(shape: MatchOptions, location_name: "MatchOptions"))
|
|
@@ -432,6 +459,7 @@ module Aws::CostExplorer
|
|
|
432
459
|
CreateCostCategoryDefinitionRequest.add_member(:rule_version, Shapes::ShapeRef.new(shape: CostCategoryRuleVersion, required: true, location_name: "RuleVersion"))
|
|
433
460
|
CreateCostCategoryDefinitionRequest.add_member(:rules, Shapes::ShapeRef.new(shape: CostCategoryRulesList, required: true, location_name: "Rules"))
|
|
434
461
|
CreateCostCategoryDefinitionRequest.add_member(:default_value, Shapes::ShapeRef.new(shape: CostCategoryValue, location_name: "DefaultValue"))
|
|
462
|
+
CreateCostCategoryDefinitionRequest.add_member(:split_charge_rules, Shapes::ShapeRef.new(shape: CostCategorySplitChargeRulesList, location_name: "SplitChargeRules"))
|
|
435
463
|
CreateCostCategoryDefinitionRequest.struct_class = Types::CreateCostCategoryDefinitionRequest
|
|
436
464
|
|
|
437
465
|
CreateCostCategoryDefinitionResponse.add_member(:cost_category_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "CostCategoryArn"))
|
|
@@ -1215,6 +1243,7 @@ module Aws::CostExplorer
|
|
|
1215
1243
|
UpdateCostCategoryDefinitionRequest.add_member(:rule_version, Shapes::ShapeRef.new(shape: CostCategoryRuleVersion, required: true, location_name: "RuleVersion"))
|
|
1216
1244
|
UpdateCostCategoryDefinitionRequest.add_member(:rules, Shapes::ShapeRef.new(shape: CostCategoryRulesList, required: true, location_name: "Rules"))
|
|
1217
1245
|
UpdateCostCategoryDefinitionRequest.add_member(:default_value, Shapes::ShapeRef.new(shape: CostCategoryValue, location_name: "DefaultValue"))
|
|
1246
|
+
UpdateCostCategoryDefinitionRequest.add_member(:split_charge_rules, Shapes::ShapeRef.new(shape: CostCategorySplitChargeRulesList, location_name: "SplitChargeRules"))
|
|
1218
1247
|
UpdateCostCategoryDefinitionRequest.struct_class = Types::UpdateCostCategoryDefinitionRequest
|
|
1219
1248
|
|
|
1220
1249
|
UpdateCostCategoryDefinitionResponse.add_member(:cost_category_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "CostCategoryArn"))
|
|
@@ -26,8 +26,8 @@ module Aws::CostExplorer
|
|
|
26
26
|
# @return [String]
|
|
27
27
|
#
|
|
28
28
|
# @!attribute [rw] dimension_value
|
|
29
|
-
# The dimension for the anomaly
|
|
30
|
-
# service monitor.
|
|
29
|
+
# The dimension for the anomaly (for example, an Amazon Web Services
|
|
30
|
+
# service in a service monitor).
|
|
31
31
|
# @return [String]
|
|
32
32
|
#
|
|
33
33
|
# @!attribute [rw] root_causes
|
|
@@ -95,9 +95,9 @@ module Aws::CostExplorer
|
|
|
95
95
|
end
|
|
96
96
|
|
|
97
97
|
# This object continuously inspects your account's cost data for
|
|
98
|
-
# anomalies
|
|
99
|
-
# content consists of detailed metadata and the current status of
|
|
100
|
-
# monitor object.
|
|
98
|
+
# anomalies. It's based on `MonitorType` and `MonitorSpecification`.
|
|
99
|
+
# The content consists of detailed metadata and the current status of
|
|
100
|
+
# the monitor object.
|
|
101
101
|
#
|
|
102
102
|
# @note When making an API call, you may pass AnomalyMonitor
|
|
103
103
|
# data as a hash:
|
|
@@ -180,7 +180,7 @@ module Aws::CostExplorer
|
|
|
180
180
|
# filter for `REGION==us-east-1 OR REGION==us-west-1`. For
|
|
181
181
|
# `GetRightsizingRecommendation`, the Region is a full name (for
|
|
182
182
|
# example, `REGION==US East (N. Virginia)`. The `Expression` example
|
|
183
|
-
#
|
|
183
|
+
# is as follows:
|
|
184
184
|
#
|
|
185
185
|
# `\{ "Dimensions": \{ "Key": "REGION", "Values": [ "us-east-1",
|
|
186
186
|
# “us-west-1” ] \} \}`
|
|
@@ -192,11 +192,11 @@ module Aws::CostExplorer
|
|
|
192
192
|
#
|
|
193
193
|
# * Compound dimension values with logical operations - You can use
|
|
194
194
|
# multiple `Expression` types and the logical operators `AND/OR/NOT`
|
|
195
|
-
# to create a list of one or more `Expression` objects.
|
|
196
|
-
# you
|
|
197
|
-
# filter on `((REGION == us-east-1 OR REGION == us-west-1) OR
|
|
195
|
+
# to create a list of one or more `Expression` objects. By doing
|
|
196
|
+
# this, you can filter on more advanced options. For example, you
|
|
197
|
+
# can filter on `((REGION == us-east-1 OR REGION == us-west-1) OR
|
|
198
198
|
# (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer)`. The
|
|
199
|
-
# `Expression` for that
|
|
199
|
+
# `Expression` for that is as follows:
|
|
200
200
|
#
|
|
201
201
|
# `\{ "And": [ \{"Or": [ \{"Dimensions": \{ "Key": "REGION",
|
|
202
202
|
# "Values": [ "us-east-1", "us-west-1" ] \}\}, \{"Tags": \{ "Key":
|
|
@@ -214,13 +214,13 @@ module Aws::CostExplorer
|
|
|
214
214
|
# "USAGE_TYPE", "Values": [ "DataTransfer" ] \} \} `
|
|
215
215
|
#
|
|
216
216
|
# <note markdown="1"> For the `GetRightsizingRecommendation` action, a combination of OR
|
|
217
|
-
# and NOT
|
|
217
|
+
# and NOT isn't supported. OR isn't supported between different
|
|
218
218
|
# dimensions, or dimensions and tags. NOT operators aren't supported.
|
|
219
219
|
# Dimensions are also limited to `LINKED_ACCOUNT`, `REGION`, or
|
|
220
220
|
# `RIGHTSIZING_TYPE`.
|
|
221
221
|
#
|
|
222
222
|
# For the `GetReservationPurchaseRecommendation` action, only NOT is
|
|
223
|
-
# supported. AND and OR
|
|
223
|
+
# supported. AND and OR aren't supported. Dimensions are limited to
|
|
224
224
|
# `LINKED_ACCOUNT`.
|
|
225
225
|
#
|
|
226
226
|
# </note>
|
|
@@ -246,11 +246,11 @@ module Aws::CostExplorer
|
|
|
246
246
|
include Aws::Structure
|
|
247
247
|
end
|
|
248
248
|
|
|
249
|
-
# Quantifies the anomaly. The higher score means that it
|
|
249
|
+
# Quantifies the anomaly. The higher score means that it's more
|
|
250
250
|
# anomalous.
|
|
251
251
|
#
|
|
252
252
|
# @!attribute [rw] max_score
|
|
253
|
-
# The maximum score observed during the `AnomalyDateInterval`.
|
|
253
|
+
# The maximum score that's observed during the `AnomalyDateInterval`.
|
|
254
254
|
# @return [Float]
|
|
255
255
|
#
|
|
256
256
|
# @!attribute [rw] current_score
|
|
@@ -312,7 +312,7 @@ module Aws::CostExplorer
|
|
|
312
312
|
# @return [Float]
|
|
313
313
|
#
|
|
314
314
|
# @!attribute [rw] frequency
|
|
315
|
-
# The frequency
|
|
315
|
+
# The frequency that anomaly reports are sent over email.
|
|
316
316
|
# @return [String]
|
|
317
317
|
#
|
|
318
318
|
# @!attribute [rw] subscription_name
|
|
@@ -354,11 +354,11 @@ module Aws::CostExplorer
|
|
|
354
354
|
# @return [String]
|
|
355
355
|
#
|
|
356
356
|
# @!attribute [rw] effective_start
|
|
357
|
-
# The
|
|
357
|
+
# The effective state data of your Cost Category.
|
|
358
358
|
# @return [String]
|
|
359
359
|
#
|
|
360
360
|
# @!attribute [rw] effective_end
|
|
361
|
-
# The
|
|
361
|
+
# The effective end data of your Cost Category.
|
|
362
362
|
# @return [String]
|
|
363
363
|
#
|
|
364
364
|
# @!attribute [rw] name
|
|
@@ -370,11 +370,16 @@ module Aws::CostExplorer
|
|
|
370
370
|
# @return [String]
|
|
371
371
|
#
|
|
372
372
|
# @!attribute [rw] rules
|
|
373
|
-
#
|
|
374
|
-
# the line item, then the first rule to match is used to
|
|
375
|
-
# that Cost Category value.
|
|
373
|
+
# The rules are processed in order. If there are multiple rules that
|
|
374
|
+
# match the line item, then the first rule to match is used to
|
|
375
|
+
# determine that Cost Category value.
|
|
376
376
|
# @return [Array<Types::CostCategoryRule>]
|
|
377
377
|
#
|
|
378
|
+
# @!attribute [rw] split_charge_rules
|
|
379
|
+
# The split charge rules that are used to allocate your charges
|
|
380
|
+
# between your Cost Category values.
|
|
381
|
+
# @return [Array<Types::CostCategorySplitChargeRule>]
|
|
382
|
+
#
|
|
378
383
|
# @!attribute [rw] processing_status
|
|
379
384
|
# The list of processing statuses for Cost Management products for a
|
|
380
385
|
# specific cost category.
|
|
@@ -393,6 +398,7 @@ module Aws::CostExplorer
|
|
|
393
398
|
:name,
|
|
394
399
|
:rule_version,
|
|
395
400
|
:rules,
|
|
401
|
+
:split_charge_rules,
|
|
396
402
|
:processing_status,
|
|
397
403
|
:default_value)
|
|
398
404
|
SENSITIVE = []
|
|
@@ -403,9 +409,9 @@ module Aws::CostExplorer
|
|
|
403
409
|
# `CostCategoryRule` rule type as `INHERITED_VALUE`. This rule type adds
|
|
404
410
|
# the flexibility of defining a rule that dynamically inherits the cost
|
|
405
411
|
# category value from the dimension value defined by
|
|
406
|
-
# `CostCategoryInheritedValueDimension`. For example, if you
|
|
407
|
-
# dynamically group costs based on the value of a specific tag
|
|
408
|
-
#
|
|
412
|
+
# `CostCategoryInheritedValueDimension`. For example, if you want to
|
|
413
|
+
# dynamically group costs that are based on the value of a specific tag
|
|
414
|
+
# key, first choose an inherited value rule type, then choose the tag
|
|
409
415
|
# dimension and specify the tag key to use.
|
|
410
416
|
#
|
|
411
417
|
# @note When making an API call, you may pass CostCategoryInheritedValueDimension
|
|
@@ -417,11 +423,11 @@ module Aws::CostExplorer
|
|
|
417
423
|
# }
|
|
418
424
|
#
|
|
419
425
|
# @!attribute [rw] dimension_name
|
|
420
|
-
# The name of dimension
|
|
426
|
+
# The name of the dimension that's used to group costs.
|
|
421
427
|
#
|
|
422
|
-
# If you specify `LINKED_ACCOUNT_NAME`, the cost category value
|
|
423
|
-
#
|
|
424
|
-
#
|
|
428
|
+
# If you specify `LINKED_ACCOUNT_NAME`, the cost category value is
|
|
429
|
+
# based on account name. If you specify `TAG`, the cost category value
|
|
430
|
+
# will be based on the value of the specified tag key.
|
|
425
431
|
# @return [String]
|
|
426
432
|
#
|
|
427
433
|
# @!attribute [rw] dimension_key
|
|
@@ -480,7 +486,8 @@ module Aws::CostExplorer
|
|
|
480
486
|
# @return [String]
|
|
481
487
|
#
|
|
482
488
|
# @!attribute [rw] number_of_rules
|
|
483
|
-
# The number of rules associated with a specific Cost
|
|
489
|
+
# The number of rules that are associated with a specific Cost
|
|
490
|
+
# Category.
|
|
484
491
|
# @return [Integer]
|
|
485
492
|
#
|
|
486
493
|
# @!attribute [rw] processing_status
|
|
@@ -567,14 +574,14 @@ module Aws::CostExplorer
|
|
|
567
574
|
# dimensions supported are `LINKED_ACCOUNT`, `SERVICE_CODE`,
|
|
568
575
|
# `RECORD_TYPE`, and `LINKED_ACCOUNT_NAME`.
|
|
569
576
|
#
|
|
570
|
-
# Root level `OR`
|
|
577
|
+
# Root level `OR` isn't supported. We recommend that you create a
|
|
571
578
|
# separate rule instead.
|
|
572
579
|
#
|
|
573
580
|
# `RECORD_TYPE` is a dimension used for Cost Explorer APIs, and is
|
|
574
581
|
# also supported for Cost Category expressions. This dimension uses
|
|
575
582
|
# different terms, depending on whether you're using the console or
|
|
576
583
|
# API/JSON editor. For a detailed comparison, see [Term
|
|
577
|
-
# Comparisons][2] in the *
|
|
584
|
+
# Comparisons][2] in the *Billing and Cost Management User Guide*.
|
|
578
585
|
#
|
|
579
586
|
#
|
|
580
587
|
#
|
|
@@ -583,8 +590,8 @@ module Aws::CostExplorer
|
|
|
583
590
|
# @return [Types::Expression]
|
|
584
591
|
#
|
|
585
592
|
# @!attribute [rw] inherited_value
|
|
586
|
-
# The value the line item
|
|
587
|
-
#
|
|
593
|
+
# The value the line item is categorized as if the line item contains
|
|
594
|
+
# the matched dimension.
|
|
588
595
|
# @return [Types::CostCategoryInheritedValueDimension]
|
|
589
596
|
#
|
|
590
597
|
# @!attribute [rw] type
|
|
@@ -592,10 +599,10 @@ module Aws::CostExplorer
|
|
|
592
599
|
# or `INHERITED_VALUE`. The `INHERITED_VALUE` rule type adds the
|
|
593
600
|
# flexibility of defining a rule that dynamically inherits the cost
|
|
594
601
|
# category value from the dimension value defined by
|
|
595
|
-
# `CostCategoryInheritedValueDimension`. For example, if you
|
|
602
|
+
# `CostCategoryInheritedValueDimension`. For example, if you want to
|
|
596
603
|
# dynamically group costs based on the value of a specific tag key,
|
|
597
|
-
#
|
|
598
|
-
#
|
|
604
|
+
# first choose an inherited value rule type, then choose the tag
|
|
605
|
+
# dimension and specify the tag key to use.
|
|
599
606
|
# @return [String]
|
|
600
607
|
#
|
|
601
608
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/CostCategoryRule AWS API Documentation
|
|
@@ -609,15 +616,101 @@ module Aws::CostExplorer
|
|
|
609
616
|
include Aws::Structure
|
|
610
617
|
end
|
|
611
618
|
|
|
619
|
+
# Use the split charge rule to split the cost of one Cost Category value
|
|
620
|
+
# across several other target values.
|
|
621
|
+
#
|
|
622
|
+
# @note When making an API call, you may pass CostCategorySplitChargeRule
|
|
623
|
+
# data as a hash:
|
|
624
|
+
#
|
|
625
|
+
# {
|
|
626
|
+
# source: "GenericString", # required
|
|
627
|
+
# targets: ["GenericString"], # required
|
|
628
|
+
# method: "FIXED", # required, accepts FIXED, PROPORTIONAL, EVEN
|
|
629
|
+
# parameters: [
|
|
630
|
+
# {
|
|
631
|
+
# type: "ALLOCATION_PERCENTAGES", # required, accepts ALLOCATION_PERCENTAGES
|
|
632
|
+
# values: ["GenericString"], # required
|
|
633
|
+
# },
|
|
634
|
+
# ],
|
|
635
|
+
# }
|
|
636
|
+
#
|
|
637
|
+
# @!attribute [rw] source
|
|
638
|
+
# The Cost Category value that you want to split. That value can't be
|
|
639
|
+
# used as a source or a target in other split charge rules. To
|
|
640
|
+
# indicate uncategorized costs, you can use an empty string as the
|
|
641
|
+
# source.
|
|
642
|
+
# @return [String]
|
|
643
|
+
#
|
|
644
|
+
# @!attribute [rw] targets
|
|
645
|
+
# The Cost Category values that you want to split costs across. These
|
|
646
|
+
# values can't be used as a source in other split charge rules.
|
|
647
|
+
# @return [Array<String>]
|
|
648
|
+
#
|
|
649
|
+
# @!attribute [rw] method
|
|
650
|
+
# The method that's used to define how to split your source costs
|
|
651
|
+
# across your targets.
|
|
652
|
+
#
|
|
653
|
+
# `Proportional` - Allocates charges across your targets based on the
|
|
654
|
+
# proportional weighted cost of each target.
|
|
655
|
+
#
|
|
656
|
+
# `Fixed` - Allocates charges across your targets based on your
|
|
657
|
+
# defined allocation percentage.
|
|
658
|
+
#
|
|
659
|
+
# >`Even` - Allocates costs evenly across all targets.
|
|
660
|
+
# @return [String]
|
|
661
|
+
#
|
|
662
|
+
# @!attribute [rw] parameters
|
|
663
|
+
# The parameters for a split charge method. This is only required for
|
|
664
|
+
# the `FIXED` method.
|
|
665
|
+
# @return [Array<Types::CostCategorySplitChargeRuleParameter>]
|
|
666
|
+
#
|
|
667
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/CostCategorySplitChargeRule AWS API Documentation
|
|
668
|
+
#
|
|
669
|
+
class CostCategorySplitChargeRule < Struct.new(
|
|
670
|
+
:source,
|
|
671
|
+
:targets,
|
|
672
|
+
:method,
|
|
673
|
+
:parameters)
|
|
674
|
+
SENSITIVE = []
|
|
675
|
+
include Aws::Structure
|
|
676
|
+
end
|
|
677
|
+
|
|
678
|
+
# The parameters for a split charge method.
|
|
679
|
+
#
|
|
680
|
+
# @note When making an API call, you may pass CostCategorySplitChargeRuleParameter
|
|
681
|
+
# data as a hash:
|
|
682
|
+
#
|
|
683
|
+
# {
|
|
684
|
+
# type: "ALLOCATION_PERCENTAGES", # required, accepts ALLOCATION_PERCENTAGES
|
|
685
|
+
# values: ["GenericString"], # required
|
|
686
|
+
# }
|
|
687
|
+
#
|
|
688
|
+
# @!attribute [rw] type
|
|
689
|
+
# The parameter type.
|
|
690
|
+
# @return [String]
|
|
691
|
+
#
|
|
692
|
+
# @!attribute [rw] values
|
|
693
|
+
# The parameter values.
|
|
694
|
+
# @return [Array<String>]
|
|
695
|
+
#
|
|
696
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/CostCategorySplitChargeRuleParameter AWS API Documentation
|
|
697
|
+
#
|
|
698
|
+
class CostCategorySplitChargeRuleParameter < Struct.new(
|
|
699
|
+
:type,
|
|
700
|
+
:values)
|
|
701
|
+
SENSITIVE = []
|
|
702
|
+
include Aws::Structure
|
|
703
|
+
end
|
|
704
|
+
|
|
612
705
|
# The Cost Categories values used for filtering the costs.
|
|
613
706
|
#
|
|
614
707
|
# If `Values` and `Key` are not specified, the `ABSENT` `MatchOption` is
|
|
615
|
-
# applied to all Cost Categories. That is,
|
|
616
|
-
#
|
|
708
|
+
# applied to all Cost Categories. That is, it filters on resources that
|
|
709
|
+
# aren't mapped to any Cost Categories.
|
|
617
710
|
#
|
|
618
|
-
# If `Values` is provided and `Key`
|
|
711
|
+
# If `Values` is provided and `Key` isn't specified, the `ABSENT`
|
|
619
712
|
# `MatchOption` is applied to the Cost Categories `Key` only. That is,
|
|
620
|
-
#
|
|
713
|
+
# it filters on resources without the given Cost Categories key.
|
|
621
714
|
#
|
|
622
715
|
# @note When making an API call, you may pass CostCategoryValues
|
|
623
716
|
# data as a hash:
|
|
@@ -747,15 +840,15 @@ module Aws::CostExplorer
|
|
|
747
840
|
include Aws::Structure
|
|
748
841
|
end
|
|
749
842
|
|
|
750
|
-
# The amount of instance usage, in normalized units.
|
|
751
|
-
#
|
|
752
|
-
# uniform way. For example, suppose you run an xlarge instance
|
|
753
|
-
# 2xlarge instance. If you run both instances for the same amount
|
|
754
|
-
# time, the 2xlarge instance uses twice as much of your reservation
|
|
755
|
-
# the xlarge instance, even though both instances show only one
|
|
756
|
-
# instance-hour.
|
|
757
|
-
# xlarge instance used 8 normalized units, and the
|
|
758
|
-
# 16 normalized units.
|
|
843
|
+
# The amount of instance usage, in normalized units. You can use
|
|
844
|
+
# normalized units to see your EC2 usage for multiple sizes of instances
|
|
845
|
+
# in a uniform way. For example, suppose that you run an xlarge instance
|
|
846
|
+
# and a 2xlarge instance. If you run both instances for the same amount
|
|
847
|
+
# of time, the 2xlarge instance uses twice as much of your reservation
|
|
848
|
+
# as the xlarge instance, even though both instances show only one
|
|
849
|
+
# instance-hour. When you use normalized units instead of
|
|
850
|
+
# instance-hours, the xlarge instance used 8 normalized units, and the
|
|
851
|
+
# 2xlarge instance used 16 normalized units.
|
|
759
852
|
#
|
|
760
853
|
# For more information, see [Modifying Reserved Instances][1] in the
|
|
761
854
|
# *Amazon Elastic Compute Cloud User Guide for Linux Instances*.
|
|
@@ -957,6 +1050,19 @@ module Aws::CostExplorer
|
|
|
957
1050
|
# },
|
|
958
1051
|
# ],
|
|
959
1052
|
# default_value: "CostCategoryValue",
|
|
1053
|
+
# split_charge_rules: [
|
|
1054
|
+
# {
|
|
1055
|
+
# source: "GenericString", # required
|
|
1056
|
+
# targets: ["GenericString"], # required
|
|
1057
|
+
# method: "FIXED", # required, accepts FIXED, PROPORTIONAL, EVEN
|
|
1058
|
+
# parameters: [
|
|
1059
|
+
# {
|
|
1060
|
+
# type: "ALLOCATION_PERCENTAGES", # required, accepts ALLOCATION_PERCENTAGES
|
|
1061
|
+
# values: ["GenericString"], # required
|
|
1062
|
+
# },
|
|
1063
|
+
# ],
|
|
1064
|
+
# },
|
|
1065
|
+
# ],
|
|
960
1066
|
# }
|
|
961
1067
|
#
|
|
962
1068
|
# @!attribute [rw] name
|
|
@@ -980,13 +1086,19 @@ module Aws::CostExplorer
|
|
|
980
1086
|
# The default value for the cost category.
|
|
981
1087
|
# @return [String]
|
|
982
1088
|
#
|
|
1089
|
+
# @!attribute [rw] split_charge_rules
|
|
1090
|
+
# The split charge rules used to allocate your charges between your
|
|
1091
|
+
# Cost Category values.
|
|
1092
|
+
# @return [Array<Types::CostCategorySplitChargeRule>]
|
|
1093
|
+
#
|
|
983
1094
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/CreateCostCategoryDefinitionRequest AWS API Documentation
|
|
984
1095
|
#
|
|
985
1096
|
class CreateCostCategoryDefinitionRequest < Struct.new(
|
|
986
1097
|
:name,
|
|
987
1098
|
:rule_version,
|
|
988
1099
|
:rules,
|
|
989
|
-
:default_value
|
|
1100
|
+
:default_value,
|
|
1101
|
+
:split_charge_rules)
|
|
990
1102
|
SENSITIVE = []
|
|
991
1103
|
include Aws::Structure
|
|
992
1104
|
end
|
|
@@ -1015,12 +1127,12 @@ module Aws::CostExplorer
|
|
|
1015
1127
|
# @return [String]
|
|
1016
1128
|
#
|
|
1017
1129
|
# @!attribute [rw] instance_name
|
|
1018
|
-
# The name you
|
|
1130
|
+
# The name that you given an instance. This field shows as blank if
|
|
1019
1131
|
# you haven't given the instance a name.
|
|
1020
1132
|
# @return [String]
|
|
1021
1133
|
#
|
|
1022
1134
|
# @!attribute [rw] tags
|
|
1023
|
-
# Cost allocation resource tags applied to the instance.
|
|
1135
|
+
# Cost allocation resource tags that are applied to the instance.
|
|
1024
1136
|
# @return [Array<Types::TagValues>]
|
|
1025
1137
|
#
|
|
1026
1138
|
# @!attribute [rw] resource_details
|
|
@@ -1033,31 +1145,33 @@ module Aws::CostExplorer
|
|
|
1033
1145
|
# @return [Types::ResourceUtilization]
|
|
1034
1146
|
#
|
|
1035
1147
|
# @!attribute [rw] reservation_covered_hours_in_lookback_period
|
|
1036
|
-
#
|
|
1148
|
+
# The number of hours during the lookback period that's covered by
|
|
1149
|
+
# reservations.
|
|
1037
1150
|
# @return [String]
|
|
1038
1151
|
#
|
|
1039
1152
|
# @!attribute [rw] savings_plans_covered_hours_in_lookback_period
|
|
1040
|
-
#
|
|
1153
|
+
# The number of hours during the lookback period that's covered by
|
|
1154
|
+
# Savings Plans.
|
|
1041
1155
|
# @return [String]
|
|
1042
1156
|
#
|
|
1043
1157
|
# @!attribute [rw] on_demand_hours_in_lookback_period
|
|
1044
|
-
#
|
|
1045
|
-
# rates.
|
|
1158
|
+
# The number of hours during the lookback period that's billed at
|
|
1159
|
+
# On-Demand rates.
|
|
1046
1160
|
# @return [String]
|
|
1047
1161
|
#
|
|
1048
1162
|
# @!attribute [rw] total_running_hours_in_lookback_period
|
|
1049
|
-
# The total number of hours the instance ran during the lookback
|
|
1163
|
+
# The total number of hours that the instance ran during the lookback
|
|
1050
1164
|
# period.
|
|
1051
1165
|
# @return [String]
|
|
1052
1166
|
#
|
|
1053
1167
|
# @!attribute [rw] monthly_cost
|
|
1054
|
-
#
|
|
1168
|
+
# The current On-Demand cost of operating this instance on a monthly
|
|
1055
1169
|
# basis.
|
|
1056
1170
|
# @return [String]
|
|
1057
1171
|
#
|
|
1058
1172
|
# @!attribute [rw] currency_code
|
|
1059
|
-
# The currency code that
|
|
1060
|
-
# instance.
|
|
1173
|
+
# The currency code that Amazon Web Services used to calculate the
|
|
1174
|
+
# costs for this instance.
|
|
1061
1175
|
# @return [String]
|
|
1062
1176
|
#
|
|
1063
1177
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/CurrentInstance AWS API Documentation
|
|
@@ -1103,16 +1217,17 @@ module Aws::CostExplorer
|
|
|
1103
1217
|
#
|
|
1104
1218
|
# @!attribute [rw] start
|
|
1105
1219
|
# The beginning of the time period. The start date is inclusive. For
|
|
1106
|
-
# example, if `start` is `2017-01-01`,
|
|
1107
|
-
# data starting at `2017-01-01` up to the end date. The
|
|
1108
|
-
# must be equal to or no later than the current date to
|
|
1109
|
-
# validation error.
|
|
1220
|
+
# example, if `start` is `2017-01-01`, Amazon Web Services retrieves
|
|
1221
|
+
# cost and usage data starting at `2017-01-01` up to the end date. The
|
|
1222
|
+
# start date must be equal to or no later than the current date to
|
|
1223
|
+
# avoid a validation error.
|
|
1110
1224
|
# @return [String]
|
|
1111
1225
|
#
|
|
1112
1226
|
# @!attribute [rw] end
|
|
1113
1227
|
# The end of the time period. The end date is exclusive. For example,
|
|
1114
|
-
# if `end` is `2017-05-01`,
|
|
1115
|
-
# start date up to, but not including,
|
|
1228
|
+
# if `end` is `2017-05-01`, Amazon Web Services retrieves cost and
|
|
1229
|
+
# usage data from the start date up to, but not including,
|
|
1230
|
+
# `2017-05-01`.
|
|
1116
1231
|
# @return [String]
|
|
1117
1232
|
#
|
|
1118
1233
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/DateInterval AWS API Documentation
|
|
@@ -1309,8 +1424,8 @@ module Aws::CostExplorer
|
|
|
1309
1424
|
include Aws::Structure
|
|
1310
1425
|
end
|
|
1311
1426
|
|
|
1312
|
-
# The field that contains a list of disk (local storage) metrics
|
|
1313
|
-
# associated with the current instance.
|
|
1427
|
+
# The field that contains a list of disk (local storage) metrics that
|
|
1428
|
+
# are associated with the current instance.
|
|
1314
1429
|
#
|
|
1315
1430
|
# @!attribute [rw] disk_read_ops_per_second
|
|
1316
1431
|
# The maximum number of read operations per second.
|
|
@@ -1339,8 +1454,8 @@ module Aws::CostExplorer
|
|
|
1339
1454
|
include Aws::Structure
|
|
1340
1455
|
end
|
|
1341
1456
|
|
|
1342
|
-
# The EBS field that contains a list of EBS metrics
|
|
1343
|
-
# current instance.
|
|
1457
|
+
# The EBS field that contains a list of EBS metrics that are associated
|
|
1458
|
+
# with the current instance.
|
|
1344
1459
|
#
|
|
1345
1460
|
# @!attribute [rw] ebs_read_ops_per_second
|
|
1346
1461
|
# The maximum number of read operations per second.
|
|
@@ -1369,19 +1484,19 @@ module Aws::CostExplorer
|
|
|
1369
1484
|
include Aws::Structure
|
|
1370
1485
|
end
|
|
1371
1486
|
|
|
1372
|
-
# Details about the Amazon EC2 instances that
|
|
1373
|
-
# purchase.
|
|
1487
|
+
# Details about the Amazon EC2 instances that Amazon Web Services
|
|
1488
|
+
# recommends that you purchase.
|
|
1374
1489
|
#
|
|
1375
1490
|
# @!attribute [rw] family
|
|
1376
1491
|
# The instance family of the recommended reservation.
|
|
1377
1492
|
# @return [String]
|
|
1378
1493
|
#
|
|
1379
1494
|
# @!attribute [rw] instance_type
|
|
1380
|
-
# The type of instance that
|
|
1495
|
+
# The type of instance that Amazon Web Services recommends.
|
|
1381
1496
|
# @return [String]
|
|
1382
1497
|
#
|
|
1383
1498
|
# @!attribute [rw] region
|
|
1384
|
-
# The
|
|
1499
|
+
# The Amazon Web Services Region of the recommended reservation.
|
|
1385
1500
|
# @return [String]
|
|
1386
1501
|
#
|
|
1387
1502
|
# @!attribute [rw] availability_zone
|
|
@@ -1395,15 +1510,17 @@ module Aws::CostExplorer
|
|
|
1395
1510
|
# @return [String]
|
|
1396
1511
|
#
|
|
1397
1512
|
# @!attribute [rw] tenancy
|
|
1398
|
-
#
|
|
1513
|
+
# Determines whether the recommended reservation is dedicated or
|
|
1514
|
+
# shared.
|
|
1399
1515
|
# @return [String]
|
|
1400
1516
|
#
|
|
1401
1517
|
# @!attribute [rw] current_generation
|
|
1402
|
-
#
|
|
1518
|
+
# Determines whether the recommendation is for a current-generation
|
|
1519
|
+
# instance.
|
|
1403
1520
|
# @return [Boolean]
|
|
1404
1521
|
#
|
|
1405
1522
|
# @!attribute [rw] size_flex_eligible
|
|
1406
|
-
#
|
|
1523
|
+
# Determines whether the recommended reservation is size flexible.
|
|
1407
1524
|
# @return [Boolean]
|
|
1408
1525
|
#
|
|
1409
1526
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/EC2InstanceDetails AWS API Documentation
|
|
@@ -1424,21 +1541,21 @@ module Aws::CostExplorer
|
|
|
1424
1541
|
# Details on the Amazon EC2 Resource.
|
|
1425
1542
|
#
|
|
1426
1543
|
# @!attribute [rw] hourly_on_demand_rate
|
|
1427
|
-
#
|
|
1544
|
+
# The hourly public On-Demand rate for the instance type.
|
|
1428
1545
|
# @return [String]
|
|
1429
1546
|
#
|
|
1430
1547
|
# @!attribute [rw] instance_type
|
|
1431
|
-
# The type of
|
|
1548
|
+
# The type of Amazon Web Services instance.
|
|
1432
1549
|
# @return [String]
|
|
1433
1550
|
#
|
|
1434
1551
|
# @!attribute [rw] platform
|
|
1435
|
-
# The platform of the
|
|
1436
|
-
# combination of operating system, license model, and
|
|
1437
|
-
# instance.
|
|
1552
|
+
# The platform of the Amazon Web Services instance. The platform is
|
|
1553
|
+
# the specific combination of operating system, license model, and
|
|
1554
|
+
# software on an instance.
|
|
1438
1555
|
# @return [String]
|
|
1439
1556
|
#
|
|
1440
1557
|
# @!attribute [rw] region
|
|
1441
|
-
# The
|
|
1558
|
+
# The Amazon Web Services Region of the instance.
|
|
1442
1559
|
# @return [String]
|
|
1443
1560
|
#
|
|
1444
1561
|
# @!attribute [rw] sku
|
|
@@ -1446,19 +1563,21 @@ module Aws::CostExplorer
|
|
|
1446
1563
|
# @return [String]
|
|
1447
1564
|
#
|
|
1448
1565
|
# @!attribute [rw] memory
|
|
1449
|
-
#
|
|
1566
|
+
# The memory capacity of the Amazon Web Services instance.
|
|
1450
1567
|
# @return [String]
|
|
1451
1568
|
#
|
|
1452
1569
|
# @!attribute [rw] network_performance
|
|
1453
|
-
#
|
|
1570
|
+
# The network performance capacity of the Amazon Web Services
|
|
1571
|
+
# instance.
|
|
1454
1572
|
# @return [String]
|
|
1455
1573
|
#
|
|
1456
1574
|
# @!attribute [rw] storage
|
|
1457
|
-
# The disk storage of the
|
|
1575
|
+
# The disk storage of the Amazon Web Services instance. This doesn't
|
|
1576
|
+
# include EBS storage.
|
|
1458
1577
|
# @return [String]
|
|
1459
1578
|
#
|
|
1460
1579
|
# @!attribute [rw] vcpu
|
|
1461
|
-
#
|
|
1580
|
+
# The number of VCPU cores in the Amazon Web Services instance type.
|
|
1462
1581
|
# @return [String]
|
|
1463
1582
|
#
|
|
1464
1583
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/EC2ResourceDetails AWS API Documentation
|
|
@@ -1480,31 +1599,31 @@ module Aws::CostExplorer
|
|
|
1480
1599
|
# Utilization metrics of the instance.
|
|
1481
1600
|
#
|
|
1482
1601
|
# @!attribute [rw] max_cpu_utilization_percentage
|
|
1483
|
-
#
|
|
1602
|
+
# The maximum observed or expected CPU utilization of the instance.
|
|
1484
1603
|
# @return [String]
|
|
1485
1604
|
#
|
|
1486
1605
|
# @!attribute [rw] max_memory_utilization_percentage
|
|
1487
|
-
#
|
|
1606
|
+
# The maximum observed or expected memory utilization of the instance.
|
|
1488
1607
|
# @return [String]
|
|
1489
1608
|
#
|
|
1490
1609
|
# @!attribute [rw] max_storage_utilization_percentage
|
|
1491
|
-
#
|
|
1492
|
-
#
|
|
1610
|
+
# The maximum observed or expected storage utilization of the
|
|
1611
|
+
# instance. This doesn't include EBS storage.
|
|
1493
1612
|
# @return [String]
|
|
1494
1613
|
#
|
|
1495
1614
|
# @!attribute [rw] ebs_resource_utilization
|
|
1496
|
-
# The EBS field that contains a list of EBS metrics
|
|
1497
|
-
# the current instance.
|
|
1615
|
+
# The EBS field that contains a list of EBS metrics that are
|
|
1616
|
+
# associated with the current instance.
|
|
1498
1617
|
# @return [Types::EBSResourceUtilization]
|
|
1499
1618
|
#
|
|
1500
1619
|
# @!attribute [rw] disk_resource_utilization
|
|
1501
|
-
# The field that contains a list of disk (local storage) metrics
|
|
1502
|
-
# associated with the current instance.
|
|
1620
|
+
# The field that contains a list of disk (local storage) metrics that
|
|
1621
|
+
# are associated with the current instance.
|
|
1503
1622
|
# @return [Types::DiskResourceUtilization]
|
|
1504
1623
|
#
|
|
1505
1624
|
# @!attribute [rw] network_resource_utilization
|
|
1506
|
-
# The network field that contains a list of network metrics
|
|
1507
|
-
# with the current instance.
|
|
1625
|
+
# The network field that contains a list of network metrics that are
|
|
1626
|
+
# associated with the current instance.
|
|
1508
1627
|
# @return [Types::NetworkResourceUtilization]
|
|
1509
1628
|
#
|
|
1510
1629
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/EC2ResourceUtilization AWS API Documentation
|
|
@@ -1520,8 +1639,8 @@ module Aws::CostExplorer
|
|
|
1520
1639
|
include Aws::Structure
|
|
1521
1640
|
end
|
|
1522
1641
|
|
|
1523
|
-
# The Amazon EC2 hardware specifications that you want
|
|
1524
|
-
# recommendations for.
|
|
1642
|
+
# The Amazon EC2 hardware specifications that you want Amazon Web
|
|
1643
|
+
# Services to provide recommendations for.
|
|
1525
1644
|
#
|
|
1526
1645
|
# @note When making an API call, you may pass EC2Specification
|
|
1527
1646
|
# data as a hash:
|
|
@@ -1531,8 +1650,8 @@ module Aws::CostExplorer
|
|
|
1531
1650
|
# }
|
|
1532
1651
|
#
|
|
1533
1652
|
# @!attribute [rw] offering_class
|
|
1534
|
-
#
|
|
1535
|
-
# reservations.
|
|
1653
|
+
# Indicates whether you want a recommendation for standard or
|
|
1654
|
+
# convertible reservations.
|
|
1536
1655
|
# @return [String]
|
|
1537
1656
|
#
|
|
1538
1657
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/EC2Specification AWS API Documentation
|
|
@@ -1543,27 +1662,28 @@ module Aws::CostExplorer
|
|
|
1543
1662
|
include Aws::Structure
|
|
1544
1663
|
end
|
|
1545
1664
|
|
|
1546
|
-
# Details about the Amazon ES instances that
|
|
1547
|
-
# purchase.
|
|
1665
|
+
# Details about the Amazon ES instances that Amazon Web Services
|
|
1666
|
+
# recommends that you purchase.
|
|
1548
1667
|
#
|
|
1549
1668
|
# @!attribute [rw] instance_class
|
|
1550
|
-
# The class of instance that
|
|
1669
|
+
# The class of instance that Amazon Web Services recommends.
|
|
1551
1670
|
# @return [String]
|
|
1552
1671
|
#
|
|
1553
1672
|
# @!attribute [rw] instance_size
|
|
1554
|
-
# The size of instance that
|
|
1673
|
+
# The size of instance that Amazon Web Services recommends.
|
|
1555
1674
|
# @return [String]
|
|
1556
1675
|
#
|
|
1557
1676
|
# @!attribute [rw] region
|
|
1558
|
-
# The
|
|
1677
|
+
# The Amazon Web Services Region of the recommended reservation.
|
|
1559
1678
|
# @return [String]
|
|
1560
1679
|
#
|
|
1561
1680
|
# @!attribute [rw] current_generation
|
|
1562
|
-
#
|
|
1681
|
+
# Determines whether the recommendation is for a current-generation
|
|
1682
|
+
# instance.
|
|
1563
1683
|
# @return [Boolean]
|
|
1564
1684
|
#
|
|
1565
1685
|
# @!attribute [rw] size_flex_eligible
|
|
1566
|
-
#
|
|
1686
|
+
# Determines whether the recommended reservation is size flexible.
|
|
1567
1687
|
# @return [Boolean]
|
|
1568
1688
|
#
|
|
1569
1689
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/ESInstanceDetails AWS API Documentation
|
|
@@ -1578,19 +1698,19 @@ module Aws::CostExplorer
|
|
|
1578
1698
|
include Aws::Structure
|
|
1579
1699
|
end
|
|
1580
1700
|
|
|
1581
|
-
# Details about the Amazon ElastiCache instances that
|
|
1582
|
-
# that you purchase.
|
|
1701
|
+
# Details about the Amazon ElastiCache instances that Amazon Web
|
|
1702
|
+
# Services recommends that you purchase.
|
|
1583
1703
|
#
|
|
1584
1704
|
# @!attribute [rw] family
|
|
1585
1705
|
# The instance family of the recommended reservation.
|
|
1586
1706
|
# @return [String]
|
|
1587
1707
|
#
|
|
1588
1708
|
# @!attribute [rw] node_type
|
|
1589
|
-
# The type of node that
|
|
1709
|
+
# The type of node that Amazon Web Services recommends.
|
|
1590
1710
|
# @return [String]
|
|
1591
1711
|
#
|
|
1592
1712
|
# @!attribute [rw] region
|
|
1593
|
-
# The
|
|
1713
|
+
# The Amazon Web Services Region of the recommended reservation.
|
|
1594
1714
|
# @return [String]
|
|
1595
1715
|
#
|
|
1596
1716
|
# @!attribute [rw] product_description
|
|
@@ -1598,11 +1718,12 @@ module Aws::CostExplorer
|
|
|
1598
1718
|
# @return [String]
|
|
1599
1719
|
#
|
|
1600
1720
|
# @!attribute [rw] current_generation
|
|
1601
|
-
#
|
|
1721
|
+
# Determines whether the recommendation is for a current generation
|
|
1722
|
+
# instance.
|
|
1602
1723
|
# @return [Boolean]
|
|
1603
1724
|
#
|
|
1604
1725
|
# @!attribute [rw] size_flex_eligible
|
|
1605
|
-
#
|
|
1726
|
+
# Determines whether the recommended reservation is size flexible.
|
|
1606
1727
|
# @return [Boolean]
|
|
1607
1728
|
#
|
|
1608
1729
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/ElastiCacheInstanceDetails AWS API Documentation
|
|
@@ -1626,7 +1747,7 @@ module Aws::CostExplorer
|
|
|
1626
1747
|
# for `REGION==us-east-1 OR REGION==us-west-1`. For
|
|
1627
1748
|
# `GetRightsizingRecommendation`, the Region is a full name (for
|
|
1628
1749
|
# example, `REGION==US East (N. Virginia)`. The `Expression` example
|
|
1629
|
-
#
|
|
1750
|
+
# is as follows:
|
|
1630
1751
|
#
|
|
1631
1752
|
# `\{ "Dimensions": \{ "Key": "REGION", "Values": [ "us-east-1",
|
|
1632
1753
|
# “us-west-1” ] \} \}`
|
|
@@ -1638,11 +1759,11 @@ module Aws::CostExplorer
|
|
|
1638
1759
|
#
|
|
1639
1760
|
# * Compound dimension values with logical operations - You can use
|
|
1640
1761
|
# multiple `Expression` types and the logical operators `AND/OR/NOT`
|
|
1641
|
-
# to create a list of one or more `Expression` objects.
|
|
1642
|
-
# you
|
|
1762
|
+
# to create a list of one or more `Expression` objects. By doing this,
|
|
1763
|
+
# you can filter on more advanced options. For example, you can filter
|
|
1643
1764
|
# on `((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type ==
|
|
1644
1765
|
# Type1)) AND (USAGE_TYPE != DataTransfer)`. The `Expression` for that
|
|
1645
|
-
#
|
|
1766
|
+
# is as follows:
|
|
1646
1767
|
#
|
|
1647
1768
|
# `\{ "And": [ \{"Or": [ \{"Dimensions": \{ "Key": "REGION", "Values":
|
|
1648
1769
|
# [ "us-east-1", "us-west-1" ] \}\}, \{"Tags": \{ "Key": "TagName",
|
|
@@ -1659,13 +1780,13 @@ module Aws::CostExplorer
|
|
|
1659
1780
|
# "USAGE_TYPE", "Values": [ "DataTransfer" ] \} \} `
|
|
1660
1781
|
#
|
|
1661
1782
|
# <note markdown="1"> For the `GetRightsizingRecommendation` action, a combination of OR and
|
|
1662
|
-
# NOT
|
|
1783
|
+
# NOT isn't supported. OR isn't supported between different
|
|
1663
1784
|
# dimensions, or dimensions and tags. NOT operators aren't supported.
|
|
1664
1785
|
# Dimensions are also limited to `LINKED_ACCOUNT`, `REGION`, or
|
|
1665
1786
|
# `RIGHTSIZING_TYPE`.
|
|
1666
1787
|
#
|
|
1667
1788
|
# For the `GetReservationPurchaseRecommendation` action, only NOT is
|
|
1668
|
-
# supported. AND and OR
|
|
1789
|
+
# supported. AND and OR aren't supported. Dimensions are limited to
|
|
1669
1790
|
# `LINKED_ACCOUNT`.
|
|
1670
1791
|
#
|
|
1671
1792
|
# </note>
|
|
@@ -1798,7 +1919,7 @@ module Aws::CostExplorer
|
|
|
1798
1919
|
# @return [Types::TagValues]
|
|
1799
1920
|
#
|
|
1800
1921
|
# @!attribute [rw] cost_categories
|
|
1801
|
-
# The filter based on `CostCategory` values.
|
|
1922
|
+
# The filter that's based on `CostCategory` values.
|
|
1802
1923
|
# @return [Types::CostCategoryValues]
|
|
1803
1924
|
#
|
|
1804
1925
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/Expression AWS API Documentation
|
|
@@ -1814,7 +1935,7 @@ module Aws::CostExplorer
|
|
|
1814
1935
|
include Aws::Structure
|
|
1815
1936
|
end
|
|
1816
1937
|
|
|
1817
|
-
# The forecast created for your query.
|
|
1938
|
+
# The forecast that's created for your query.
|
|
1818
1939
|
#
|
|
1819
1940
|
# @!attribute [rw] time_period
|
|
1820
1941
|
# The period of time that the forecast covers.
|
|
@@ -1885,9 +2006,9 @@ module Aws::CostExplorer
|
|
|
1885
2006
|
# @return [Types::TotalImpactFilter]
|
|
1886
2007
|
#
|
|
1887
2008
|
# @!attribute [rw] next_page_token
|
|
1888
|
-
# The token to retrieve the next set of results.
|
|
1889
|
-
# token when the response from a previous call has more
|
|
1890
|
-
# the maximum page size.
|
|
2009
|
+
# The token to retrieve the next set of results. Amazon Web Services
|
|
2010
|
+
# provides the token when the response from a previous call has more
|
|
2011
|
+
# results than the maximum page size.
|
|
1891
2012
|
# @return [String]
|
|
1892
2013
|
#
|
|
1893
2014
|
# @!attribute [rw] max_results
|
|
@@ -1912,9 +2033,9 @@ module Aws::CostExplorer
|
|
|
1912
2033
|
# @return [Array<Types::Anomaly>]
|
|
1913
2034
|
#
|
|
1914
2035
|
# @!attribute [rw] next_page_token
|
|
1915
|
-
# The token to retrieve the next set of results.
|
|
1916
|
-
# token when the response from a previous call has more
|
|
1917
|
-
# the maximum page size.
|
|
2036
|
+
# The token to retrieve the next set of results. Amazon Web Services
|
|
2037
|
+
# provides the token when the response from a previous call has more
|
|
2038
|
+
# results than the maximum page size.
|
|
1918
2039
|
# @return [String]
|
|
1919
2040
|
#
|
|
1920
2041
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetAnomaliesResponse AWS API Documentation
|
|
@@ -1940,13 +2061,13 @@ module Aws::CostExplorer
|
|
|
1940
2061
|
# @return [Array<String>]
|
|
1941
2062
|
#
|
|
1942
2063
|
# @!attribute [rw] next_page_token
|
|
1943
|
-
# The token to retrieve the next set of results.
|
|
1944
|
-
# token when the response from a previous call has more
|
|
1945
|
-
# the maximum page size.
|
|
2064
|
+
# The token to retrieve the next set of results. Amazon Web Services
|
|
2065
|
+
# provides the token when the response from a previous call has more
|
|
2066
|
+
# results than the maximum page size.
|
|
1946
2067
|
# @return [String]
|
|
1947
2068
|
#
|
|
1948
2069
|
# @!attribute [rw] max_results
|
|
1949
|
-
# The number of entries a paginated response contains.
|
|
2070
|
+
# The number of entries that a paginated response contains.
|
|
1950
2071
|
# @return [Integer]
|
|
1951
2072
|
#
|
|
1952
2073
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetAnomalyMonitorsRequest AWS API Documentation
|
|
@@ -1965,9 +2086,9 @@ module Aws::CostExplorer
|
|
|
1965
2086
|
# @return [Array<Types::AnomalyMonitor>]
|
|
1966
2087
|
#
|
|
1967
2088
|
# @!attribute [rw] next_page_token
|
|
1968
|
-
# The token to retrieve the next set of results.
|
|
1969
|
-
# token when the response from a previous call has more
|
|
1970
|
-
# the maximum page size.
|
|
2089
|
+
# The token to retrieve the next set of results. Amazon Web Services
|
|
2090
|
+
# provides the token when the response from a previous call has more
|
|
2091
|
+
# results than the maximum page size.
|
|
1971
2092
|
# @return [String]
|
|
1972
2093
|
#
|
|
1973
2094
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetAnomalyMonitorsResponse AWS API Documentation
|
|
@@ -1998,9 +2119,9 @@ module Aws::CostExplorer
|
|
|
1998
2119
|
# @return [String]
|
|
1999
2120
|
#
|
|
2000
2121
|
# @!attribute [rw] next_page_token
|
|
2001
|
-
# The token to retrieve the next set of results.
|
|
2002
|
-
# token when the response from a previous call has more
|
|
2003
|
-
# the maximum page size.
|
|
2122
|
+
# The token to retrieve the next set of results. Amazon Web Services
|
|
2123
|
+
# provides the token when the response from a previous call has more
|
|
2124
|
+
# results than the maximum page size.
|
|
2004
2125
|
# @return [String]
|
|
2005
2126
|
#
|
|
2006
2127
|
# @!attribute [rw] max_results
|
|
@@ -2024,9 +2145,9 @@ module Aws::CostExplorer
|
|
|
2024
2145
|
# @return [Array<Types::AnomalySubscription>]
|
|
2025
2146
|
#
|
|
2026
2147
|
# @!attribute [rw] next_page_token
|
|
2027
|
-
# The token to retrieve the next set of results.
|
|
2028
|
-
# token when the response from a previous call has more
|
|
2029
|
-
# the maximum page size.
|
|
2148
|
+
# The token to retrieve the next set of results. Amazon Web Services
|
|
2149
|
+
# provides the token when the response from a previous call has more
|
|
2150
|
+
# results than the maximum page size.
|
|
2030
2151
|
# @return [String]
|
|
2031
2152
|
#
|
|
2032
2153
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetAnomalySubscriptionsResponse AWS API Documentation
|
|
@@ -2088,25 +2209,26 @@ module Aws::CostExplorer
|
|
|
2088
2209
|
# }
|
|
2089
2210
|
#
|
|
2090
2211
|
# @!attribute [rw] time_period
|
|
2091
|
-
# Sets the start and end
|
|
2092
|
-
# date is inclusive, but the end date is exclusive.
|
|
2093
|
-
# `start` is `2017-01-01` and `end` is `2017-05-01`,
|
|
2094
|
-
# usage data is retrieved from `2017-01-01` up to
|
|
2095
|
-
# `2017-04-30` but not including `2017-05-01`.
|
|
2212
|
+
# Sets the start date and end date for retrieving Amazon Web Services
|
|
2213
|
+
# costs. The start date is inclusive, but the end date is exclusive.
|
|
2214
|
+
# For example, if `start` is `2017-01-01` and `end` is `2017-05-01`,
|
|
2215
|
+
# then the cost and usage data is retrieved from `2017-01-01` up to
|
|
2216
|
+
# and including `2017-04-30` but not including `2017-05-01`.
|
|
2096
2217
|
# @return [Types::DateInterval]
|
|
2097
2218
|
#
|
|
2098
2219
|
# @!attribute [rw] granularity
|
|
2099
|
-
# Sets the
|
|
2100
|
-
# If `Granularity` isn't set, the response
|
|
2101
|
-
# the `Granularity`, either `MONTHLY` or
|
|
2220
|
+
# Sets the Amazon Web Services cost granularity to `MONTHLY` or
|
|
2221
|
+
# `DAILY`, or `HOURLY`. If `Granularity` isn't set, the response
|
|
2222
|
+
# object doesn't include the `Granularity`, either `MONTHLY` or
|
|
2223
|
+
# `DAILY`, or `HOURLY`.
|
|
2102
2224
|
# @return [String]
|
|
2103
2225
|
#
|
|
2104
2226
|
# @!attribute [rw] filter
|
|
2105
|
-
# Filters
|
|
2106
|
-
# specify `SERVICE` and `LINKED_ACCOUNT` and get the
|
|
2107
|
-
# associated with that account's usage of that
|
|
2108
|
-
# `Expression` objects to define any combination
|
|
2109
|
-
# For more information, see [Expression][1].
|
|
2227
|
+
# Filters Amazon Web Services costs by different dimensions. For
|
|
2228
|
+
# example, you can specify `SERVICE` and `LINKED_ACCOUNT` and get the
|
|
2229
|
+
# costs that are associated with that account's usage of that
|
|
2230
|
+
# service. You can nest `Expression` objects to define any combination
|
|
2231
|
+
# of dimension filters. For more information, see [Expression][1].
|
|
2110
2232
|
#
|
|
2111
2233
|
#
|
|
2112
2234
|
#
|
|
@@ -2126,7 +2248,7 @@ module Aws::CostExplorer
|
|
|
2126
2248
|
# usage numbers without taking into account the units. For example, if
|
|
2127
2249
|
# you aggregate `usageQuantity` across all of Amazon EC2, the results
|
|
2128
2250
|
# aren't meaningful because Amazon EC2 compute hours and data
|
|
2129
|
-
# transfer are measured in different units (for example, hours
|
|
2251
|
+
# transfer are measured in different units (for example, hours and
|
|
2130
2252
|
# GB). To get more meaningful `UsageQuantity` metrics, filter by
|
|
2131
2253
|
# `UsageType` or `UsageTypeGroups`.
|
|
2132
2254
|
#
|
|
@@ -2140,21 +2262,23 @@ module Aws::CostExplorer
|
|
|
2140
2262
|
# @return [Array<String>]
|
|
2141
2263
|
#
|
|
2142
2264
|
# @!attribute [rw] group_by
|
|
2143
|
-
# You can group
|
|
2144
|
-
# dimensions, tag keys, cost categories, or any two
|
|
2265
|
+
# You can group Amazon Web Services costs using up to two different
|
|
2266
|
+
# groups, either dimensions, tag keys, cost categories, or any two
|
|
2267
|
+
# group by types.
|
|
2145
2268
|
#
|
|
2146
|
-
#
|
|
2147
|
-
#
|
|
2269
|
+
# Valid values for the `DIMENSION` type are `AZ`, `INSTANCE_TYPE`,
|
|
2270
|
+
# `LEGAL_ENTITY_NAME`, `LINKED_ACCOUNT`, `OPERATION`, `PLATFORM`,
|
|
2271
|
+
# `PURCHASE_TYPE`, `SERVICE`, `TENANCY`, `RECORD_TYPE`, and
|
|
2272
|
+
# `USAGE_TYPE`.
|
|
2148
2273
|
#
|
|
2149
|
-
#
|
|
2150
|
-
#
|
|
2151
|
-
# `SERVICE`, `TAGS`, `TENANCY`, `RECORD_TYPE`, and `USAGE_TYPE`.
|
|
2274
|
+
# When you group by the `TAG` type and include a valid tag key, you
|
|
2275
|
+
# get all tag values, including empty strings.
|
|
2152
2276
|
# @return [Array<Types::GroupDefinition>]
|
|
2153
2277
|
#
|
|
2154
2278
|
# @!attribute [rw] next_page_token
|
|
2155
|
-
# The token to retrieve the next set of results.
|
|
2156
|
-
# token when the response from a previous call has more
|
|
2157
|
-
# the maximum page size.
|
|
2279
|
+
# The token to retrieve the next set of results. Amazon Web Services
|
|
2280
|
+
# provides the token when the response from a previous call has more
|
|
2281
|
+
# results than the maximum page size.
|
|
2158
2282
|
# @return [String]
|
|
2159
2283
|
#
|
|
2160
2284
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetCostAndUsageRequest AWS API Documentation
|
|
@@ -2171,9 +2295,9 @@ module Aws::CostExplorer
|
|
|
2171
2295
|
end
|
|
2172
2296
|
|
|
2173
2297
|
# @!attribute [rw] next_page_token
|
|
2174
|
-
# The token for the next set of retrievable results.
|
|
2175
|
-
# token when the response from a previous call
|
|
2176
|
-
# the maximum page size.
|
|
2298
|
+
# The token for the next set of retrievable results. Amazon Web
|
|
2299
|
+
# Services provides the token when the response from a previous call
|
|
2300
|
+
# has more results than the maximum page size.
|
|
2177
2301
|
# @return [String]
|
|
2178
2302
|
#
|
|
2179
2303
|
# @!attribute [rw] group_definitions
|
|
@@ -2182,7 +2306,7 @@ module Aws::CostExplorer
|
|
|
2182
2306
|
# @return [Array<Types::GroupDefinition>]
|
|
2183
2307
|
#
|
|
2184
2308
|
# @!attribute [rw] results_by_time
|
|
2185
|
-
# The time period that
|
|
2309
|
+
# The time period that's covered by the results in the response.
|
|
2186
2310
|
# @return [Array<Types::ResultByTime>]
|
|
2187
2311
|
#
|
|
2188
2312
|
# @!attribute [rw] dimension_value_attributes
|
|
@@ -2262,9 +2386,9 @@ module Aws::CostExplorer
|
|
|
2262
2386
|
# @return [Types::DateInterval]
|
|
2263
2387
|
#
|
|
2264
2388
|
# @!attribute [rw] granularity
|
|
2265
|
-
# Sets the
|
|
2266
|
-
# `Granularity` isn't set, the response object
|
|
2267
|
-
# `Granularity`, `MONTHLY`, `DAILY`, or `HOURLY`.
|
|
2389
|
+
# Sets the Amazon Web Services cost granularity to `MONTHLY`, `DAILY`,
|
|
2390
|
+
# or `HOURLY`. If `Granularity` isn't set, the response object
|
|
2391
|
+
# doesn't include the `Granularity`, `MONTHLY`, `DAILY`, or `HOURLY`.
|
|
2268
2392
|
# @return [String]
|
|
2269
2393
|
#
|
|
2270
2394
|
# @!attribute [rw] filter
|
|
@@ -2316,9 +2440,9 @@ module Aws::CostExplorer
|
|
|
2316
2440
|
# @return [Array<Types::GroupDefinition>]
|
|
2317
2441
|
#
|
|
2318
2442
|
# @!attribute [rw] next_page_token
|
|
2319
|
-
# The token to retrieve the next set of results.
|
|
2320
|
-
# token when the response from a previous call has more
|
|
2321
|
-
# the maximum page size.
|
|
2443
|
+
# The token to retrieve the next set of results. Amazon Web Services
|
|
2444
|
+
# provides the token when the response from a previous call has more
|
|
2445
|
+
# results than the maximum page size.
|
|
2322
2446
|
# @return [String]
|
|
2323
2447
|
#
|
|
2324
2448
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetCostAndUsageWithResourcesRequest AWS API Documentation
|
|
@@ -2335,9 +2459,9 @@ module Aws::CostExplorer
|
|
|
2335
2459
|
end
|
|
2336
2460
|
|
|
2337
2461
|
# @!attribute [rw] next_page_token
|
|
2338
|
-
# The token for the next set of retrievable results.
|
|
2339
|
-
# token when the response from a previous call
|
|
2340
|
-
# the maximum page size.
|
|
2462
|
+
# The token for the next set of retrievable results. Amazon Web
|
|
2463
|
+
# Services provides the token when the response from a previous call
|
|
2464
|
+
# has more results than the maximum page size.
|
|
2341
2465
|
# @return [String]
|
|
2342
2466
|
#
|
|
2343
2467
|
# @!attribute [rw] group_definitions
|
|
@@ -2443,7 +2567,7 @@ module Aws::CostExplorer
|
|
|
2443
2567
|
# filter for `REGION==us-east-1 OR REGION==us-west-1`. For
|
|
2444
2568
|
# `GetRightsizingRecommendation`, the Region is a full name (for
|
|
2445
2569
|
# example, `REGION==US East (N. Virginia)`. The `Expression` example
|
|
2446
|
-
#
|
|
2570
|
+
# is as follows:
|
|
2447
2571
|
#
|
|
2448
2572
|
# `\{ "Dimensions": \{ "Key": "REGION", "Values": [ "us-east-1",
|
|
2449
2573
|
# “us-west-1” ] \} \}`
|
|
@@ -2455,11 +2579,11 @@ module Aws::CostExplorer
|
|
|
2455
2579
|
#
|
|
2456
2580
|
# * Compound dimension values with logical operations - You can use
|
|
2457
2581
|
# multiple `Expression` types and the logical operators `AND/OR/NOT`
|
|
2458
|
-
# to create a list of one or more `Expression` objects.
|
|
2459
|
-
# you
|
|
2460
|
-
# filter on `((REGION == us-east-1 OR REGION == us-west-1) OR
|
|
2582
|
+
# to create a list of one or more `Expression` objects. By doing
|
|
2583
|
+
# this, you can filter on more advanced options. For example, you
|
|
2584
|
+
# can filter on `((REGION == us-east-1 OR REGION == us-west-1) OR
|
|
2461
2585
|
# (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer)`. The
|
|
2462
|
-
# `Expression` for that
|
|
2586
|
+
# `Expression` for that is as follows:
|
|
2463
2587
|
#
|
|
2464
2588
|
# `\{ "And": [ \{"Or": [ \{"Dimensions": \{ "Key": "REGION",
|
|
2465
2589
|
# "Values": [ "us-east-1", "us-west-1" ] \}\}, \{"Tags": \{ "Key":
|
|
@@ -2477,13 +2601,13 @@ module Aws::CostExplorer
|
|
|
2477
2601
|
# "USAGE_TYPE", "Values": [ "DataTransfer" ] \} \} `
|
|
2478
2602
|
#
|
|
2479
2603
|
# <note markdown="1"> For the `GetRightsizingRecommendation` action, a combination of OR
|
|
2480
|
-
# and NOT
|
|
2604
|
+
# and NOT isn't supported. OR isn't supported between different
|
|
2481
2605
|
# dimensions, or dimensions and tags. NOT operators aren't supported.
|
|
2482
2606
|
# Dimensions are also limited to `LINKED_ACCOUNT`, `REGION`, or
|
|
2483
2607
|
# `RIGHTSIZING_TYPE`.
|
|
2484
2608
|
#
|
|
2485
2609
|
# For the `GetReservationPurchaseRecommendation` action, only NOT is
|
|
2486
|
-
# supported. AND and OR
|
|
2610
|
+
# supported. AND and OR aren't supported. Dimensions are limited to
|
|
2487
2611
|
# `LINKED_ACCOUNT`.
|
|
2488
2612
|
#
|
|
2489
2613
|
# </note>
|
|
@@ -2527,8 +2651,8 @@ module Aws::CostExplorer
|
|
|
2527
2651
|
#
|
|
2528
2652
|
# @!attribute [rw] next_page_token
|
|
2529
2653
|
# If the number of objects that are still available for retrieval
|
|
2530
|
-
# exceeds the limit,
|
|
2531
|
-
# response. To retrieve the next batch of objects, provide the
|
|
2654
|
+
# exceeds the limit, Amazon Web Services returns a NextPageToken value
|
|
2655
|
+
# in the response. To retrieve the next batch of objects, provide the
|
|
2532
2656
|
# NextPageToken from the prior call in your next request.
|
|
2533
2657
|
# @return [String]
|
|
2534
2658
|
#
|
|
@@ -2548,9 +2672,9 @@ module Aws::CostExplorer
|
|
|
2548
2672
|
|
|
2549
2673
|
# @!attribute [rw] next_page_token
|
|
2550
2674
|
# If the number of objects that are still available for retrieval
|
|
2551
|
-
# exceeds the limit,
|
|
2552
|
-
# response. To retrieve the next batch of objects, provide the
|
|
2553
|
-
# from the prior call in your next request.
|
|
2675
|
+
# exceeds the limit, Amazon Web Services returns a NextPageToken value
|
|
2676
|
+
# in the response. To retrieve the next batch of objects, provide the
|
|
2677
|
+
# marker from the prior call in your next request.
|
|
2554
2678
|
# @return [String]
|
|
2555
2679
|
#
|
|
2556
2680
|
# @!attribute [rw] cost_category_names
|
|
@@ -2812,7 +2936,7 @@ module Aws::CostExplorer
|
|
|
2812
2936
|
# @return [String]
|
|
2813
2937
|
#
|
|
2814
2938
|
# @!attribute [rw] time_period
|
|
2815
|
-
# The start and end
|
|
2939
|
+
# The start date and end date for retrieving the dimension values. The
|
|
2816
2940
|
# start date is inclusive, but the end date is exclusive. For example,
|
|
2817
2941
|
# if `start` is `2017-01-01` and `end` is `2017-05-01`, then the cost
|
|
2818
2942
|
# and usage data is retrieved from `2017-01-01` up to and including
|
|
@@ -2845,11 +2969,11 @@ module Aws::CostExplorer
|
|
|
2845
2969
|
# `m4.xlarge`.
|
|
2846
2970
|
#
|
|
2847
2971
|
# * LEGAL\_ENTITY\_NAME - The name of the organization that sells you
|
|
2848
|
-
#
|
|
2972
|
+
# Amazon Web Services services, such as Amazon Web Services.
|
|
2849
2973
|
#
|
|
2850
2974
|
# * LINKED\_ACCOUNT - The description in the attribute map that
|
|
2851
2975
|
# includes the full name of the member account. The value field
|
|
2852
|
-
# contains the
|
|
2976
|
+
# contains the Amazon Web Services ID of the member account.
|
|
2853
2977
|
#
|
|
2854
2978
|
# * OPERATING\_SYSTEM - The operating system. Examples are Windows or
|
|
2855
2979
|
# Linux.
|
|
@@ -2864,7 +2988,7 @@ module Aws::CostExplorer
|
|
|
2864
2988
|
# this usage is related. Examples include On-Demand Instances and
|
|
2865
2989
|
# Standard Reserved Instances.
|
|
2866
2990
|
#
|
|
2867
|
-
# * SERVICE - The
|
|
2991
|
+
# * SERVICE - The Amazon Web Services service such as Amazon DynamoDB.
|
|
2868
2992
|
#
|
|
2869
2993
|
# * USAGE\_TYPE - The type of usage. An example is
|
|
2870
2994
|
# DataTransfer-In-Bytes. The response for the `GetDimensionValues`
|
|
@@ -2874,7 +2998,7 @@ module Aws::CostExplorer
|
|
|
2874
2998
|
# example is Amazon EC2: CloudWatch – Alarms. The response for this
|
|
2875
2999
|
# operation includes a unit attribute.
|
|
2876
3000
|
#
|
|
2877
|
-
# * REGION - The
|
|
3001
|
+
# * REGION - The Amazon Web Services Region.
|
|
2878
3002
|
#
|
|
2879
3003
|
# * RECORD\_TYPE - The different types of charges such as RI fees,
|
|
2880
3004
|
# usage costs, tax refunds, and credits.
|
|
@@ -2899,12 +3023,12 @@ module Aws::CostExplorer
|
|
|
2899
3023
|
#
|
|
2900
3024
|
# * LINKED\_ACCOUNT - The description in the attribute map that
|
|
2901
3025
|
# includes the full name of the member account. The value field
|
|
2902
|
-
# contains the
|
|
3026
|
+
# contains the Amazon Web Services ID of the member account.
|
|
2903
3027
|
#
|
|
2904
3028
|
# * PLATFORM - The Amazon EC2 operating system. Examples are Windows
|
|
2905
3029
|
# or Linux.
|
|
2906
3030
|
#
|
|
2907
|
-
# * REGION - The
|
|
3031
|
+
# * REGION - The Amazon Web Services Region.
|
|
2908
3032
|
#
|
|
2909
3033
|
# * SCOPE (Utilization only) - The scope of a Reserved Instance (RI).
|
|
2910
3034
|
# Values are regional or a single Availability Zone.
|
|
@@ -2924,14 +3048,14 @@ module Aws::CostExplorer
|
|
|
2924
3048
|
# * PAYMENT\_OPTION - Payment option for the given Savings Plans (for
|
|
2925
3049
|
# example, All Upfront)
|
|
2926
3050
|
#
|
|
2927
|
-
# * REGION - The
|
|
3051
|
+
# * REGION - The Amazon Web Services Region.
|
|
2928
3052
|
#
|
|
2929
3053
|
# * INSTANCE\_TYPE\_FAMILY - The family of instances (For example,
|
|
2930
3054
|
# `m5`)
|
|
2931
3055
|
#
|
|
2932
3056
|
# * LINKED\_ACCOUNT - The description in the attribute map that
|
|
2933
3057
|
# includes the full name of the member account. The value field
|
|
2934
|
-
# contains the
|
|
3058
|
+
# contains the Amazon Web Services ID of the member account.
|
|
2935
3059
|
#
|
|
2936
3060
|
# * SAVINGS\_PLAN\_ARN - The unique identifier for your Savings Plan
|
|
2937
3061
|
# @return [String]
|
|
@@ -2945,7 +3069,7 @@ module Aws::CostExplorer
|
|
|
2945
3069
|
# filter for `REGION==us-east-1 OR REGION==us-west-1`. For
|
|
2946
3070
|
# `GetRightsizingRecommendation`, the Region is a full name (for
|
|
2947
3071
|
# example, `REGION==US East (N. Virginia)`. The `Expression` example
|
|
2948
|
-
#
|
|
3072
|
+
# is as follows:
|
|
2949
3073
|
#
|
|
2950
3074
|
# `\{ "Dimensions": \{ "Key": "REGION", "Values": [ "us-east-1",
|
|
2951
3075
|
# “us-west-1” ] \} \}`
|
|
@@ -2957,11 +3081,11 @@ module Aws::CostExplorer
|
|
|
2957
3081
|
#
|
|
2958
3082
|
# * Compound dimension values with logical operations - You can use
|
|
2959
3083
|
# multiple `Expression` types and the logical operators `AND/OR/NOT`
|
|
2960
|
-
# to create a list of one or more `Expression` objects.
|
|
2961
|
-
# you
|
|
2962
|
-
# filter on `((REGION == us-east-1 OR REGION == us-west-1) OR
|
|
3084
|
+
# to create a list of one or more `Expression` objects. By doing
|
|
3085
|
+
# this, you can filter on more advanced options. For example, you
|
|
3086
|
+
# can filter on `((REGION == us-east-1 OR REGION == us-west-1) OR
|
|
2963
3087
|
# (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer)`. The
|
|
2964
|
-
# `Expression` for that
|
|
3088
|
+
# `Expression` for that is as follows:
|
|
2965
3089
|
#
|
|
2966
3090
|
# `\{ "And": [ \{"Or": [ \{"Dimensions": \{ "Key": "REGION",
|
|
2967
3091
|
# "Values": [ "us-east-1", "us-west-1" ] \}\}, \{"Tags": \{ "Key":
|
|
@@ -2979,13 +3103,13 @@ module Aws::CostExplorer
|
|
|
2979
3103
|
# "USAGE_TYPE", "Values": [ "DataTransfer" ] \} \} `
|
|
2980
3104
|
#
|
|
2981
3105
|
# <note markdown="1"> For the `GetRightsizingRecommendation` action, a combination of OR
|
|
2982
|
-
# and NOT
|
|
3106
|
+
# and NOT isn't supported. OR isn't supported between different
|
|
2983
3107
|
# dimensions, or dimensions and tags. NOT operators aren't supported.
|
|
2984
3108
|
# Dimensions are also limited to `LINKED_ACCOUNT`, `REGION`, or
|
|
2985
3109
|
# `RIGHTSIZING_TYPE`.
|
|
2986
3110
|
#
|
|
2987
3111
|
# For the `GetReservationPurchaseRecommendation` action, only NOT is
|
|
2988
|
-
# supported. AND and OR
|
|
3112
|
+
# supported. AND and OR aren't supported. Dimensions are limited to
|
|
2989
3113
|
# `LINKED_ACCOUNT`.
|
|
2990
3114
|
#
|
|
2991
3115
|
# </note>
|
|
@@ -3028,9 +3152,9 @@ module Aws::CostExplorer
|
|
|
3028
3152
|
# @return [Integer]
|
|
3029
3153
|
#
|
|
3030
3154
|
# @!attribute [rw] next_page_token
|
|
3031
|
-
# The token to retrieve the next set of results.
|
|
3032
|
-
# token when the response from a previous call has more
|
|
3033
|
-
# the maximum page size.
|
|
3155
|
+
# The token to retrieve the next set of results. Amazon Web Services
|
|
3156
|
+
# provides the token when the response from a previous call has more
|
|
3157
|
+
# results than the maximum page size.
|
|
3034
3158
|
# @return [String]
|
|
3035
3159
|
#
|
|
3036
3160
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetDimensionValuesRequest AWS API Documentation
|
|
@@ -3064,11 +3188,11 @@ module Aws::CostExplorer
|
|
|
3064
3188
|
# `m4.xlarge`.
|
|
3065
3189
|
#
|
|
3066
3190
|
# * LEGAL\_ENTITY\_NAME - The name of the organization that sells you
|
|
3067
|
-
#
|
|
3191
|
+
# Amazon Web Services services, such as Amazon Web Services.
|
|
3068
3192
|
#
|
|
3069
3193
|
# * LINKED\_ACCOUNT - The description in the attribute map that
|
|
3070
3194
|
# includes the full name of the member account. The value field
|
|
3071
|
-
# contains the
|
|
3195
|
+
# contains the Amazon Web Services ID of the member account.
|
|
3072
3196
|
#
|
|
3073
3197
|
# * OPERATING\_SYSTEM - The operating system. Examples are Windows or
|
|
3074
3198
|
# Linux.
|
|
@@ -3083,7 +3207,7 @@ module Aws::CostExplorer
|
|
|
3083
3207
|
# this usage is related. Examples include On-Demand Instances and
|
|
3084
3208
|
# Standard Reserved Instances.
|
|
3085
3209
|
#
|
|
3086
|
-
# * SERVICE - The
|
|
3210
|
+
# * SERVICE - The Amazon Web Services service such as Amazon DynamoDB.
|
|
3087
3211
|
#
|
|
3088
3212
|
# * USAGE\_TYPE - The type of usage. An example is
|
|
3089
3213
|
# DataTransfer-In-Bytes. The response for the `GetDimensionValues`
|
|
@@ -3116,12 +3240,12 @@ module Aws::CostExplorer
|
|
|
3116
3240
|
#
|
|
3117
3241
|
# * LINKED\_ACCOUNT - The description in the attribute map that
|
|
3118
3242
|
# includes the full name of the member account. The value field
|
|
3119
|
-
# contains the
|
|
3243
|
+
# contains the Amazon Web Services ID of the member account.
|
|
3120
3244
|
#
|
|
3121
3245
|
# * PLATFORM - The Amazon EC2 operating system. Examples are Windows
|
|
3122
3246
|
# or Linux.
|
|
3123
3247
|
#
|
|
3124
|
-
# * REGION - The
|
|
3248
|
+
# * REGION - The Amazon Web Services Region.
|
|
3125
3249
|
#
|
|
3126
3250
|
# * SCOPE (Utilization only) - The scope of a Reserved Instance (RI).
|
|
3127
3251
|
# Values are regional or a single Availability Zone.
|
|
@@ -3141,20 +3265,20 @@ module Aws::CostExplorer
|
|
|
3141
3265
|
# * PAYMENT\_OPTION - Payment option for the given Savings Plans (for
|
|
3142
3266
|
# example, All Upfront)
|
|
3143
3267
|
#
|
|
3144
|
-
# * REGION - The
|
|
3268
|
+
# * REGION - The Amazon Web Services Region.
|
|
3145
3269
|
#
|
|
3146
3270
|
# * INSTANCE\_TYPE\_FAMILY - The family of instances (For example,
|
|
3147
3271
|
# `m5`)
|
|
3148
3272
|
#
|
|
3149
3273
|
# * LINKED\_ACCOUNT - The description in the attribute map that
|
|
3150
3274
|
# includes the full name of the member account. The value field
|
|
3151
|
-
# contains the
|
|
3275
|
+
# contains the Amazon Web Services ID of the member account.
|
|
3152
3276
|
#
|
|
3153
3277
|
# * SAVINGS\_PLAN\_ARN - The unique identifier for your Savings Plan
|
|
3154
3278
|
# @return [Array<Types::DimensionValuesWithAttributes>]
|
|
3155
3279
|
#
|
|
3156
3280
|
# @!attribute [rw] return_size
|
|
3157
|
-
# The number of results that
|
|
3281
|
+
# The number of results that Amazon Web Services returned at one time.
|
|
3158
3282
|
# @return [Integer]
|
|
3159
3283
|
#
|
|
3160
3284
|
# @!attribute [rw] total_size
|
|
@@ -3162,9 +3286,9 @@ module Aws::CostExplorer
|
|
|
3162
3286
|
# @return [Integer]
|
|
3163
3287
|
#
|
|
3164
3288
|
# @!attribute [rw] next_page_token
|
|
3165
|
-
# The token for the next set of retrievable results.
|
|
3166
|
-
# token when the response from a previous call
|
|
3167
|
-
# the maximum page size.
|
|
3289
|
+
# The token for the next set of retrievable results. Amazon Web
|
|
3290
|
+
# Services provides the token when the response from a previous call
|
|
3291
|
+
# has more results than the maximum page size.
|
|
3168
3292
|
# @return [String]
|
|
3169
3293
|
#
|
|
3170
3294
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetDimensionValuesResponse AWS API Documentation
|
|
@@ -3270,8 +3394,8 @@ module Aws::CostExplorer
|
|
|
3270
3394
|
# @return [Array<Types::GroupDefinition>]
|
|
3271
3395
|
#
|
|
3272
3396
|
# @!attribute [rw] granularity
|
|
3273
|
-
# The granularity of the
|
|
3274
|
-
# values are `MONTHLY` and `DAILY`.
|
|
3397
|
+
# The granularity of the Amazon Web Services cost data for the
|
|
3398
|
+
# reservation. Valid values are `MONTHLY` and `DAILY`.
|
|
3275
3399
|
#
|
|
3276
3400
|
# If `GroupBy` is set, `Granularity` can't be set. If `Granularity`
|
|
3277
3401
|
# isn't set, the response object doesn't include `Granularity`,
|
|
@@ -3332,9 +3456,9 @@ module Aws::CostExplorer
|
|
|
3332
3456
|
# @return [Array<String>]
|
|
3333
3457
|
#
|
|
3334
3458
|
# @!attribute [rw] next_page_token
|
|
3335
|
-
# The token to retrieve the next set of results.
|
|
3336
|
-
# token when the response from a previous call has more
|
|
3337
|
-
# the maximum page size.
|
|
3459
|
+
# The token to retrieve the next set of results. Amazon Web Services
|
|
3460
|
+
# provides the token when the response from a previous call has more
|
|
3461
|
+
# results than the maximum page size.
|
|
3338
3462
|
# @return [String]
|
|
3339
3463
|
#
|
|
3340
3464
|
# @!attribute [rw] sort_by
|
|
@@ -3367,9 +3491,9 @@ module Aws::CostExplorer
|
|
|
3367
3491
|
#
|
|
3368
3492
|
# @!attribute [rw] max_results
|
|
3369
3493
|
# The maximum number of objects that you returned for this request. If
|
|
3370
|
-
# more objects are available, in the response,
|
|
3371
|
-
# NextPageToken value that you can use in a subsequent call
|
|
3372
|
-
# next batch of objects.
|
|
3494
|
+
# more objects are available, in the response, Amazon Web Services
|
|
3495
|
+
# provides a NextPageToken value that you can use in a subsequent call
|
|
3496
|
+
# to get the next batch of objects.
|
|
3373
3497
|
# @return [Integer]
|
|
3374
3498
|
#
|
|
3375
3499
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetReservationCoverageRequest AWS API Documentation
|
|
@@ -3396,9 +3520,9 @@ module Aws::CostExplorer
|
|
|
3396
3520
|
# @return [Types::Coverage]
|
|
3397
3521
|
#
|
|
3398
3522
|
# @!attribute [rw] next_page_token
|
|
3399
|
-
# The token for the next set of retrievable results.
|
|
3400
|
-
# token when the response from a previous call
|
|
3401
|
-
# the maximum page size.
|
|
3523
|
+
# The token for the next set of retrievable results. Amazon Web
|
|
3524
|
+
# Services provides the token when the response from a previous call
|
|
3525
|
+
# has more results than the maximum page size.
|
|
3402
3526
|
# @return [String]
|
|
3403
3527
|
#
|
|
3404
3528
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetReservationCoverageResponse AWS API Documentation
|
|
@@ -3477,7 +3601,7 @@ module Aws::CostExplorer
|
|
|
3477
3601
|
# filter for `REGION==us-east-1 OR REGION==us-west-1`. For
|
|
3478
3602
|
# `GetRightsizingRecommendation`, the Region is a full name (for
|
|
3479
3603
|
# example, `REGION==US East (N. Virginia)`. The `Expression` example
|
|
3480
|
-
#
|
|
3604
|
+
# is as follows:
|
|
3481
3605
|
#
|
|
3482
3606
|
# `\{ "Dimensions": \{ "Key": "REGION", "Values": [ "us-east-1",
|
|
3483
3607
|
# “us-west-1” ] \} \}`
|
|
@@ -3489,11 +3613,11 @@ module Aws::CostExplorer
|
|
|
3489
3613
|
#
|
|
3490
3614
|
# * Compound dimension values with logical operations - You can use
|
|
3491
3615
|
# multiple `Expression` types and the logical operators `AND/OR/NOT`
|
|
3492
|
-
# to create a list of one or more `Expression` objects.
|
|
3493
|
-
# you
|
|
3494
|
-
# filter on `((REGION == us-east-1 OR REGION == us-west-1) OR
|
|
3616
|
+
# to create a list of one or more `Expression` objects. By doing
|
|
3617
|
+
# this, you can filter on more advanced options. For example, you
|
|
3618
|
+
# can filter on `((REGION == us-east-1 OR REGION == us-west-1) OR
|
|
3495
3619
|
# (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer)`. The
|
|
3496
|
-
# `Expression` for that
|
|
3620
|
+
# `Expression` for that is as follows:
|
|
3497
3621
|
#
|
|
3498
3622
|
# `\{ "And": [ \{"Or": [ \{"Dimensions": \{ "Key": "REGION",
|
|
3499
3623
|
# "Values": [ "us-east-1", "us-west-1" ] \}\}, \{"Tags": \{ "Key":
|
|
@@ -3511,13 +3635,13 @@ module Aws::CostExplorer
|
|
|
3511
3635
|
# "USAGE_TYPE", "Values": [ "DataTransfer" ] \} \} `
|
|
3512
3636
|
#
|
|
3513
3637
|
# <note markdown="1"> For the `GetRightsizingRecommendation` action, a combination of OR
|
|
3514
|
-
# and NOT
|
|
3638
|
+
# and NOT isn't supported. OR isn't supported between different
|
|
3515
3639
|
# dimensions, or dimensions and tags. NOT operators aren't supported.
|
|
3516
3640
|
# Dimensions are also limited to `LINKED_ACCOUNT`, `REGION`, or
|
|
3517
3641
|
# `RIGHTSIZING_TYPE`.
|
|
3518
3642
|
#
|
|
3519
3643
|
# For the `GetReservationPurchaseRecommendation` action, only NOT is
|
|
3520
|
-
# supported. AND and OR
|
|
3644
|
+
# supported. AND and OR aren't supported. Dimensions are limited to
|
|
3521
3645
|
# `LINKED_ACCOUNT`.
|
|
3522
3646
|
#
|
|
3523
3647
|
# </note>
|
|
@@ -3532,8 +3656,8 @@ module Aws::CostExplorer
|
|
|
3532
3656
|
# @return [String]
|
|
3533
3657
|
#
|
|
3534
3658
|
# @!attribute [rw] lookback_period_in_days
|
|
3535
|
-
# The number of previous days that you want
|
|
3536
|
-
# calculates your recommendations.
|
|
3659
|
+
# The number of previous days that you want Amazon Web Services to
|
|
3660
|
+
# consider when it calculates your recommendations.
|
|
3537
3661
|
# @return [String]
|
|
3538
3662
|
#
|
|
3539
3663
|
# @!attribute [rw] term_in_years
|
|
@@ -3754,16 +3878,16 @@ module Aws::CostExplorer
|
|
|
3754
3878
|
# @return [Types::SortDefinition]
|
|
3755
3879
|
#
|
|
3756
3880
|
# @!attribute [rw] next_page_token
|
|
3757
|
-
# The token to retrieve the next set of results.
|
|
3758
|
-
# token when the response from a previous call has more
|
|
3759
|
-
# the maximum page size.
|
|
3881
|
+
# The token to retrieve the next set of results. Amazon Web Services
|
|
3882
|
+
# provides the token when the response from a previous call has more
|
|
3883
|
+
# results than the maximum page size.
|
|
3760
3884
|
# @return [String]
|
|
3761
3885
|
#
|
|
3762
3886
|
# @!attribute [rw] max_results
|
|
3763
3887
|
# The maximum number of objects that you returned for this request. If
|
|
3764
|
-
# more objects are available, in the response,
|
|
3765
|
-
# NextPageToken value that you can use in a subsequent call
|
|
3766
|
-
# next batch of objects.
|
|
3888
|
+
# more objects are available, in the response, Amazon Web Services
|
|
3889
|
+
# provides a NextPageToken value that you can use in a subsequent call
|
|
3890
|
+
# to get the next batch of objects.
|
|
3767
3891
|
# @return [Integer]
|
|
3768
3892
|
#
|
|
3769
3893
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetReservationUtilizationRequest AWS API Documentation
|
|
@@ -3789,9 +3913,9 @@ module Aws::CostExplorer
|
|
|
3789
3913
|
# @return [Types::ReservationAggregates]
|
|
3790
3914
|
#
|
|
3791
3915
|
# @!attribute [rw] next_page_token
|
|
3792
|
-
# The token for the next set of retrievable results.
|
|
3793
|
-
# token when the response from a previous call
|
|
3794
|
-
# the maximum page size.
|
|
3916
|
+
# The token for the next set of retrievable results. Amazon Web
|
|
3917
|
+
# Services provides the token when the response from a previous call
|
|
3918
|
+
# has more results than the maximum page size.
|
|
3795
3919
|
# @return [String]
|
|
3796
3920
|
#
|
|
3797
3921
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetReservationUtilizationResponse AWS API Documentation
|
|
@@ -3856,7 +3980,7 @@ module Aws::CostExplorer
|
|
|
3856
3980
|
# filter for `REGION==us-east-1 OR REGION==us-west-1`. For
|
|
3857
3981
|
# `GetRightsizingRecommendation`, the Region is a full name (for
|
|
3858
3982
|
# example, `REGION==US East (N. Virginia)`. The `Expression` example
|
|
3859
|
-
#
|
|
3983
|
+
# is as follows:
|
|
3860
3984
|
#
|
|
3861
3985
|
# `\{ "Dimensions": \{ "Key": "REGION", "Values": [ "us-east-1",
|
|
3862
3986
|
# “us-west-1” ] \} \}`
|
|
@@ -3868,11 +3992,11 @@ module Aws::CostExplorer
|
|
|
3868
3992
|
#
|
|
3869
3993
|
# * Compound dimension values with logical operations - You can use
|
|
3870
3994
|
# multiple `Expression` types and the logical operators `AND/OR/NOT`
|
|
3871
|
-
# to create a list of one or more `Expression` objects.
|
|
3872
|
-
# you
|
|
3873
|
-
# filter on `((REGION == us-east-1 OR REGION == us-west-1) OR
|
|
3995
|
+
# to create a list of one or more `Expression` objects. By doing
|
|
3996
|
+
# this, you can filter on more advanced options. For example, you
|
|
3997
|
+
# can filter on `((REGION == us-east-1 OR REGION == us-west-1) OR
|
|
3874
3998
|
# (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer)`. The
|
|
3875
|
-
# `Expression` for that
|
|
3999
|
+
# `Expression` for that is as follows:
|
|
3876
4000
|
#
|
|
3877
4001
|
# `\{ "And": [ \{"Or": [ \{"Dimensions": \{ "Key": "REGION",
|
|
3878
4002
|
# "Values": [ "us-east-1", "us-west-1" ] \}\}, \{"Tags": \{ "Key":
|
|
@@ -3890,13 +4014,13 @@ module Aws::CostExplorer
|
|
|
3890
4014
|
# "USAGE_TYPE", "Values": [ "DataTransfer" ] \} \} `
|
|
3891
4015
|
#
|
|
3892
4016
|
# <note markdown="1"> For the `GetRightsizingRecommendation` action, a combination of OR
|
|
3893
|
-
# and NOT
|
|
4017
|
+
# and NOT isn't supported. OR isn't supported between different
|
|
3894
4018
|
# dimensions, or dimensions and tags. NOT operators aren't supported.
|
|
3895
4019
|
# Dimensions are also limited to `LINKED_ACCOUNT`, `REGION`, or
|
|
3896
4020
|
# `RIGHTSIZING_TYPE`.
|
|
3897
4021
|
#
|
|
3898
4022
|
# For the `GetReservationPurchaseRecommendation` action, only NOT is
|
|
3899
|
-
# supported. AND and OR
|
|
4023
|
+
# supported. AND and OR aren't supported. Dimensions are limited to
|
|
3900
4024
|
# `LINKED_ACCOUNT`.
|
|
3901
4025
|
#
|
|
3902
4026
|
# </note>
|
|
@@ -4264,9 +4388,9 @@ module Aws::CostExplorer
|
|
|
4264
4388
|
# @return [Types::SavingsPlansPurchaseRecommendation]
|
|
4265
4389
|
#
|
|
4266
4390
|
# @!attribute [rw] next_page_token
|
|
4267
|
-
# The token for the next set of retrievable results.
|
|
4268
|
-
# token when the response from a previous call
|
|
4269
|
-
# the maximum page size.
|
|
4391
|
+
# The token for the next set of retrievable results. Amazon Web
|
|
4392
|
+
# Services provides the token when the response from a previous call
|
|
4393
|
+
# has more results than the maximum page size.
|
|
4270
4394
|
# @return [String]
|
|
4271
4395
|
#
|
|
4272
4396
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetSavingsPlansPurchaseRecommendationResponse AWS API Documentation
|
|
@@ -4644,7 +4768,7 @@ module Aws::CostExplorer
|
|
|
4644
4768
|
# filter for `REGION==us-east-1 OR REGION==us-west-1`. For
|
|
4645
4769
|
# `GetRightsizingRecommendation`, the Region is a full name (for
|
|
4646
4770
|
# example, `REGION==US East (N. Virginia)`. The `Expression` example
|
|
4647
|
-
#
|
|
4771
|
+
# is as follows:
|
|
4648
4772
|
#
|
|
4649
4773
|
# `\{ "Dimensions": \{ "Key": "REGION", "Values": [ "us-east-1",
|
|
4650
4774
|
# “us-west-1” ] \} \}`
|
|
@@ -4656,11 +4780,11 @@ module Aws::CostExplorer
|
|
|
4656
4780
|
#
|
|
4657
4781
|
# * Compound dimension values with logical operations - You can use
|
|
4658
4782
|
# multiple `Expression` types and the logical operators `AND/OR/NOT`
|
|
4659
|
-
# to create a list of one or more `Expression` objects.
|
|
4660
|
-
# you
|
|
4661
|
-
# filter on `((REGION == us-east-1 OR REGION == us-west-1) OR
|
|
4783
|
+
# to create a list of one or more `Expression` objects. By doing
|
|
4784
|
+
# this, you can filter on more advanced options. For example, you
|
|
4785
|
+
# can filter on `((REGION == us-east-1 OR REGION == us-west-1) OR
|
|
4662
4786
|
# (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer)`. The
|
|
4663
|
-
# `Expression` for that
|
|
4787
|
+
# `Expression` for that is as follows:
|
|
4664
4788
|
#
|
|
4665
4789
|
# `\{ "And": [ \{"Or": [ \{"Dimensions": \{ "Key": "REGION",
|
|
4666
4790
|
# "Values": [ "us-east-1", "us-west-1" ] \}\}, \{"Tags": \{ "Key":
|
|
@@ -4678,13 +4802,13 @@ module Aws::CostExplorer
|
|
|
4678
4802
|
# "USAGE_TYPE", "Values": [ "DataTransfer" ] \} \} `
|
|
4679
4803
|
#
|
|
4680
4804
|
# <note markdown="1"> For the `GetRightsizingRecommendation` action, a combination of OR
|
|
4681
|
-
# and NOT
|
|
4805
|
+
# and NOT isn't supported. OR isn't supported between different
|
|
4682
4806
|
# dimensions, or dimensions and tags. NOT operators aren't supported.
|
|
4683
4807
|
# Dimensions are also limited to `LINKED_ACCOUNT`, `REGION`, or
|
|
4684
4808
|
# `RIGHTSIZING_TYPE`.
|
|
4685
4809
|
#
|
|
4686
4810
|
# For the `GetReservationPurchaseRecommendation` action, only NOT is
|
|
4687
|
-
# supported. AND and OR
|
|
4811
|
+
# supported. AND and OR aren't supported. Dimensions are limited to
|
|
4688
4812
|
# `LINKED_ACCOUNT`.
|
|
4689
4813
|
#
|
|
4690
4814
|
# </note>
|
|
@@ -4726,9 +4850,9 @@ module Aws::CostExplorer
|
|
|
4726
4850
|
# @return [Integer]
|
|
4727
4851
|
#
|
|
4728
4852
|
# @!attribute [rw] next_page_token
|
|
4729
|
-
# The token to retrieve the next set of results.
|
|
4730
|
-
# token when the response from a previous call has more
|
|
4731
|
-
# the maximum page size.
|
|
4853
|
+
# The token to retrieve the next set of results. Amazon Web Services
|
|
4854
|
+
# provides the token when the response from a previous call has more
|
|
4855
|
+
# results than the maximum page size.
|
|
4732
4856
|
# @return [String]
|
|
4733
4857
|
#
|
|
4734
4858
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetTagsRequest AWS API Documentation
|
|
@@ -4746,9 +4870,9 @@ module Aws::CostExplorer
|
|
|
4746
4870
|
end
|
|
4747
4871
|
|
|
4748
4872
|
# @!attribute [rw] next_page_token
|
|
4749
|
-
# The token for the next set of retrievable results.
|
|
4750
|
-
# token when the response from a previous call
|
|
4751
|
-
# the maximum page size.
|
|
4873
|
+
# The token for the next set of retrievable results. Amazon Web
|
|
4874
|
+
# Services provides the token when the response from a previous call
|
|
4875
|
+
# has more results than the maximum page size.
|
|
4752
4876
|
# @return [String]
|
|
4753
4877
|
#
|
|
4754
4878
|
# @!attribute [rw] tags
|
|
@@ -4756,7 +4880,8 @@ module Aws::CostExplorer
|
|
|
4756
4880
|
# @return [Array<String>]
|
|
4757
4881
|
#
|
|
4758
4882
|
# @!attribute [rw] return_size
|
|
4759
|
-
# The number of query results that
|
|
4883
|
+
# The number of query results that Amazon Web Services returns at a
|
|
4884
|
+
# time.
|
|
4760
4885
|
# @return [Integer]
|
|
4761
4886
|
#
|
|
4762
4887
|
# @!attribute [rw] total_size
|
|
@@ -4984,14 +5109,14 @@ module Aws::CostExplorer
|
|
|
4984
5109
|
include Aws::Structure
|
|
4985
5110
|
end
|
|
4986
5111
|
|
|
4987
|
-
# The
|
|
5112
|
+
# The dollar value of the anomaly.
|
|
4988
5113
|
#
|
|
4989
5114
|
# @!attribute [rw] max_impact
|
|
4990
|
-
# The maximum dollar value observed for an anomaly.
|
|
5115
|
+
# The maximum dollar value that's observed for an anomaly.
|
|
4991
5116
|
# @return [Float]
|
|
4992
5117
|
#
|
|
4993
5118
|
# @!attribute [rw] total_impact
|
|
4994
|
-
# The cumulative dollar value observed for an anomaly.
|
|
5119
|
+
# The cumulative dollar value that's observed for an anomaly.
|
|
4995
5120
|
# @return [Float]
|
|
4996
5121
|
#
|
|
4997
5122
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/Impact AWS API Documentation
|
|
@@ -5003,26 +5128,32 @@ module Aws::CostExplorer
|
|
|
5003
5128
|
include Aws::Structure
|
|
5004
5129
|
end
|
|
5005
5130
|
|
|
5006
|
-
# Details about the instances that
|
|
5131
|
+
# Details about the instances that Amazon Web Services recommends that
|
|
5132
|
+
# you purchase.
|
|
5007
5133
|
#
|
|
5008
5134
|
# @!attribute [rw] ec2_instance_details
|
|
5009
|
-
# The Amazon EC2 instances that
|
|
5135
|
+
# The Amazon EC2 instances that Amazon Web Services recommends that
|
|
5136
|
+
# you purchase.
|
|
5010
5137
|
# @return [Types::EC2InstanceDetails]
|
|
5011
5138
|
#
|
|
5012
5139
|
# @!attribute [rw] rds_instance_details
|
|
5013
|
-
# The Amazon RDS instances that
|
|
5140
|
+
# The Amazon RDS instances that Amazon Web Services recommends that
|
|
5141
|
+
# you purchase.
|
|
5014
5142
|
# @return [Types::RDSInstanceDetails]
|
|
5015
5143
|
#
|
|
5016
5144
|
# @!attribute [rw] redshift_instance_details
|
|
5017
|
-
# The Amazon Redshift instances that
|
|
5145
|
+
# The Amazon Redshift instances that Amazon Web Services recommends
|
|
5146
|
+
# that you purchase.
|
|
5018
5147
|
# @return [Types::RedshiftInstanceDetails]
|
|
5019
5148
|
#
|
|
5020
5149
|
# @!attribute [rw] elasticache_instance_details
|
|
5021
|
-
# The ElastiCache instances that
|
|
5150
|
+
# The ElastiCache instances that Amazon Web Services recommends that
|
|
5151
|
+
# you purchase.
|
|
5022
5152
|
# @return [Types::ElastiCacheInstanceDetails]
|
|
5023
5153
|
#
|
|
5024
5154
|
# @!attribute [rw] es_instance_details
|
|
5025
|
-
# The Amazon ES instances that
|
|
5155
|
+
# The Amazon ES instances that Amazon Web Services recommends that you
|
|
5156
|
+
# purchase.
|
|
5026
5157
|
# @return [Types::ESInstanceDetails]
|
|
5027
5158
|
#
|
|
5028
5159
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/InstanceDetails AWS API Documentation
|
|
@@ -5138,8 +5269,8 @@ module Aws::CostExplorer
|
|
|
5138
5269
|
# Details on the modification recommendation.
|
|
5139
5270
|
#
|
|
5140
5271
|
# @!attribute [rw] target_instances
|
|
5141
|
-
#
|
|
5142
|
-
# recommendation.
|
|
5272
|
+
# Determines whether this instance type is the Amazon Web Services
|
|
5273
|
+
# default recommendation.
|
|
5143
5274
|
# @return [Array<Types::TargetInstance>]
|
|
5144
5275
|
#
|
|
5145
5276
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/ModifyRecommendationDetail AWS API Documentation
|
|
@@ -5150,25 +5281,26 @@ module Aws::CostExplorer
|
|
|
5150
5281
|
include Aws::Structure
|
|
5151
5282
|
end
|
|
5152
5283
|
|
|
5153
|
-
# The network field that contains a list of network metrics
|
|
5154
|
-
# with the current instance.
|
|
5284
|
+
# The network field that contains a list of network metrics that are
|
|
5285
|
+
# associated with the current instance.
|
|
5155
5286
|
#
|
|
5156
5287
|
# @!attribute [rw] network_in_bytes_per_second
|
|
5157
|
-
# The network
|
|
5288
|
+
# The network inbound throughput utilization measured in Bytes per
|
|
5158
5289
|
# second.
|
|
5159
5290
|
# @return [String]
|
|
5160
5291
|
#
|
|
5161
5292
|
# @!attribute [rw] network_out_bytes_per_second
|
|
5162
|
-
# The network
|
|
5293
|
+
# The network outbound throughput utilization measured in Bytes per
|
|
5163
5294
|
# second.
|
|
5164
5295
|
# @return [String]
|
|
5165
5296
|
#
|
|
5166
5297
|
# @!attribute [rw] network_packets_in_per_second
|
|
5167
|
-
# The network ingress packets measured in packets per second.
|
|
5298
|
+
# The network ingress packets that are measured in packets per second.
|
|
5168
5299
|
# @return [String]
|
|
5169
5300
|
#
|
|
5170
5301
|
# @!attribute [rw] network_packets_out_per_second
|
|
5171
|
-
# The network outgress packets measured in packets per
|
|
5302
|
+
# The network outgress packets that are measured in packets per
|
|
5303
|
+
# second.
|
|
5172
5304
|
# @return [String]
|
|
5173
5305
|
#
|
|
5174
5306
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/NetworkResourceUtilization AWS API Documentation
|
|
@@ -5220,19 +5352,19 @@ module Aws::CostExplorer
|
|
|
5220
5352
|
include Aws::Structure
|
|
5221
5353
|
end
|
|
5222
5354
|
|
|
5223
|
-
# Details about the Amazon RDS instances that
|
|
5224
|
-
# purchase.
|
|
5355
|
+
# Details about the Amazon RDS instances that Amazon Web Services
|
|
5356
|
+
# recommends that you purchase.
|
|
5225
5357
|
#
|
|
5226
5358
|
# @!attribute [rw] family
|
|
5227
5359
|
# The instance family of the recommended reservation.
|
|
5228
5360
|
# @return [String]
|
|
5229
5361
|
#
|
|
5230
5362
|
# @!attribute [rw] instance_type
|
|
5231
|
-
# The type of instance that
|
|
5363
|
+
# The type of instance that Amazon Web Services recommends.
|
|
5232
5364
|
# @return [String]
|
|
5233
5365
|
#
|
|
5234
5366
|
# @!attribute [rw] region
|
|
5235
|
-
# The
|
|
5367
|
+
# The Amazon Web Services Region of the recommended reservation.
|
|
5236
5368
|
# @return [String]
|
|
5237
5369
|
#
|
|
5238
5370
|
# @!attribute [rw] database_engine
|
|
@@ -5244,8 +5376,8 @@ module Aws::CostExplorer
|
|
|
5244
5376
|
# @return [String]
|
|
5245
5377
|
#
|
|
5246
5378
|
# @!attribute [rw] deployment_option
|
|
5247
|
-
#
|
|
5248
|
-
# Availability Zone or a reservation with a backup in a second
|
|
5379
|
+
# Determines whether the recommendation is for a reservation in a
|
|
5380
|
+
# single Availability Zone or a reservation with a backup in a second
|
|
5249
5381
|
# Availability Zone.
|
|
5250
5382
|
# @return [String]
|
|
5251
5383
|
#
|
|
@@ -5254,11 +5386,12 @@ module Aws::CostExplorer
|
|
|
5254
5386
|
# @return [String]
|
|
5255
5387
|
#
|
|
5256
5388
|
# @!attribute [rw] current_generation
|
|
5257
|
-
#
|
|
5389
|
+
# Determines whether the recommendation is for a current-generation
|
|
5390
|
+
# instance.
|
|
5258
5391
|
# @return [Boolean]
|
|
5259
5392
|
#
|
|
5260
5393
|
# @!attribute [rw] size_flex_eligible
|
|
5261
|
-
#
|
|
5394
|
+
# Determines whether the recommended reservation is size flexible.
|
|
5262
5395
|
# @return [Boolean]
|
|
5263
5396
|
#
|
|
5264
5397
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/RDSInstanceDetails AWS API Documentation
|
|
@@ -5277,27 +5410,28 @@ module Aws::CostExplorer
|
|
|
5277
5410
|
include Aws::Structure
|
|
5278
5411
|
end
|
|
5279
5412
|
|
|
5280
|
-
# Details about the Amazon Redshift instances that
|
|
5281
|
-
# you purchase.
|
|
5413
|
+
# Details about the Amazon Redshift instances that Amazon Web Services
|
|
5414
|
+
# recommends that you purchase.
|
|
5282
5415
|
#
|
|
5283
5416
|
# @!attribute [rw] family
|
|
5284
5417
|
# The instance family of the recommended reservation.
|
|
5285
5418
|
# @return [String]
|
|
5286
5419
|
#
|
|
5287
5420
|
# @!attribute [rw] node_type
|
|
5288
|
-
# The type of node that
|
|
5421
|
+
# The type of node that Amazon Web Services recommends.
|
|
5289
5422
|
# @return [String]
|
|
5290
5423
|
#
|
|
5291
5424
|
# @!attribute [rw] region
|
|
5292
|
-
# The
|
|
5425
|
+
# The Amazon Web Services Region of the recommended reservation.
|
|
5293
5426
|
# @return [String]
|
|
5294
5427
|
#
|
|
5295
5428
|
# @!attribute [rw] current_generation
|
|
5296
|
-
#
|
|
5429
|
+
# Determines whether the recommendation is for a current-generation
|
|
5430
|
+
# instance.
|
|
5297
5431
|
# @return [Boolean]
|
|
5298
5432
|
#
|
|
5299
5433
|
# @!attribute [rw] size_flex_eligible
|
|
5300
|
-
#
|
|
5434
|
+
# Determines whether the recommended reservation is size flexible.
|
|
5301
5435
|
# @return [Boolean]
|
|
5302
5436
|
#
|
|
5303
5437
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/RedshiftInstanceDetails AWS API Documentation
|
|
@@ -5333,7 +5467,7 @@ module Aws::CostExplorer
|
|
|
5333
5467
|
# @return [String]
|
|
5334
5468
|
#
|
|
5335
5469
|
# @!attribute [rw] utilization_percentage_in_units
|
|
5336
|
-
# The percentage of Amazon EC2 reservation time that you used
|
|
5470
|
+
# The percentage of Amazon EC2 reservation time that you used. It's
|
|
5337
5471
|
# converted to normalized units. Normalized units are available only
|
|
5338
5472
|
# for Amazon EC2 usage after November 11, 2017.
|
|
5339
5473
|
# @return [String]
|
|
@@ -5343,9 +5477,9 @@ module Aws::CostExplorer
|
|
|
5343
5477
|
# @return [String]
|
|
5344
5478
|
#
|
|
5345
5479
|
# @!attribute [rw] purchased_units
|
|
5346
|
-
#
|
|
5347
|
-
# to normalized units. Normalized units are available only
|
|
5348
|
-
# EC2 usage after November 11, 2017.
|
|
5480
|
+
# The number of Amazon EC2 reservation hours that you purchased. It's
|
|
5481
|
+
# converted to normalized units. Normalized units are available only
|
|
5482
|
+
# for Amazon EC2 usage after November 11, 2017.
|
|
5349
5483
|
# @return [String]
|
|
5350
5484
|
#
|
|
5351
5485
|
# @!attribute [rw] total_actual_hours
|
|
@@ -5353,9 +5487,9 @@ module Aws::CostExplorer
|
|
|
5353
5487
|
# @return [String]
|
|
5354
5488
|
#
|
|
5355
5489
|
# @!attribute [rw] total_actual_units
|
|
5356
|
-
# The total number of Amazon EC2 reservation hours that you used
|
|
5357
|
-
# converted to normalized units. Normalized units are available
|
|
5358
|
-
# for Amazon EC2 usage after November 11, 2017.
|
|
5490
|
+
# The total number of Amazon EC2 reservation hours that you used.
|
|
5491
|
+
# It's converted to normalized units. Normalized units are available
|
|
5492
|
+
# only for Amazon EC2 usage after November 11, 2017.
|
|
5359
5493
|
# @return [String]
|
|
5360
5494
|
#
|
|
5361
5495
|
# @!attribute [rw] unused_hours
|
|
@@ -5363,38 +5497,38 @@ module Aws::CostExplorer
|
|
|
5363
5497
|
# @return [String]
|
|
5364
5498
|
#
|
|
5365
5499
|
# @!attribute [rw] unused_units
|
|
5366
|
-
# The number of Amazon EC2 reservation hours that you didn't use
|
|
5367
|
-
# converted to normalized units. Normalized units are available
|
|
5368
|
-
# for Amazon EC2 usage after November 11, 2017.
|
|
5500
|
+
# The number of Amazon EC2 reservation hours that you didn't use.
|
|
5501
|
+
# It's converted to normalized units. Normalized units are available
|
|
5502
|
+
# only for Amazon EC2 usage after November 11, 2017.
|
|
5369
5503
|
# @return [String]
|
|
5370
5504
|
#
|
|
5371
5505
|
# @!attribute [rw] on_demand_cost_of_ri_hours_used
|
|
5372
|
-
# How much your reservation
|
|
5506
|
+
# How much your reservation costs if charged On-Demand rates.
|
|
5373
5507
|
# @return [String]
|
|
5374
5508
|
#
|
|
5375
5509
|
# @!attribute [rw] net_ri_savings
|
|
5376
|
-
# How much you saved due to purchasing and utilizing reservation.
|
|
5377
|
-
# calculates this by subtracting
|
|
5378
|
-
# `OnDemandCostOfRIHoursUsed`.
|
|
5510
|
+
# How much you saved due to purchasing and utilizing reservation.
|
|
5511
|
+
# Amazon Web Services calculates this by subtracting
|
|
5512
|
+
# `TotalAmortizedFee` from `OnDemandCostOfRIHoursUsed`.
|
|
5379
5513
|
# @return [String]
|
|
5380
5514
|
#
|
|
5381
5515
|
# @!attribute [rw] total_potential_ri_savings
|
|
5382
|
-
# How much you
|
|
5516
|
+
# How much you might save if you use your entire reservation.
|
|
5383
5517
|
# @return [String]
|
|
5384
5518
|
#
|
|
5385
5519
|
# @!attribute [rw] amortized_upfront_fee
|
|
5386
|
-
# The upfront cost of your reservation
|
|
5387
|
-
# period.
|
|
5520
|
+
# The upfront cost of your reservation. It's amortized over the
|
|
5521
|
+
# reservation period.
|
|
5388
5522
|
# @return [String]
|
|
5389
5523
|
#
|
|
5390
5524
|
# @!attribute [rw] amortized_recurring_fee
|
|
5391
|
-
# The monthly cost of your reservation
|
|
5392
|
-
# period.
|
|
5525
|
+
# The monthly cost of your reservation. It's amortized over the
|
|
5526
|
+
# reservation period.
|
|
5393
5527
|
# @return [String]
|
|
5394
5528
|
#
|
|
5395
5529
|
# @!attribute [rw] total_amortized_fee
|
|
5396
|
-
# The total cost of your reservation
|
|
5397
|
-
# period.
|
|
5530
|
+
# The total cost of your reservation. It's amortized over the
|
|
5531
|
+
# reservation period.
|
|
5398
5532
|
# @return [String]
|
|
5399
5533
|
#
|
|
5400
5534
|
# @!attribute [rw] ri_cost_for_unused_hours
|
|
@@ -5402,11 +5536,12 @@ module Aws::CostExplorer
|
|
|
5402
5536
|
# @return [String]
|
|
5403
5537
|
#
|
|
5404
5538
|
# @!attribute [rw] realized_savings
|
|
5405
|
-
# The realized savings
|
|
5539
|
+
# The realized savings because of purchasing and using a reservation.
|
|
5406
5540
|
# @return [String]
|
|
5407
5541
|
#
|
|
5408
5542
|
# @!attribute [rw] unrealized_savings
|
|
5409
|
-
# The unrealized savings
|
|
5543
|
+
# The unrealized savings because of purchasing and using a
|
|
5544
|
+
# reservation.
|
|
5410
5545
|
# @return [String]
|
|
5411
5546
|
#
|
|
5412
5547
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/ReservationAggregates AWS API Documentation
|
|
@@ -5452,17 +5587,19 @@ module Aws::CostExplorer
|
|
|
5452
5587
|
include Aws::Structure
|
|
5453
5588
|
end
|
|
5454
5589
|
|
|
5455
|
-
# A specific reservation that
|
|
5590
|
+
# A specific reservation that Amazon Web Services recommends for
|
|
5591
|
+
# purchase.
|
|
5456
5592
|
#
|
|
5457
5593
|
# @!attribute [rw] account_scope
|
|
5458
|
-
# The account scope that
|
|
5459
|
-
# instance for. For example, you can purchase this
|
|
5460
|
-
# entire organization in
|
|
5594
|
+
# The account scope that Amazon Web Services recommends that you
|
|
5595
|
+
# purchase this instance for. For example, you can purchase this
|
|
5596
|
+
# reservation for an entire organization in Amazon Web Services
|
|
5597
|
+
# Organizations.
|
|
5461
5598
|
# @return [String]
|
|
5462
5599
|
#
|
|
5463
5600
|
# @!attribute [rw] lookback_period_in_days
|
|
5464
|
-
# How many days of previous usage that
|
|
5465
|
-
# recommendation.
|
|
5601
|
+
# How many days of previous usage that Amazon Web Services considers
|
|
5602
|
+
# when making this recommendation.
|
|
5466
5603
|
# @return [String]
|
|
5467
5604
|
#
|
|
5468
5605
|
# @!attribute [rw] term_in_years
|
|
@@ -5471,8 +5608,8 @@ module Aws::CostExplorer
|
|
|
5471
5608
|
# @return [String]
|
|
5472
5609
|
#
|
|
5473
5610
|
# @!attribute [rw] payment_option
|
|
5474
|
-
# The payment option for the reservation
|
|
5475
|
-
# `NoUpfront
|
|
5611
|
+
# The payment option for the reservation (for example, `AllUpfront` or
|
|
5612
|
+
# `NoUpfront`).
|
|
5476
5613
|
# @return [String]
|
|
5477
5614
|
#
|
|
5478
5615
|
# @!attribute [rw] service_specification
|
|
@@ -5509,87 +5646,91 @@ module Aws::CostExplorer
|
|
|
5509
5646
|
# @return [String]
|
|
5510
5647
|
#
|
|
5511
5648
|
# @!attribute [rw] instance_details
|
|
5512
|
-
# Details about the instances that
|
|
5649
|
+
# Details about the instances that Amazon Web Services recommends that
|
|
5650
|
+
# you purchase.
|
|
5513
5651
|
# @return [Types::InstanceDetails]
|
|
5514
5652
|
#
|
|
5515
5653
|
# @!attribute [rw] recommended_number_of_instances_to_purchase
|
|
5516
|
-
# The number of instances that
|
|
5654
|
+
# The number of instances that Amazon Web Services recommends that you
|
|
5655
|
+
# purchase.
|
|
5517
5656
|
# @return [String]
|
|
5518
5657
|
#
|
|
5519
5658
|
# @!attribute [rw] recommended_normalized_units_to_purchase
|
|
5520
|
-
# The number of normalized units that
|
|
5521
|
-
# purchase.
|
|
5659
|
+
# The number of normalized units that Amazon Web Services recommends
|
|
5660
|
+
# that you purchase.
|
|
5522
5661
|
# @return [String]
|
|
5523
5662
|
#
|
|
5524
5663
|
# @!attribute [rw] minimum_number_of_instances_used_per_hour
|
|
5525
5664
|
# The minimum number of instances that you used in an hour during the
|
|
5526
|
-
# historical period.
|
|
5527
|
-
# reservation purchases.
|
|
5665
|
+
# historical period. Amazon Web Services uses this to calculate your
|
|
5666
|
+
# recommended reservation purchases.
|
|
5528
5667
|
# @return [String]
|
|
5529
5668
|
#
|
|
5530
5669
|
# @!attribute [rw] minimum_normalized_units_used_per_hour
|
|
5531
5670
|
# The minimum number of normalized units that you used in an hour
|
|
5532
|
-
# during the historical period.
|
|
5533
|
-
# recommended reservation purchases.
|
|
5671
|
+
# during the historical period. Amazon Web Services uses this to
|
|
5672
|
+
# calculate your recommended reservation purchases.
|
|
5534
5673
|
# @return [String]
|
|
5535
5674
|
#
|
|
5536
5675
|
# @!attribute [rw] maximum_number_of_instances_used_per_hour
|
|
5537
5676
|
# The maximum number of instances that you used in an hour during the
|
|
5538
|
-
# historical period.
|
|
5539
|
-
# reservation purchases.
|
|
5677
|
+
# historical period. Amazon Web Services uses this to calculate your
|
|
5678
|
+
# recommended reservation purchases.
|
|
5540
5679
|
# @return [String]
|
|
5541
5680
|
#
|
|
5542
5681
|
# @!attribute [rw] maximum_normalized_units_used_per_hour
|
|
5543
5682
|
# The maximum number of normalized units that you used in an hour
|
|
5544
|
-
# during the historical period.
|
|
5545
|
-
# recommended reservation purchases.
|
|
5683
|
+
# during the historical period. Amazon Web Services uses this to
|
|
5684
|
+
# calculate your recommended reservation purchases.
|
|
5546
5685
|
# @return [String]
|
|
5547
5686
|
#
|
|
5548
5687
|
# @!attribute [rw] average_number_of_instances_used_per_hour
|
|
5549
5688
|
# The average number of instances that you used in an hour during the
|
|
5550
|
-
# historical period.
|
|
5551
|
-
# reservation purchases.
|
|
5689
|
+
# historical period. Amazon Web Services uses this to calculate your
|
|
5690
|
+
# recommended reservation purchases.
|
|
5552
5691
|
# @return [String]
|
|
5553
5692
|
#
|
|
5554
5693
|
# @!attribute [rw] average_normalized_units_used_per_hour
|
|
5555
5694
|
# The average number of normalized units that you used in an hour
|
|
5556
|
-
# during the historical period.
|
|
5557
|
-
# recommended reservation purchases.
|
|
5695
|
+
# during the historical period. Amazon Web Services uses this to
|
|
5696
|
+
# calculate your recommended reservation purchases.
|
|
5558
5697
|
# @return [String]
|
|
5559
5698
|
#
|
|
5560
5699
|
# @!attribute [rw] average_utilization
|
|
5561
|
-
# The average utilization of your instances.
|
|
5562
|
-
# calculate your recommended reservation purchases.
|
|
5700
|
+
# The average utilization of your instances. Amazon Web Services uses
|
|
5701
|
+
# this to calculate your recommended reservation purchases.
|
|
5563
5702
|
# @return [String]
|
|
5564
5703
|
#
|
|
5565
5704
|
# @!attribute [rw] estimated_break_even_in_months
|
|
5566
|
-
# How long
|
|
5567
|
-
# saving you money, in months.
|
|
5705
|
+
# How long Amazon Web Services estimates that it takes for this
|
|
5706
|
+
# instance to start saving you money, in months.
|
|
5568
5707
|
# @return [String]
|
|
5569
5708
|
#
|
|
5570
5709
|
# @!attribute [rw] currency_code
|
|
5571
|
-
# The currency code that
|
|
5572
|
-
# instance.
|
|
5710
|
+
# The currency code that Amazon Web Services used to calculate the
|
|
5711
|
+
# costs for this instance.
|
|
5573
5712
|
# @return [String]
|
|
5574
5713
|
#
|
|
5575
5714
|
# @!attribute [rw] estimated_monthly_savings_amount
|
|
5576
|
-
# How much
|
|
5577
|
-
# you in a month.
|
|
5715
|
+
# How much Amazon Web Services estimates that this specific
|
|
5716
|
+
# recommendation could save you in a month.
|
|
5578
5717
|
# @return [String]
|
|
5579
5718
|
#
|
|
5580
5719
|
# @!attribute [rw] estimated_monthly_savings_percentage
|
|
5581
|
-
# How much
|
|
5582
|
-
# you in a month, as a percentage of your
|
|
5720
|
+
# How much Amazon Web Services estimates that this specific
|
|
5721
|
+
# recommendation could save you in a month, as a percentage of your
|
|
5722
|
+
# overall costs.
|
|
5583
5723
|
# @return [String]
|
|
5584
5724
|
#
|
|
5585
5725
|
# @!attribute [rw] estimated_monthly_on_demand_cost
|
|
5586
|
-
# How much
|
|
5587
|
-
# month.
|
|
5726
|
+
# How much Amazon Web Services estimates that you spend on On-Demand
|
|
5727
|
+
# Instances in a month.
|
|
5588
5728
|
# @return [String]
|
|
5589
5729
|
#
|
|
5590
5730
|
# @!attribute [rw] estimated_reservation_cost_for_lookback_period
|
|
5591
|
-
# How much
|
|
5592
|
-
# during the specified historical period if you had a
|
|
5731
|
+
# How much Amazon Web Services estimates that you would have spent for
|
|
5732
|
+
# all usage during the specified historical period if you had a
|
|
5733
|
+
# reservation.
|
|
5593
5734
|
# @return [String]
|
|
5594
5735
|
#
|
|
5595
5736
|
# @!attribute [rw] upfront_cost
|
|
@@ -5627,14 +5768,14 @@ module Aws::CostExplorer
|
|
|
5627
5768
|
end
|
|
5628
5769
|
|
|
5629
5770
|
# Information about this specific recommendation, such as the timestamp
|
|
5630
|
-
# for when
|
|
5771
|
+
# for when Amazon Web Services made a specific recommendation.
|
|
5631
5772
|
#
|
|
5632
5773
|
# @!attribute [rw] recommendation_id
|
|
5633
5774
|
# The ID for this specific recommendation.
|
|
5634
5775
|
# @return [String]
|
|
5635
5776
|
#
|
|
5636
5777
|
# @!attribute [rw] generation_timestamp
|
|
5637
|
-
# The timestamp for when
|
|
5778
|
+
# The timestamp for when Amazon Web Services made this recommendation.
|
|
5638
5779
|
# @return [String]
|
|
5639
5780
|
#
|
|
5640
5781
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/ReservationPurchaseRecommendationMetadata AWS API Documentation
|
|
@@ -5647,17 +5788,18 @@ module Aws::CostExplorer
|
|
|
5647
5788
|
end
|
|
5648
5789
|
|
|
5649
5790
|
# A summary about this recommendation, such as the currency code, the
|
|
5650
|
-
# amount that
|
|
5651
|
-
# reservation to purchase.
|
|
5791
|
+
# amount that Amazon Web Services estimates that you could save, and the
|
|
5792
|
+
# total amount of reservation to purchase.
|
|
5652
5793
|
#
|
|
5653
5794
|
# @!attribute [rw] total_estimated_monthly_savings_amount
|
|
5654
|
-
# The total amount that
|
|
5655
|
-
# save you in a month.
|
|
5795
|
+
# The total amount that Amazon Web Services estimates that this
|
|
5796
|
+
# recommendation could save you in a month.
|
|
5656
5797
|
# @return [String]
|
|
5657
5798
|
#
|
|
5658
5799
|
# @!attribute [rw] total_estimated_monthly_savings_percentage
|
|
5659
|
-
# The total amount that
|
|
5660
|
-
# save you in a month, as a percentage of your
|
|
5800
|
+
# The total amount that Amazon Web Services estimates that this
|
|
5801
|
+
# recommendation could save you in a month, as a percentage of your
|
|
5802
|
+
# costs.
|
|
5661
5803
|
# @return [String]
|
|
5662
5804
|
#
|
|
5663
5805
|
# @!attribute [rw] currency_code
|
|
@@ -5733,7 +5875,7 @@ module Aws::CostExplorer
|
|
|
5733
5875
|
# Resource utilization of current resource.
|
|
5734
5876
|
#
|
|
5735
5877
|
# @!attribute [rw] ec2_resource_utilization
|
|
5736
|
-
#
|
|
5878
|
+
# The utilization of current Amazon EC2 instance.
|
|
5737
5879
|
# @return [Types::EC2ResourceUtilization]
|
|
5738
5880
|
#
|
|
5739
5881
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/ResourceUtilization AWS API Documentation
|
|
@@ -5744,7 +5886,7 @@ module Aws::CostExplorer
|
|
|
5744
5886
|
include Aws::Structure
|
|
5745
5887
|
end
|
|
5746
5888
|
|
|
5747
|
-
# The result that
|
|
5889
|
+
# The result that's associated with a time period.
|
|
5748
5890
|
#
|
|
5749
5891
|
# @!attribute [rw] time_period
|
|
5750
5892
|
# The time period that the result covers.
|
|
@@ -5759,7 +5901,7 @@ module Aws::CostExplorer
|
|
|
5759
5901
|
# @return [Array<Types::Group>]
|
|
5760
5902
|
#
|
|
5761
5903
|
# @!attribute [rw] estimated
|
|
5762
|
-
#
|
|
5904
|
+
# Determines whether the result is estimated.
|
|
5763
5905
|
# @return [Boolean]
|
|
5764
5906
|
#
|
|
5765
5907
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/ResultByTime AWS API Documentation
|
|
@@ -5784,15 +5926,15 @@ module Aws::CostExplorer
|
|
|
5784
5926
|
# @return [Types::CurrentInstance]
|
|
5785
5927
|
#
|
|
5786
5928
|
# @!attribute [rw] rightsizing_type
|
|
5787
|
-
#
|
|
5929
|
+
# A recommendation to either terminate or modify the resource.
|
|
5788
5930
|
# @return [String]
|
|
5789
5931
|
#
|
|
5790
5932
|
# @!attribute [rw] modify_recommendation_detail
|
|
5791
|
-
#
|
|
5933
|
+
# The details for the modification recommendations.
|
|
5792
5934
|
# @return [Types::ModifyRecommendationDetail]
|
|
5793
5935
|
#
|
|
5794
5936
|
# @!attribute [rw] terminate_recommendation_detail
|
|
5795
|
-
#
|
|
5937
|
+
# The details for termination recommendations.
|
|
5796
5938
|
# @return [Types::TerminateRecommendationDetail]
|
|
5797
5939
|
#
|
|
5798
5940
|
# @!attribute [rw] finding_reason_codes
|
|
@@ -5814,12 +5956,12 @@ module Aws::CostExplorer
|
|
|
5814
5956
|
include Aws::Structure
|
|
5815
5957
|
end
|
|
5816
5958
|
|
|
5817
|
-
#
|
|
5818
|
-
#
|
|
5819
|
-
#
|
|
5820
|
-
#
|
|
5821
|
-
#
|
|
5822
|
-
# neither.
|
|
5959
|
+
# You can use `RightsizingRecommendationConfiguration` to customize
|
|
5960
|
+
# recommendations across two attributes. You can choose to view
|
|
5961
|
+
# recommendations for instances within the same instance families or
|
|
5962
|
+
# across different instance families. You can also choose to view your
|
|
5963
|
+
# estimated savings that are associated with recommendations with
|
|
5964
|
+
# consideration of existing Savings Plans or RI benefits, or neither.
|
|
5823
5965
|
#
|
|
5824
5966
|
# @note When making an API call, you may pass RightsizingRecommendationConfiguration
|
|
5825
5967
|
# data as a hash:
|
|
@@ -5830,8 +5972,8 @@ module Aws::CostExplorer
|
|
|
5830
5972
|
# }
|
|
5831
5973
|
#
|
|
5832
5974
|
# @!attribute [rw] recommendation_target
|
|
5833
|
-
# The option to see recommendations within the same instance family
|
|
5834
|
-
#
|
|
5975
|
+
# The option to see recommendations within the same instance family or
|
|
5976
|
+
# recommendations for instances across other families. The default
|
|
5835
5977
|
# value is `SAME_INSTANCE_FAMILY`.
|
|
5836
5978
|
# @return [String]
|
|
5837
5979
|
#
|
|
@@ -5856,16 +5998,16 @@ module Aws::CostExplorer
|
|
|
5856
5998
|
# @return [String]
|
|
5857
5999
|
#
|
|
5858
6000
|
# @!attribute [rw] generation_timestamp
|
|
5859
|
-
# The timestamp for when
|
|
6001
|
+
# The timestamp for when Amazon Web Services made this recommendation.
|
|
5860
6002
|
# @return [String]
|
|
5861
6003
|
#
|
|
5862
6004
|
# @!attribute [rw] lookback_period_in_days
|
|
5863
|
-
#
|
|
5864
|
-
# recommendation.
|
|
6005
|
+
# The number of days of previous usage that Amazon Web Services
|
|
6006
|
+
# considers when making this recommendation.
|
|
5865
6007
|
# @return [String]
|
|
5866
6008
|
#
|
|
5867
6009
|
# @!attribute [rw] additional_metadata
|
|
5868
|
-
# Additional metadata that
|
|
6010
|
+
# Additional metadata that might be applicable to the recommendation.
|
|
5869
6011
|
# @return [String]
|
|
5870
6012
|
#
|
|
5871
6013
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/RightsizingRecommendationMetadata AWS API Documentation
|
|
@@ -5879,24 +6021,26 @@ module Aws::CostExplorer
|
|
|
5879
6021
|
include Aws::Structure
|
|
5880
6022
|
end
|
|
5881
6023
|
|
|
5882
|
-
#
|
|
6024
|
+
# The summary of rightsizing recommendations
|
|
5883
6025
|
#
|
|
5884
6026
|
# @!attribute [rw] total_recommendation_count
|
|
5885
|
-
#
|
|
6027
|
+
# The total number of instance recommendations.
|
|
5886
6028
|
# @return [String]
|
|
5887
6029
|
#
|
|
5888
6030
|
# @!attribute [rw] estimated_total_monthly_savings_amount
|
|
5889
|
-
#
|
|
5890
|
-
# basis.
|
|
6031
|
+
# The estimated total savings resulting from modifications, on a
|
|
6032
|
+
# monthly basis.
|
|
5891
6033
|
# @return [String]
|
|
5892
6034
|
#
|
|
5893
6035
|
# @!attribute [rw] savings_currency_code
|
|
5894
|
-
# The currency code that
|
|
6036
|
+
# The currency code that Amazon Web Services used to calculate the
|
|
6037
|
+
# savings.
|
|
5895
6038
|
# @return [String]
|
|
5896
6039
|
#
|
|
5897
6040
|
# @!attribute [rw] savings_percentage
|
|
5898
|
-
#
|
|
5899
|
-
# to the total On-Demand costs associated with these
|
|
6041
|
+
# The savings percentage based on the recommended modifications. It's
|
|
6042
|
+
# relative to the total On-Demand costs that are associated with these
|
|
6043
|
+
# instances.
|
|
5900
6044
|
# @return [String]
|
|
5901
6045
|
#
|
|
5902
6046
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/RightsizingRecommendationSummary AWS API Documentation
|
|
@@ -5910,23 +6054,25 @@ module Aws::CostExplorer
|
|
|
5910
6054
|
include Aws::Structure
|
|
5911
6055
|
end
|
|
5912
6056
|
|
|
5913
|
-
# The combination of
|
|
5914
|
-
# where a cost anomaly is observed.
|
|
6057
|
+
# The combination of Amazon Web Services service, linked account,
|
|
6058
|
+
# Region, and usage type where a cost anomaly is observed.
|
|
5915
6059
|
#
|
|
5916
6060
|
# @!attribute [rw] service
|
|
5917
|
-
# The
|
|
6061
|
+
# The Amazon Web Services service name that's associated with the
|
|
6062
|
+
# cost anomaly.
|
|
5918
6063
|
# @return [String]
|
|
5919
6064
|
#
|
|
5920
6065
|
# @!attribute [rw] region
|
|
5921
|
-
# The
|
|
6066
|
+
# The Amazon Web Services Region that's associated with the cost
|
|
6067
|
+
# anomaly.
|
|
5922
6068
|
# @return [String]
|
|
5923
6069
|
#
|
|
5924
6070
|
# @!attribute [rw] linked_account
|
|
5925
|
-
# The
|
|
6071
|
+
# The member account value that's associated with the cost anomaly.
|
|
5926
6072
|
# @return [String]
|
|
5927
6073
|
#
|
|
5928
6074
|
# @!attribute [rw] usage_type
|
|
5929
|
-
# The `UsageType` value associated with the cost anomaly.
|
|
6075
|
+
# The `UsageType` value that's associated with the cost anomaly.
|
|
5930
6076
|
# @return [String]
|
|
5931
6077
|
#
|
|
5932
6078
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/RootCause AWS API Documentation
|
|
@@ -5999,21 +6145,23 @@ module Aws::CostExplorer
|
|
|
5999
6145
|
# Savings Plans, and total Savings Plans costs for an account.
|
|
6000
6146
|
#
|
|
6001
6147
|
# @!attribute [rw] spend_covered_by_savings_plans
|
|
6002
|
-
# The amount of your
|
|
6148
|
+
# The amount of your Amazon Web Services usage that is covered by a
|
|
6149
|
+
# Savings Plans.
|
|
6003
6150
|
# @return [String]
|
|
6004
6151
|
#
|
|
6005
6152
|
# @!attribute [rw] on_demand_cost
|
|
6006
|
-
# The cost of your
|
|
6153
|
+
# The cost of your Amazon Web Services usage at the public On-Demand
|
|
6154
|
+
# rate.
|
|
6007
6155
|
# @return [String]
|
|
6008
6156
|
#
|
|
6009
6157
|
# @!attribute [rw] total_cost
|
|
6010
|
-
# The total cost of your
|
|
6011
|
-
# option.
|
|
6158
|
+
# The total cost of your Amazon Web Services usage, regardless of your
|
|
6159
|
+
# purchase option.
|
|
6012
6160
|
# @return [String]
|
|
6013
6161
|
#
|
|
6014
6162
|
# @!attribute [rw] coverage_percentage
|
|
6015
6163
|
# The percentage of your existing Savings Plans covered usage, divided
|
|
6016
|
-
# by all of your eligible Savings Plans usage in an account(or set of
|
|
6164
|
+
# by all of your eligible Savings Plans usage in an account (or set of
|
|
6017
6165
|
# accounts).
|
|
6018
6166
|
# @return [String]
|
|
6019
6167
|
#
|
|
@@ -6028,11 +6176,12 @@ module Aws::CostExplorer
|
|
|
6028
6176
|
include Aws::Structure
|
|
6029
6177
|
end
|
|
6030
6178
|
|
|
6031
|
-
#
|
|
6179
|
+
# The attribute details on a specific Savings Plan.
|
|
6032
6180
|
#
|
|
6033
6181
|
# @!attribute [rw] region
|
|
6034
|
-
# A collection of
|
|
6035
|
-
# is isolated and independent of the
|
|
6182
|
+
# A collection of Amazon Web Services resources in a geographic area.
|
|
6183
|
+
# Each Amazon Web Services Region is isolated and independent of the
|
|
6184
|
+
# other Regions.
|
|
6036
6185
|
# @return [String]
|
|
6037
6186
|
#
|
|
6038
6187
|
# @!attribute [rw] instance_family
|
|
@@ -6040,7 +6189,8 @@ module Aws::CostExplorer
|
|
|
6040
6189
|
# @return [String]
|
|
6041
6190
|
#
|
|
6042
6191
|
# @!attribute [rw] offering_id
|
|
6043
|
-
# The unique ID used to distinguish Savings Plans from one
|
|
6192
|
+
# The unique ID that's used to distinguish Savings Plans from one
|
|
6193
|
+
# another.
|
|
6044
6194
|
# @return [String]
|
|
6045
6195
|
#
|
|
6046
6196
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/SavingsPlansDetails AWS API Documentation
|
|
@@ -6058,10 +6208,10 @@ module Aws::CostExplorer
|
|
|
6058
6208
|
#
|
|
6059
6209
|
# @!attribute [rw] account_scope
|
|
6060
6210
|
# The account scope that you want your recommendations for. Amazon Web
|
|
6061
|
-
# Services calculates recommendations
|
|
6062
|
-
# and member accounts if the value is set to `PAYER`. If the
|
|
6063
|
-
# `LINKED`, recommendations are calculated for individual
|
|
6064
|
-
# accounts only.
|
|
6211
|
+
# Services calculates recommendations that include the management
|
|
6212
|
+
# account and member accounts if the value is set to `PAYER`. If the
|
|
6213
|
+
# value is `LINKED`, recommendations are calculated for individual
|
|
6214
|
+
# member accounts only.
|
|
6065
6215
|
# @return [String]
|
|
6066
6216
|
#
|
|
6067
6217
|
# @!attribute [rw] savings_plans_type
|
|
@@ -6069,8 +6219,8 @@ module Aws::CostExplorer
|
|
|
6069
6219
|
# @return [String]
|
|
6070
6220
|
#
|
|
6071
6221
|
# @!attribute [rw] term_in_years
|
|
6072
|
-
# The Savings Plans recommendation term in years
|
|
6073
|
-
# recommendation.
|
|
6222
|
+
# The Savings Plans recommendation term in years. It's used to
|
|
6223
|
+
# generate the recommendation.
|
|
6074
6224
|
# @return [String]
|
|
6075
6225
|
#
|
|
6076
6226
|
# @!attribute [rw] payment_option
|
|
@@ -6120,14 +6270,14 @@ module Aws::CostExplorer
|
|
|
6120
6270
|
# @return [String]
|
|
6121
6271
|
#
|
|
6122
6272
|
# @!attribute [rw] estimated_roi
|
|
6123
|
-
# The estimated return on investment based on the recommended
|
|
6124
|
-
# Plans purchased. This is calculated as
|
|
6125
|
-
# `estimatedSPCost`*100.
|
|
6273
|
+
# The estimated return on investment that's based on the recommended
|
|
6274
|
+
# Savings Plans that you purchased. This is calculated as
|
|
6275
|
+
# `estimatedSavingsAmount`/ `estimatedSPCost`*100.
|
|
6126
6276
|
# @return [String]
|
|
6127
6277
|
#
|
|
6128
6278
|
# @!attribute [rw] currency_code
|
|
6129
|
-
# The currency code
|
|
6130
|
-
# present potential savings.
|
|
6279
|
+
# The currency code that Amazon Web Services used to generate the
|
|
6280
|
+
# recommendations and present potential savings.
|
|
6131
6281
|
# @return [String]
|
|
6132
6282
|
#
|
|
6133
6283
|
# @!attribute [rw] estimated_sp_cost
|
|
@@ -6147,8 +6297,8 @@ module Aws::CostExplorer
|
|
|
6147
6297
|
# @return [String]
|
|
6148
6298
|
#
|
|
6149
6299
|
# @!attribute [rw] estimated_savings_amount
|
|
6150
|
-
# The estimated savings amount based on the recommended
|
|
6151
|
-
# over the length of the lookback period.
|
|
6300
|
+
# The estimated savings amount that's based on the recommended
|
|
6301
|
+
# Savings Plans over the length of the lookback period.
|
|
6152
6302
|
# @return [String]
|
|
6153
6303
|
#
|
|
6154
6304
|
# @!attribute [rw] estimated_savings_percentage
|
|
@@ -6157,8 +6307,9 @@ module Aws::CostExplorer
|
|
|
6157
6307
|
# @return [String]
|
|
6158
6308
|
#
|
|
6159
6309
|
# @!attribute [rw] hourly_commitment_to_purchase
|
|
6160
|
-
# The recommended hourly commitment level for the Savings Plans type
|
|
6161
|
-
# and configuration based on the usage during the lookback
|
|
6310
|
+
# The recommended hourly commitment level for the Savings Plans type
|
|
6311
|
+
# and the configuration that's based on the usage during the lookback
|
|
6312
|
+
# period.
|
|
6162
6313
|
# @return [String]
|
|
6163
6314
|
#
|
|
6164
6315
|
# @!attribute [rw] estimated_average_utilization
|
|
@@ -6166,7 +6317,7 @@ module Aws::CostExplorer
|
|
|
6166
6317
|
# @return [String]
|
|
6167
6318
|
#
|
|
6168
6319
|
# @!attribute [rw] estimated_monthly_savings_amount
|
|
6169
|
-
# The estimated monthly savings amount
|
|
6320
|
+
# The estimated monthly savings amount based on the recommended
|
|
6170
6321
|
# Savings Plans.
|
|
6171
6322
|
# @return [String]
|
|
6172
6323
|
#
|
|
@@ -6219,7 +6370,7 @@ module Aws::CostExplorer
|
|
|
6219
6370
|
# @return [String]
|
|
6220
6371
|
#
|
|
6221
6372
|
# @!attribute [rw] additional_metadata
|
|
6222
|
-
# Additional metadata that
|
|
6373
|
+
# Additional metadata that might be applicable to the recommendation.
|
|
6223
6374
|
# @return [String]
|
|
6224
6375
|
#
|
|
6225
6376
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/SavingsPlansPurchaseRecommendationMetadata AWS API Documentation
|
|
@@ -6235,13 +6386,13 @@ module Aws::CostExplorer
|
|
|
6235
6386
|
# Summary metrics for your Savings Plans Purchase Recommendations.
|
|
6236
6387
|
#
|
|
6237
6388
|
# @!attribute [rw] estimated_roi
|
|
6238
|
-
# The estimated return on investment based on the recommended
|
|
6239
|
-
# Plans and estimated savings.
|
|
6389
|
+
# The estimated return on investment that's based on the recommended
|
|
6390
|
+
# Savings Plans and estimated savings.
|
|
6240
6391
|
# @return [String]
|
|
6241
6392
|
#
|
|
6242
6393
|
# @!attribute [rw] currency_code
|
|
6243
|
-
# The currency code
|
|
6244
|
-
# present potential savings.
|
|
6394
|
+
# The currency code that Amazon Web Services used to generate the
|
|
6395
|
+
# recommendations and present potential savings.
|
|
6245
6396
|
# @return [String]
|
|
6246
6397
|
#
|
|
6247
6398
|
# @!attribute [rw] estimated_total_cost
|
|
@@ -6270,8 +6421,8 @@ module Aws::CostExplorer
|
|
|
6270
6421
|
# @return [String]
|
|
6271
6422
|
#
|
|
6272
6423
|
# @!attribute [rw] hourly_commitment_to_purchase
|
|
6273
|
-
# The recommended hourly commitment based on the
|
|
6274
|
-
# parameters.
|
|
6424
|
+
# The recommended hourly commitment that's based on the
|
|
6425
|
+
# recommendation parameters.
|
|
6275
6426
|
# @return [String]
|
|
6276
6427
|
#
|
|
6277
6428
|
# @!attribute [rw] estimated_savings_percentage
|
|
@@ -6281,14 +6432,14 @@ module Aws::CostExplorer
|
|
|
6281
6432
|
# @return [String]
|
|
6282
6433
|
#
|
|
6283
6434
|
# @!attribute [rw] estimated_monthly_savings_amount
|
|
6284
|
-
# The estimated monthly savings amount
|
|
6285
|
-
# Savings Plans purchase.
|
|
6435
|
+
# The estimated monthly savings amount that's based on the
|
|
6436
|
+
# recommended Savings Plans purchase.
|
|
6286
6437
|
# @return [String]
|
|
6287
6438
|
#
|
|
6288
6439
|
# @!attribute [rw] estimated_on_demand_cost_with_current_commitment
|
|
6289
6440
|
# The estimated On-Demand costs you would expect with no additional
|
|
6290
|
-
# commitment
|
|
6291
|
-
# Savings Plans you own.
|
|
6441
|
+
# commitment. It's based on your usage of the selected time period
|
|
6442
|
+
# and the Savings Plans you own.
|
|
6292
6443
|
# @return [String]
|
|
6293
6444
|
#
|
|
6294
6445
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/SavingsPlansPurchaseRecommendationSummary AWS API Documentation
|
|
@@ -6309,11 +6460,11 @@ module Aws::CostExplorer
|
|
|
6309
6460
|
include Aws::Structure
|
|
6310
6461
|
end
|
|
6311
6462
|
|
|
6312
|
-
# The amount of savings you're accumulating, against the public
|
|
6463
|
+
# The amount of savings that you're accumulating, against the public
|
|
6313
6464
|
# On-Demand rate of the usage accrued in an account.
|
|
6314
6465
|
#
|
|
6315
6466
|
# @!attribute [rw] net_savings
|
|
6316
|
-
# The savings amount that you
|
|
6467
|
+
# The savings amount that you're accumulating for the usage that's
|
|
6317
6468
|
# covered by a Savings Plans, when compared to the On-Demand
|
|
6318
6469
|
# equivalent of the same usage.
|
|
6319
6470
|
# @return [String]
|
|
@@ -6332,7 +6483,7 @@ module Aws::CostExplorer
|
|
|
6332
6483
|
include Aws::Structure
|
|
6333
6484
|
end
|
|
6334
6485
|
|
|
6335
|
-
# The measurement of how well you
|
|
6486
|
+
# The measurement of how well you're using your existing Savings Plans.
|
|
6336
6487
|
#
|
|
6337
6488
|
# @!attribute [rw] total_commitment
|
|
6338
6489
|
# The total amount of Savings Plans commitment that's been purchased
|
|
@@ -6345,7 +6496,7 @@ module Aws::CostExplorer
|
|
|
6345
6496
|
# @return [String]
|
|
6346
6497
|
#
|
|
6347
6498
|
# @!attribute [rw] unused_commitment
|
|
6348
|
-
# The amount of your Savings Plans commitment that
|
|
6499
|
+
# The amount of your Savings Plans commitment that wasn't consumed
|
|
6349
6500
|
# from Savings Plans eligible usage in a specific period.
|
|
6350
6501
|
# @return [String]
|
|
6351
6502
|
#
|
|
@@ -6497,8 +6648,8 @@ module Aws::CostExplorer
|
|
|
6497
6648
|
# }
|
|
6498
6649
|
#
|
|
6499
6650
|
# @!attribute [rw] ec2_specification
|
|
6500
|
-
# The Amazon EC2 hardware specifications that you want
|
|
6501
|
-
# recommendations for.
|
|
6651
|
+
# The Amazon EC2 hardware specifications that you want Amazon Web
|
|
6652
|
+
# Services to provide recommendations for.
|
|
6502
6653
|
# @return [Types::EC2Specification]
|
|
6503
6654
|
#
|
|
6504
6655
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/ServiceSpecification AWS API Documentation
|
|
@@ -6520,11 +6671,11 @@ module Aws::CostExplorer
|
|
|
6520
6671
|
# }
|
|
6521
6672
|
#
|
|
6522
6673
|
# @!attribute [rw] key
|
|
6523
|
-
# The key
|
|
6674
|
+
# The key that's used to sort the data.
|
|
6524
6675
|
# @return [String]
|
|
6525
6676
|
#
|
|
6526
6677
|
# @!attribute [rw] sort_order
|
|
6527
|
-
# The order
|
|
6678
|
+
# The order that's used to sort the data.
|
|
6528
6679
|
# @return [String]
|
|
6529
6680
|
#
|
|
6530
6681
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/SortDefinition AWS API Documentation
|
|
@@ -6548,7 +6699,7 @@ module Aws::CostExplorer
|
|
|
6548
6699
|
# }
|
|
6549
6700
|
#
|
|
6550
6701
|
# @!attribute [rw] address
|
|
6551
|
-
# The email address or SNS Amazon Resource Name (ARN)
|
|
6702
|
+
# The email address or SNS Amazon Resource Name (ARN). This depends on
|
|
6552
6703
|
# the `Type`.
|
|
6553
6704
|
# @return [String]
|
|
6554
6705
|
#
|
|
@@ -6572,12 +6723,13 @@ module Aws::CostExplorer
|
|
|
6572
6723
|
|
|
6573
6724
|
# The values that are available for a tag.
|
|
6574
6725
|
#
|
|
6575
|
-
# If `Values` and `Key`
|
|
6576
|
-
# applied to all tags. That is,
|
|
6726
|
+
# If `Values` and `Key` aren't specified, the `ABSENT` `MatchOption` is
|
|
6727
|
+
# applied to all tags. That is, it's filtered on resources with no
|
|
6728
|
+
# tags.
|
|
6577
6729
|
#
|
|
6578
|
-
# If `Values` is provided and `Key`
|
|
6579
|
-
# `MatchOption` is applied to the tag `Key` only. That is,
|
|
6580
|
-
# resources without the given tag key.
|
|
6730
|
+
# If `Values` is provided and `Key` isn't specified, the `ABSENT`
|
|
6731
|
+
# `MatchOption` is applied to the tag `Key` only. That is, it's
|
|
6732
|
+
# filtered on resources without the given tag key.
|
|
6581
6733
|
#
|
|
6582
6734
|
# @note When making an API call, you may pass TagValues
|
|
6583
6735
|
# data as a hash:
|
|
@@ -6616,21 +6768,22 @@ module Aws::CostExplorer
|
|
|
6616
6768
|
# Details on recommended instance.
|
|
6617
6769
|
#
|
|
6618
6770
|
# @!attribute [rw] estimated_monthly_cost
|
|
6619
|
-
#
|
|
6771
|
+
# The expected cost to operate this instance type on a monthly basis.
|
|
6620
6772
|
# @return [String]
|
|
6621
6773
|
#
|
|
6622
6774
|
# @!attribute [rw] estimated_monthly_savings
|
|
6623
|
-
#
|
|
6775
|
+
# The estimated savings that result from modification, on a monthly
|
|
6776
|
+
# basis.
|
|
6624
6777
|
# @return [String]
|
|
6625
6778
|
#
|
|
6626
6779
|
# @!attribute [rw] currency_code
|
|
6627
|
-
# The currency code that
|
|
6628
|
-
# instance.
|
|
6780
|
+
# The currency code that Amazon Web Services used to calculate the
|
|
6781
|
+
# costs for this instance.
|
|
6629
6782
|
# @return [String]
|
|
6630
6783
|
#
|
|
6631
6784
|
# @!attribute [rw] default_target_instance
|
|
6632
|
-
#
|
|
6633
|
-
# recommendation.
|
|
6785
|
+
# Determines whether this recommendation is the defaulted Amazon Web
|
|
6786
|
+
# Services recommendation.
|
|
6634
6787
|
# @return [Boolean]
|
|
6635
6788
|
#
|
|
6636
6789
|
# @!attribute [rw] resource_details
|
|
@@ -6638,7 +6791,7 @@ module Aws::CostExplorer
|
|
|
6638
6791
|
# @return [Types::ResourceDetails]
|
|
6639
6792
|
#
|
|
6640
6793
|
# @!attribute [rw] expected_resource_utilization
|
|
6641
|
-
#
|
|
6794
|
+
# The expected utilization metrics for target instance type.
|
|
6642
6795
|
# @return [Types::ResourceUtilization]
|
|
6643
6796
|
#
|
|
6644
6797
|
# @!attribute [rw] platform_differences
|
|
@@ -6664,12 +6817,13 @@ module Aws::CostExplorer
|
|
|
6664
6817
|
# Details on termination recommendation.
|
|
6665
6818
|
#
|
|
6666
6819
|
# @!attribute [rw] estimated_monthly_savings
|
|
6667
|
-
#
|
|
6820
|
+
# The estimated savings that result from modification, on a monthly
|
|
6821
|
+
# basis.
|
|
6668
6822
|
# @return [String]
|
|
6669
6823
|
#
|
|
6670
6824
|
# @!attribute [rw] currency_code
|
|
6671
|
-
# The currency code that
|
|
6672
|
-
# instance.
|
|
6825
|
+
# The currency code that Amazon Web Services used to calculate the
|
|
6826
|
+
# costs for this instance.
|
|
6673
6827
|
# @return [String]
|
|
6674
6828
|
#
|
|
6675
6829
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/TerminateRecommendationDetail AWS API Documentation
|
|
@@ -6693,15 +6847,15 @@ module Aws::CostExplorer
|
|
|
6693
6847
|
# }
|
|
6694
6848
|
#
|
|
6695
6849
|
# @!attribute [rw] numeric_operator
|
|
6696
|
-
# The comparing value used in the filter.
|
|
6850
|
+
# The comparing value that's used in the filter.
|
|
6697
6851
|
# @return [String]
|
|
6698
6852
|
#
|
|
6699
6853
|
# @!attribute [rw] start_value
|
|
6700
|
-
# The lower bound dollar value used in the filter.
|
|
6854
|
+
# The lower bound dollar value that's used in the filter.
|
|
6701
6855
|
# @return [Float]
|
|
6702
6856
|
#
|
|
6703
6857
|
# @!attribute [rw] end_value
|
|
6704
|
-
# The upper bound dollar value used in the filter.
|
|
6858
|
+
# The upper bound dollar value that's used in the filter.
|
|
6705
6859
|
# @return [Float]
|
|
6706
6860
|
#
|
|
6707
6861
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/TotalImpactFilter AWS API Documentation
|
|
@@ -6819,7 +6973,7 @@ module Aws::CostExplorer
|
|
|
6819
6973
|
# @return [Float]
|
|
6820
6974
|
#
|
|
6821
6975
|
# @!attribute [rw] frequency
|
|
6822
|
-
# The update to the frequency value
|
|
6976
|
+
# The update to the frequency value that subscribers receive
|
|
6823
6977
|
# notifications.
|
|
6824
6978
|
# @return [String]
|
|
6825
6979
|
#
|
|
@@ -6832,7 +6986,7 @@ module Aws::CostExplorer
|
|
|
6832
6986
|
# @return [Array<Types::Subscriber>]
|
|
6833
6987
|
#
|
|
6834
6988
|
# @!attribute [rw] subscription_name
|
|
6835
|
-
# The
|
|
6989
|
+
# The new name of the subscription.
|
|
6836
6990
|
# @return [String]
|
|
6837
6991
|
#
|
|
6838
6992
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/UpdateAnomalySubscriptionRequest AWS API Documentation
|
|
@@ -6907,6 +7061,19 @@ module Aws::CostExplorer
|
|
|
6907
7061
|
# },
|
|
6908
7062
|
# ],
|
|
6909
7063
|
# default_value: "CostCategoryValue",
|
|
7064
|
+
# split_charge_rules: [
|
|
7065
|
+
# {
|
|
7066
|
+
# source: "GenericString", # required
|
|
7067
|
+
# targets: ["GenericString"], # required
|
|
7068
|
+
# method: "FIXED", # required, accepts FIXED, PROPORTIONAL, EVEN
|
|
7069
|
+
# parameters: [
|
|
7070
|
+
# {
|
|
7071
|
+
# type: "ALLOCATION_PERCENTAGES", # required, accepts ALLOCATION_PERCENTAGES
|
|
7072
|
+
# values: ["GenericString"], # required
|
|
7073
|
+
# },
|
|
7074
|
+
# ],
|
|
7075
|
+
# },
|
|
7076
|
+
# ],
|
|
6910
7077
|
# }
|
|
6911
7078
|
#
|
|
6912
7079
|
# @!attribute [rw] cost_category_arn
|
|
@@ -6930,13 +7097,19 @@ module Aws::CostExplorer
|
|
|
6930
7097
|
# The default value for the cost category.
|
|
6931
7098
|
# @return [String]
|
|
6932
7099
|
#
|
|
7100
|
+
# @!attribute [rw] split_charge_rules
|
|
7101
|
+
# The split charge rules used to allocate your charges between your
|
|
7102
|
+
# Cost Category values.
|
|
7103
|
+
# @return [Array<Types::CostCategorySplitChargeRule>]
|
|
7104
|
+
#
|
|
6933
7105
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/UpdateCostCategoryDefinitionRequest AWS API Documentation
|
|
6934
7106
|
#
|
|
6935
7107
|
class UpdateCostCategoryDefinitionRequest < Struct.new(
|
|
6936
7108
|
:cost_category_arn,
|
|
6937
7109
|
:rule_version,
|
|
6938
7110
|
:rules,
|
|
6939
|
-
:default_value
|
|
7111
|
+
:default_value,
|
|
7112
|
+
:split_charge_rules)
|
|
6940
7113
|
SENSITIVE = []
|
|
6941
7114
|
include Aws::Structure
|
|
6942
7115
|
end
|