aws-sdk-costexplorer 1.41.0 → 1.46.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/lib/aws-sdk-costexplorer.rb +4 -2
- data/lib/aws-sdk-costexplorer/client.rb +36 -15
- data/lib/aws-sdk-costexplorer/client_api.rb +3 -0
- data/lib/aws-sdk-costexplorer/errors.rb +2 -0
- data/lib/aws-sdk-costexplorer/resource.rb +2 -0
- data/lib/aws-sdk-costexplorer/types.rb +120 -7
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f18cb76aa037c61f502e8e7f81470a6d2badd41351bb994829b83d958229c04
|
4
|
+
data.tar.gz: 55dc2eeb50aad4b611f28ff69439fceb1b8608d837f14db9a7e58727f154445f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 58d9123b6352a7703f1ca149e24480b3ec1a86013edf3f8c9cd00cedd741785ef0c1b8e67e187acc5c4f04f74e052fe112dceef0842d0481aca63f636970b128
|
7
|
+
data.tar.gz: 4b9597fc35d877c6076531b32b5b46d12d46dfb06d48d9bb118988cbea5d48b5bba1dd5ae7a6d74d43bd10908685cfcae0c655a3fb16e69e48654d7e50593a40
|
data/lib/aws-sdk-costexplorer.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-costexplorer/customizations'
|
|
42
44
|
#
|
43
45
|
# See {Errors} for more information.
|
44
46
|
#
|
45
|
-
#
|
47
|
+
# @!group service
|
46
48
|
module Aws::CostExplorer
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.46.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::CostExplorer
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::CostExplorer
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,10 +116,10 @@ module Aws::CostExplorer
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -161,7 +180,7 @@ module Aws::CostExplorer
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +195,7 @@ module Aws::CostExplorer
|
|
176
195
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
196
|
#
|
178
197
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
198
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
199
|
#
|
181
200
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
201
|
# The log formatter.
|
@@ -1664,17 +1683,18 @@ module Aws::CostExplorer
|
|
1664
1683
|
req.send_request(options)
|
1665
1684
|
end
|
1666
1685
|
|
1667
|
-
# Creates recommendations that
|
1686
|
+
# Creates recommendations that help you save cost by identifying idle
|
1668
1687
|
# and underutilized Amazon EC2 instances.
|
1669
1688
|
#
|
1670
1689
|
# Recommendations are generated to either downsize or terminate
|
1671
1690
|
# instances, along with providing savings detail and metrics. For
|
1672
1691
|
# details on calculation and function, see [Optimizing Your Cost with
|
1673
|
-
# Rightsizing Recommendations][1]
|
1692
|
+
# Rightsizing Recommendations][1] in the *AWS Billing and Cost
|
1693
|
+
# Management User Guide*.
|
1674
1694
|
#
|
1675
1695
|
#
|
1676
1696
|
#
|
1677
|
-
# [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/ce-
|
1697
|
+
# [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/ce-rightsizing.html
|
1678
1698
|
#
|
1679
1699
|
# @option params [Types::Expression] :filter
|
1680
1700
|
# Use `Expression` to filter by cost or by usage. There are two
|
@@ -1728,7 +1748,7 @@ module Aws::CostExplorer
|
|
1728
1748
|
# instance families or across different instance families. You can also
|
1729
1749
|
# choose to view your estimated savings associated with recommendations
|
1730
1750
|
# with consideration of existing Savings Plans or RI benefits, or
|
1731
|
-
#
|
1751
|
+
# neither.
|
1732
1752
|
#
|
1733
1753
|
# @option params [required, String] :service
|
1734
1754
|
# The specific service that you want recommendations for. The only valid
|
@@ -1803,6 +1823,7 @@ module Aws::CostExplorer
|
|
1803
1823
|
# resp.rightsizing_recommendations #=> Array
|
1804
1824
|
# resp.rightsizing_recommendations[0].account_id #=> String
|
1805
1825
|
# resp.rightsizing_recommendations[0].current_instance.resource_id #=> String
|
1826
|
+
# resp.rightsizing_recommendations[0].current_instance.instance_name #=> String
|
1806
1827
|
# resp.rightsizing_recommendations[0].current_instance.tags #=> Array
|
1807
1828
|
# resp.rightsizing_recommendations[0].current_instance.tags[0].key #=> String
|
1808
1829
|
# resp.rightsizing_recommendations[0].current_instance.tags[0].values #=> Array
|
@@ -2014,7 +2035,7 @@ module Aws::CostExplorer
|
|
2014
2035
|
# The Savings Plans recommendation type requested.
|
2015
2036
|
#
|
2016
2037
|
# @option params [required, String] :term_in_years
|
2017
|
-
# The savings plan recommendation term used to
|
2038
|
+
# The savings plan recommendation term used to generate these
|
2018
2039
|
# recommendations.
|
2019
2040
|
#
|
2020
2041
|
# @option params [required, String] :payment_option
|
@@ -2721,7 +2742,7 @@ module Aws::CostExplorer
|
|
2721
2742
|
params: params,
|
2722
2743
|
config: config)
|
2723
2744
|
context[:gem_name] = 'aws-sdk-costexplorer'
|
2724
|
-
context[:gem_version] = '1.
|
2745
|
+
context[:gem_version] = '1.46.0'
|
2725
2746
|
Seahorse::Client::Request.new(handlers, context)
|
2726
2747
|
end
|
2727
2748
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -283,6 +285,7 @@ module Aws::CostExplorer
|
|
283
285
|
CreateCostCategoryDefinitionResponse.struct_class = Types::CreateCostCategoryDefinitionResponse
|
284
286
|
|
285
287
|
CurrentInstance.add_member(:resource_id, Shapes::ShapeRef.new(shape: GenericString, location_name: "ResourceId"))
|
288
|
+
CurrentInstance.add_member(:instance_name, Shapes::ShapeRef.new(shape: GenericString, location_name: "InstanceName"))
|
286
289
|
CurrentInstance.add_member(:tags, Shapes::ShapeRef.new(shape: TagValuesList, location_name: "Tags"))
|
287
290
|
CurrentInstance.add_member(:resource_details, Shapes::ShapeRef.new(shape: ResourceDetails, location_name: "ResourceDetails"))
|
288
291
|
CurrentInstance.add_member(:resource_utilization, Shapes::ShapeRef.new(shape: ResourceUtilization, location_name: "ResourceUtilization"))
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -17,6 +19,7 @@ module Aws::CostExplorer
|
|
17
19
|
#
|
18
20
|
class BillExpirationException < Struct.new(
|
19
21
|
:message)
|
22
|
+
SENSITIVE = []
|
20
23
|
include Aws::Structure
|
21
24
|
end
|
22
25
|
|
@@ -58,6 +61,7 @@ module Aws::CostExplorer
|
|
58
61
|
:name,
|
59
62
|
:rule_version,
|
60
63
|
:rules)
|
64
|
+
SENSITIVE = []
|
61
65
|
include Aws::Structure
|
62
66
|
end
|
63
67
|
|
@@ -95,6 +99,7 @@ module Aws::CostExplorer
|
|
95
99
|
:effective_start,
|
96
100
|
:effective_end,
|
97
101
|
:number_of_rules)
|
102
|
+
SENSITIVE = []
|
98
103
|
include Aws::Structure
|
99
104
|
end
|
100
105
|
|
@@ -169,6 +174,7 @@ module Aws::CostExplorer
|
|
169
174
|
class CostCategoryRule < Struct.new(
|
170
175
|
:value,
|
171
176
|
:rule)
|
177
|
+
SENSITIVE = []
|
172
178
|
include Aws::Structure
|
173
179
|
end
|
174
180
|
|
@@ -195,6 +201,7 @@ module Aws::CostExplorer
|
|
195
201
|
class CostCategoryValues < Struct.new(
|
196
202
|
:key,
|
197
203
|
:values)
|
204
|
+
SENSITIVE = []
|
198
205
|
include Aws::Structure
|
199
206
|
end
|
200
207
|
|
@@ -219,6 +226,7 @@ module Aws::CostExplorer
|
|
219
226
|
:coverage_hours,
|
220
227
|
:coverage_normalized_units,
|
221
228
|
:coverage_cost)
|
229
|
+
SENSITIVE = []
|
222
230
|
include Aws::Structure
|
223
231
|
end
|
224
232
|
|
@@ -242,6 +250,7 @@ module Aws::CostExplorer
|
|
242
250
|
:time_period,
|
243
251
|
:groups,
|
244
252
|
:total)
|
253
|
+
SENSITIVE = []
|
245
254
|
include Aws::Structure
|
246
255
|
end
|
247
256
|
|
@@ -255,6 +264,7 @@ module Aws::CostExplorer
|
|
255
264
|
#
|
256
265
|
class CoverageCost < Struct.new(
|
257
266
|
:on_demand_cost)
|
267
|
+
SENSITIVE = []
|
258
268
|
include Aws::Structure
|
259
269
|
end
|
260
270
|
|
@@ -285,6 +295,7 @@ module Aws::CostExplorer
|
|
285
295
|
:reserved_hours,
|
286
296
|
:total_running_hours,
|
287
297
|
:coverage_hours_percentage)
|
298
|
+
SENSITIVE = []
|
288
299
|
include Aws::Structure
|
289
300
|
end
|
290
301
|
|
@@ -330,6 +341,7 @@ module Aws::CostExplorer
|
|
330
341
|
:reserved_normalized_units,
|
331
342
|
:total_running_normalized_units,
|
332
343
|
:coverage_normalized_units_percentage)
|
344
|
+
SENSITIVE = []
|
333
345
|
include Aws::Structure
|
334
346
|
end
|
335
347
|
|
@@ -398,6 +410,7 @@ module Aws::CostExplorer
|
|
398
410
|
:name,
|
399
411
|
:rule_version,
|
400
412
|
:rules)
|
413
|
+
SENSITIVE = []
|
401
414
|
include Aws::Structure
|
402
415
|
end
|
403
416
|
|
@@ -414,6 +427,7 @@ module Aws::CostExplorer
|
|
414
427
|
class CreateCostCategoryDefinitionResponse < Struct.new(
|
415
428
|
:cost_category_arn,
|
416
429
|
:effective_start)
|
430
|
+
SENSITIVE = []
|
417
431
|
include Aws::Structure
|
418
432
|
end
|
419
433
|
|
@@ -423,6 +437,11 @@ module Aws::CostExplorer
|
|
423
437
|
# Resource ID of the current instance.
|
424
438
|
# @return [String]
|
425
439
|
#
|
440
|
+
# @!attribute [rw] instance_name
|
441
|
+
# The name you've given an instance. This field will show as blank if
|
442
|
+
# you haven't given the instance a name.
|
443
|
+
# @return [String]
|
444
|
+
#
|
426
445
|
# @!attribute [rw] tags
|
427
446
|
# Cost allocation resource tags applied to the instance.
|
428
447
|
# @return [Array<Types::TagValues>]
|
@@ -468,6 +487,7 @@ module Aws::CostExplorer
|
|
468
487
|
#
|
469
488
|
class CurrentInstance < Struct.new(
|
470
489
|
:resource_id,
|
490
|
+
:instance_name,
|
471
491
|
:tags,
|
472
492
|
:resource_details,
|
473
493
|
:resource_utilization,
|
@@ -477,6 +497,7 @@ module Aws::CostExplorer
|
|
477
497
|
:total_running_hours_in_lookback_period,
|
478
498
|
:monthly_cost,
|
479
499
|
:currency_code)
|
500
|
+
SENSITIVE = []
|
480
501
|
include Aws::Structure
|
481
502
|
end
|
482
503
|
|
@@ -489,6 +510,7 @@ module Aws::CostExplorer
|
|
489
510
|
#
|
490
511
|
class DataUnavailableException < Struct.new(
|
491
512
|
:message)
|
513
|
+
SENSITIVE = []
|
492
514
|
include Aws::Structure
|
493
515
|
end
|
494
516
|
|
@@ -521,6 +543,7 @@ module Aws::CostExplorer
|
|
521
543
|
class DateInterval < Struct.new(
|
522
544
|
:start,
|
523
545
|
:end)
|
546
|
+
SENSITIVE = []
|
524
547
|
include Aws::Structure
|
525
548
|
end
|
526
549
|
|
@@ -539,6 +562,7 @@ module Aws::CostExplorer
|
|
539
562
|
#
|
540
563
|
class DeleteCostCategoryDefinitionRequest < Struct.new(
|
541
564
|
:cost_category_arn)
|
565
|
+
SENSITIVE = []
|
542
566
|
include Aws::Structure
|
543
567
|
end
|
544
568
|
|
@@ -557,6 +581,7 @@ module Aws::CostExplorer
|
|
557
581
|
class DeleteCostCategoryDefinitionResponse < Struct.new(
|
558
582
|
:cost_category_arn,
|
559
583
|
:effective_end)
|
584
|
+
SENSITIVE = []
|
560
585
|
include Aws::Structure
|
561
586
|
end
|
562
587
|
|
@@ -581,6 +606,7 @@ module Aws::CostExplorer
|
|
581
606
|
class DescribeCostCategoryDefinitionRequest < Struct.new(
|
582
607
|
:cost_category_arn,
|
583
608
|
:effective_on)
|
609
|
+
SENSITIVE = []
|
584
610
|
include Aws::Structure
|
585
611
|
end
|
586
612
|
|
@@ -593,6 +619,7 @@ module Aws::CostExplorer
|
|
593
619
|
#
|
594
620
|
class DescribeCostCategoryDefinitionResponse < Struct.new(
|
595
621
|
:cost_category)
|
622
|
+
SENSITIVE = []
|
596
623
|
include Aws::Structure
|
597
624
|
end
|
598
625
|
|
@@ -632,6 +659,7 @@ module Aws::CostExplorer
|
|
632
659
|
:key,
|
633
660
|
:values,
|
634
661
|
:match_options)
|
662
|
+
SENSITIVE = []
|
635
663
|
include Aws::Structure
|
636
664
|
end
|
637
665
|
|
@@ -652,6 +680,7 @@ module Aws::CostExplorer
|
|
652
680
|
class DimensionValuesWithAttributes < Struct.new(
|
653
681
|
:value,
|
654
682
|
:attributes)
|
683
|
+
SENSITIVE = []
|
655
684
|
include Aws::Structure
|
656
685
|
end
|
657
686
|
|
@@ -703,6 +732,7 @@ module Aws::CostExplorer
|
|
703
732
|
:tenancy,
|
704
733
|
:current_generation,
|
705
734
|
:size_flex_eligible)
|
735
|
+
SENSITIVE = []
|
706
736
|
include Aws::Structure
|
707
737
|
end
|
708
738
|
|
@@ -759,6 +789,7 @@ module Aws::CostExplorer
|
|
759
789
|
:network_performance,
|
760
790
|
:storage,
|
761
791
|
:vcpu)
|
792
|
+
SENSITIVE = []
|
762
793
|
include Aws::Structure
|
763
794
|
end
|
764
795
|
|
@@ -783,6 +814,7 @@ module Aws::CostExplorer
|
|
783
814
|
:max_cpu_utilization_percentage,
|
784
815
|
:max_memory_utilization_percentage,
|
785
816
|
:max_storage_utilization_percentage)
|
817
|
+
SENSITIVE = []
|
786
818
|
include Aws::Structure
|
787
819
|
end
|
788
820
|
|
@@ -805,6 +837,7 @@ module Aws::CostExplorer
|
|
805
837
|
#
|
806
838
|
class EC2Specification < Struct.new(
|
807
839
|
:offering_class)
|
840
|
+
SENSITIVE = []
|
808
841
|
include Aws::Structure
|
809
842
|
end
|
810
843
|
|
@@ -839,6 +872,7 @@ module Aws::CostExplorer
|
|
839
872
|
:region,
|
840
873
|
:current_generation,
|
841
874
|
:size_flex_eligible)
|
875
|
+
SENSITIVE = []
|
842
876
|
include Aws::Structure
|
843
877
|
end
|
844
878
|
|
@@ -878,6 +912,7 @@ module Aws::CostExplorer
|
|
878
912
|
:product_description,
|
879
913
|
:current_generation,
|
880
914
|
:size_flex_eligible)
|
915
|
+
SENSITIVE = []
|
881
916
|
include Aws::Structure
|
882
917
|
end
|
883
918
|
|
@@ -1062,6 +1097,7 @@ module Aws::CostExplorer
|
|
1062
1097
|
:dimensions,
|
1063
1098
|
:tags,
|
1064
1099
|
:cost_categories)
|
1100
|
+
SENSITIVE = []
|
1065
1101
|
include Aws::Structure
|
1066
1102
|
end
|
1067
1103
|
|
@@ -1090,6 +1126,7 @@ module Aws::CostExplorer
|
|
1090
1126
|
:mean_value,
|
1091
1127
|
:prediction_interval_lower_bound,
|
1092
1128
|
:prediction_interval_upper_bound)
|
1129
|
+
SENSITIVE = []
|
1093
1130
|
include Aws::Structure
|
1094
1131
|
end
|
1095
1132
|
|
@@ -1220,6 +1257,7 @@ module Aws::CostExplorer
|
|
1220
1257
|
:metrics,
|
1221
1258
|
:group_by,
|
1222
1259
|
:next_page_token)
|
1260
|
+
SENSITIVE = []
|
1223
1261
|
include Aws::Structure
|
1224
1262
|
end
|
1225
1263
|
|
@@ -1244,6 +1282,7 @@ module Aws::CostExplorer
|
|
1244
1282
|
:next_page_token,
|
1245
1283
|
:group_definitions,
|
1246
1284
|
:results_by_time)
|
1285
|
+
SENSITIVE = []
|
1247
1286
|
include Aws::Structure
|
1248
1287
|
end
|
1249
1288
|
|
@@ -1372,6 +1411,7 @@ module Aws::CostExplorer
|
|
1372
1411
|
:metrics,
|
1373
1412
|
:group_by,
|
1374
1413
|
:next_page_token)
|
1414
|
+
SENSITIVE = []
|
1375
1415
|
include Aws::Structure
|
1376
1416
|
end
|
1377
1417
|
|
@@ -1396,6 +1436,7 @@ module Aws::CostExplorer
|
|
1396
1436
|
:next_page_token,
|
1397
1437
|
:group_definitions,
|
1398
1438
|
:results_by_time)
|
1439
|
+
SENSITIVE = []
|
1399
1440
|
include Aws::Structure
|
1400
1441
|
end
|
1401
1442
|
|
@@ -1497,6 +1538,7 @@ module Aws::CostExplorer
|
|
1497
1538
|
:granularity,
|
1498
1539
|
:filter,
|
1499
1540
|
:prediction_interval_level)
|
1541
|
+
SENSITIVE = []
|
1500
1542
|
include Aws::Structure
|
1501
1543
|
end
|
1502
1544
|
|
@@ -1516,6 +1558,7 @@ module Aws::CostExplorer
|
|
1516
1558
|
class GetCostForecastResponse < Struct.new(
|
1517
1559
|
:total,
|
1518
1560
|
:forecast_results_by_time)
|
1561
|
+
SENSITIVE = []
|
1519
1562
|
include Aws::Structure
|
1520
1563
|
end
|
1521
1564
|
|
@@ -1674,6 +1717,7 @@ module Aws::CostExplorer
|
|
1674
1717
|
:dimension,
|
1675
1718
|
:context,
|
1676
1719
|
:next_page_token)
|
1720
|
+
SENSITIVE = []
|
1677
1721
|
include Aws::Structure
|
1678
1722
|
end
|
1679
1723
|
|
@@ -1803,6 +1847,7 @@ module Aws::CostExplorer
|
|
1803
1847
|
:return_size,
|
1804
1848
|
:total_size,
|
1805
1849
|
:next_page_token)
|
1850
|
+
SENSITIVE = []
|
1806
1851
|
include Aws::Structure
|
1807
1852
|
end
|
1808
1853
|
|
@@ -1968,6 +2013,7 @@ module Aws::CostExplorer
|
|
1968
2013
|
:filter,
|
1969
2014
|
:metrics,
|
1970
2015
|
:next_page_token)
|
2016
|
+
SENSITIVE = []
|
1971
2017
|
include Aws::Structure
|
1972
2018
|
end
|
1973
2019
|
|
@@ -1991,6 +2037,7 @@ module Aws::CostExplorer
|
|
1991
2037
|
:coverages_by_time,
|
1992
2038
|
:total,
|
1993
2039
|
:next_page_token)
|
2040
|
+
SENSITIVE = []
|
1994
2041
|
include Aws::Structure
|
1995
2042
|
end
|
1996
2043
|
|
@@ -2070,6 +2117,7 @@ module Aws::CostExplorer
|
|
2070
2117
|
:service_specification,
|
2071
2118
|
:page_size,
|
2072
2119
|
:next_page_token)
|
2120
|
+
SENSITIVE = []
|
2073
2121
|
include Aws::Structure
|
2074
2122
|
end
|
2075
2123
|
|
@@ -2092,6 +2140,7 @@ module Aws::CostExplorer
|
|
2092
2140
|
:metadata,
|
2093
2141
|
:recommendations,
|
2094
2142
|
:next_page_token)
|
2143
|
+
SENSITIVE = []
|
2095
2144
|
include Aws::Structure
|
2096
2145
|
end
|
2097
2146
|
|
@@ -2214,6 +2263,7 @@ module Aws::CostExplorer
|
|
2214
2263
|
:granularity,
|
2215
2264
|
:filter,
|
2216
2265
|
:next_page_token)
|
2266
|
+
SENSITIVE = []
|
2217
2267
|
include Aws::Structure
|
2218
2268
|
end
|
2219
2269
|
|
@@ -2237,6 +2287,7 @@ module Aws::CostExplorer
|
|
2237
2287
|
:utilizations_by_time,
|
2238
2288
|
:total,
|
2239
2289
|
:next_page_token)
|
2290
|
+
SENSITIVE = []
|
2240
2291
|
include Aws::Structure
|
2241
2292
|
end
|
2242
2293
|
|
@@ -2337,7 +2388,7 @@ module Aws::CostExplorer
|
|
2337
2388
|
# instance families or across different instance families. You can
|
2338
2389
|
# also choose to view your estimated savings associated with
|
2339
2390
|
# recommendations with consideration of existing Savings Plans or RI
|
2340
|
-
# benefits, or
|
2391
|
+
# benefits, or neither.
|
2341
2392
|
# @return [Types::RightsizingRecommendationConfiguration]
|
2342
2393
|
#
|
2343
2394
|
# @!attribute [rw] service
|
@@ -2363,6 +2414,7 @@ module Aws::CostExplorer
|
|
2363
2414
|
:service,
|
2364
2415
|
:page_size,
|
2365
2416
|
:next_page_token)
|
2417
|
+
SENSITIVE = []
|
2366
2418
|
include Aws::Structure
|
2367
2419
|
end
|
2368
2420
|
|
@@ -2388,7 +2440,7 @@ module Aws::CostExplorer
|
|
2388
2440
|
# instance families or across different instance families. You can
|
2389
2441
|
# also choose to view your estimated savings associated with
|
2390
2442
|
# recommendations with consideration of existing Savings Plans or RI
|
2391
|
-
# benefits, or
|
2443
|
+
# benefits, or neither.
|
2392
2444
|
# @return [Types::RightsizingRecommendationConfiguration]
|
2393
2445
|
#
|
2394
2446
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetRightsizingRecommendationResponse AWS API Documentation
|
@@ -2399,6 +2451,7 @@ module Aws::CostExplorer
|
|
2399
2451
|
:rightsizing_recommendations,
|
2400
2452
|
:next_page_token,
|
2401
2453
|
:configuration)
|
2454
|
+
SENSITIVE = []
|
2402
2455
|
include Aws::Structure
|
2403
2456
|
end
|
2404
2457
|
|
@@ -2521,6 +2574,7 @@ module Aws::CostExplorer
|
|
2521
2574
|
:metrics,
|
2522
2575
|
:next_token,
|
2523
2576
|
:max_results)
|
2577
|
+
SENSITIVE = []
|
2524
2578
|
include Aws::Structure
|
2525
2579
|
end
|
2526
2580
|
|
@@ -2539,6 +2593,7 @@ module Aws::CostExplorer
|
|
2539
2593
|
class GetSavingsPlansCoverageResponse < Struct.new(
|
2540
2594
|
:savings_plans_coverages,
|
2541
2595
|
:next_token)
|
2596
|
+
SENSITIVE = []
|
2542
2597
|
include Aws::Structure
|
2543
2598
|
end
|
2544
2599
|
|
@@ -2589,7 +2644,7 @@ module Aws::CostExplorer
|
|
2589
2644
|
# @return [String]
|
2590
2645
|
#
|
2591
2646
|
# @!attribute [rw] term_in_years
|
2592
|
-
# The savings plan recommendation term used to
|
2647
|
+
# The savings plan recommendation term used to generate these
|
2593
2648
|
# recommendations.
|
2594
2649
|
# @return [String]
|
2595
2650
|
#
|
@@ -2646,6 +2701,7 @@ module Aws::CostExplorer
|
|
2646
2701
|
:page_size,
|
2647
2702
|
:lookback_period_in_days,
|
2648
2703
|
:filter)
|
2704
|
+
SENSITIVE = []
|
2649
2705
|
include Aws::Structure
|
2650
2706
|
end
|
2651
2707
|
|
@@ -2670,6 +2726,7 @@ module Aws::CostExplorer
|
|
2670
2726
|
:metadata,
|
2671
2727
|
:savings_plans_purchase_recommendation,
|
2672
2728
|
:next_page_token)
|
2729
|
+
SENSITIVE = []
|
2673
2730
|
include Aws::Structure
|
2674
2731
|
end
|
2675
2732
|
|
@@ -2762,6 +2819,7 @@ module Aws::CostExplorer
|
|
2762
2819
|
:filter,
|
2763
2820
|
:next_token,
|
2764
2821
|
:max_results)
|
2822
|
+
SENSITIVE = []
|
2765
2823
|
include Aws::Structure
|
2766
2824
|
end
|
2767
2825
|
|
@@ -2791,6 +2849,7 @@ module Aws::CostExplorer
|
|
2791
2849
|
:total,
|
2792
2850
|
:time_period,
|
2793
2851
|
:next_token)
|
2852
|
+
SENSITIVE = []
|
2794
2853
|
include Aws::Structure
|
2795
2854
|
end
|
2796
2855
|
|
@@ -2880,6 +2939,7 @@ module Aws::CostExplorer
|
|
2880
2939
|
:time_period,
|
2881
2940
|
:granularity,
|
2882
2941
|
:filter)
|
2942
|
+
SENSITIVE = []
|
2883
2943
|
include Aws::Structure
|
2884
2944
|
end
|
2885
2945
|
|
@@ -2898,6 +2958,7 @@ module Aws::CostExplorer
|
|
2898
2958
|
class GetSavingsPlansUtilizationResponse < Struct.new(
|
2899
2959
|
:savings_plans_utilizations_by_time,
|
2900
2960
|
:total)
|
2961
|
+
SENSITIVE = []
|
2901
2962
|
include Aws::Structure
|
2902
2963
|
end
|
2903
2964
|
|
@@ -2943,6 +3004,7 @@ module Aws::CostExplorer
|
|
2943
3004
|
:time_period,
|
2944
3005
|
:tag_key,
|
2945
3006
|
:next_page_token)
|
3007
|
+
SENSITIVE = []
|
2946
3008
|
include Aws::Structure
|
2947
3009
|
end
|
2948
3010
|
|
@@ -2971,6 +3033,7 @@ module Aws::CostExplorer
|
|
2971
3033
|
:tags,
|
2972
3034
|
:return_size,
|
2973
3035
|
:total_size)
|
3036
|
+
SENSITIVE = []
|
2974
3037
|
include Aws::Structure
|
2975
3038
|
end
|
2976
3039
|
|
@@ -3065,6 +3128,7 @@ module Aws::CostExplorer
|
|
3065
3128
|
:granularity,
|
3066
3129
|
:filter,
|
3067
3130
|
:prediction_interval_level)
|
3131
|
+
SENSITIVE = []
|
3068
3132
|
include Aws::Structure
|
3069
3133
|
end
|
3070
3134
|
|
@@ -3083,6 +3147,7 @@ module Aws::CostExplorer
|
|
3083
3147
|
class GetUsageForecastResponse < Struct.new(
|
3084
3148
|
:total,
|
3085
3149
|
:forecast_results_by_time)
|
3150
|
+
SENSITIVE = []
|
3086
3151
|
include Aws::Structure
|
3087
3152
|
end
|
3088
3153
|
|
@@ -3101,6 +3166,7 @@ module Aws::CostExplorer
|
|
3101
3166
|
class Group < Struct.new(
|
3102
3167
|
:keys,
|
3103
3168
|
:metrics)
|
3169
|
+
SENSITIVE = []
|
3104
3170
|
include Aws::Structure
|
3105
3171
|
end
|
3106
3172
|
|
@@ -3128,6 +3194,7 @@ module Aws::CostExplorer
|
|
3128
3194
|
class GroupDefinition < Struct.new(
|
3129
3195
|
:type,
|
3130
3196
|
:key)
|
3197
|
+
SENSITIVE = []
|
3131
3198
|
include Aws::Structure
|
3132
3199
|
end
|
3133
3200
|
|
@@ -3161,6 +3228,7 @@ module Aws::CostExplorer
|
|
3161
3228
|
:redshift_instance_details,
|
3162
3229
|
:elasticache_instance_details,
|
3163
3230
|
:es_instance_details)
|
3231
|
+
SENSITIVE = []
|
3164
3232
|
include Aws::Structure
|
3165
3233
|
end
|
3166
3234
|
|
@@ -3173,6 +3241,7 @@ module Aws::CostExplorer
|
|
3173
3241
|
#
|
3174
3242
|
class InvalidNextTokenException < Struct.new(
|
3175
3243
|
:message)
|
3244
|
+
SENSITIVE = []
|
3176
3245
|
include Aws::Structure
|
3177
3246
|
end
|
3178
3247
|
|
@@ -3185,6 +3254,7 @@ module Aws::CostExplorer
|
|
3185
3254
|
#
|
3186
3255
|
class LimitExceededException < Struct.new(
|
3187
3256
|
:message)
|
3257
|
+
SENSITIVE = []
|
3188
3258
|
include Aws::Structure
|
3189
3259
|
end
|
3190
3260
|
|
@@ -3217,6 +3287,7 @@ module Aws::CostExplorer
|
|
3217
3287
|
:effective_on,
|
3218
3288
|
:next_token,
|
3219
3289
|
:max_results)
|
3290
|
+
SENSITIVE = []
|
3220
3291
|
include Aws::Structure
|
3221
3292
|
end
|
3222
3293
|
|
@@ -3236,6 +3307,7 @@ module Aws::CostExplorer
|
|
3236
3307
|
class ListCostCategoryDefinitionsResponse < Struct.new(
|
3237
3308
|
:cost_category_references,
|
3238
3309
|
:next_token)
|
3310
|
+
SENSITIVE = []
|
3239
3311
|
include Aws::Structure
|
3240
3312
|
end
|
3241
3313
|
|
@@ -3254,6 +3326,7 @@ module Aws::CostExplorer
|
|
3254
3326
|
class MetricValue < Struct.new(
|
3255
3327
|
:amount,
|
3256
3328
|
:unit)
|
3329
|
+
SENSITIVE = []
|
3257
3330
|
include Aws::Structure
|
3258
3331
|
end
|
3259
3332
|
|
@@ -3268,6 +3341,7 @@ module Aws::CostExplorer
|
|
3268
3341
|
#
|
3269
3342
|
class ModifyRecommendationDetail < Struct.new(
|
3270
3343
|
:target_instances)
|
3344
|
+
SENSITIVE = []
|
3271
3345
|
include Aws::Structure
|
3272
3346
|
end
|
3273
3347
|
|
@@ -3324,6 +3398,7 @@ module Aws::CostExplorer
|
|
3324
3398
|
:license_model,
|
3325
3399
|
:current_generation,
|
3326
3400
|
:size_flex_eligible)
|
3401
|
+
SENSITIVE = []
|
3327
3402
|
include Aws::Structure
|
3328
3403
|
end
|
3329
3404
|
|
@@ -3358,6 +3433,7 @@ module Aws::CostExplorer
|
|
3358
3433
|
:region,
|
3359
3434
|
:current_generation,
|
3360
3435
|
:size_flex_eligible)
|
3436
|
+
SENSITIVE = []
|
3361
3437
|
include Aws::Structure
|
3362
3438
|
end
|
3363
3439
|
|
@@ -3371,6 +3447,7 @@ module Aws::CostExplorer
|
|
3371
3447
|
#
|
3372
3448
|
class RequestChangedException < Struct.new(
|
3373
3449
|
:message)
|
3450
|
+
SENSITIVE = []
|
3374
3451
|
include Aws::Structure
|
3375
3452
|
end
|
3376
3453
|
|
@@ -3462,6 +3539,7 @@ module Aws::CostExplorer
|
|
3462
3539
|
:amortized_upfront_fee,
|
3463
3540
|
:amortized_recurring_fee,
|
3464
3541
|
:total_amortized_fee)
|
3542
|
+
SENSITIVE = []
|
3465
3543
|
include Aws::Structure
|
3466
3544
|
end
|
3467
3545
|
|
@@ -3480,6 +3558,7 @@ module Aws::CostExplorer
|
|
3480
3558
|
class ReservationCoverageGroup < Struct.new(
|
3481
3559
|
:attributes,
|
3482
3560
|
:coverage)
|
3561
|
+
SENSITIVE = []
|
3483
3562
|
include Aws::Structure
|
3484
3563
|
end
|
3485
3564
|
|
@@ -3529,6 +3608,7 @@ module Aws::CostExplorer
|
|
3529
3608
|
:service_specification,
|
3530
3609
|
:recommendation_details,
|
3531
3610
|
:recommendation_summary)
|
3611
|
+
SENSITIVE = []
|
3532
3612
|
include Aws::Structure
|
3533
3613
|
end
|
3534
3614
|
|
@@ -3652,6 +3732,7 @@ module Aws::CostExplorer
|
|
3652
3732
|
:estimated_reservation_cost_for_lookback_period,
|
3653
3733
|
:upfront_cost,
|
3654
3734
|
:recurring_standard_monthly_cost)
|
3735
|
+
SENSITIVE = []
|
3655
3736
|
include Aws::Structure
|
3656
3737
|
end
|
3657
3738
|
|
@@ -3671,6 +3752,7 @@ module Aws::CostExplorer
|
|
3671
3752
|
class ReservationPurchaseRecommendationMetadata < Struct.new(
|
3672
3753
|
:recommendation_id,
|
3673
3754
|
:generation_timestamp)
|
3755
|
+
SENSITIVE = []
|
3674
3756
|
include Aws::Structure
|
3675
3757
|
end
|
3676
3758
|
|
@@ -3698,6 +3780,7 @@ module Aws::CostExplorer
|
|
3698
3780
|
:total_estimated_monthly_savings_amount,
|
3699
3781
|
:total_estimated_monthly_savings_percentage,
|
3700
3782
|
:currency_code)
|
3783
|
+
SENSITIVE = []
|
3701
3784
|
include Aws::Structure
|
3702
3785
|
end
|
3703
3786
|
|
@@ -3726,6 +3809,7 @@ module Aws::CostExplorer
|
|
3726
3809
|
:value,
|
3727
3810
|
:attributes,
|
3728
3811
|
:utilization)
|
3812
|
+
SENSITIVE = []
|
3729
3813
|
include Aws::Structure
|
3730
3814
|
end
|
3731
3815
|
|
@@ -3739,6 +3823,7 @@ module Aws::CostExplorer
|
|
3739
3823
|
#
|
3740
3824
|
class ResourceDetails < Struct.new(
|
3741
3825
|
:ec2_resource_details)
|
3826
|
+
SENSITIVE = []
|
3742
3827
|
include Aws::Structure
|
3743
3828
|
end
|
3744
3829
|
|
@@ -3751,6 +3836,7 @@ module Aws::CostExplorer
|
|
3751
3836
|
#
|
3752
3837
|
class ResourceNotFoundException < Struct.new(
|
3753
3838
|
:message)
|
3839
|
+
SENSITIVE = []
|
3754
3840
|
include Aws::Structure
|
3755
3841
|
end
|
3756
3842
|
|
@@ -3764,6 +3850,7 @@ module Aws::CostExplorer
|
|
3764
3850
|
#
|
3765
3851
|
class ResourceUtilization < Struct.new(
|
3766
3852
|
:ec2_resource_utilization)
|
3853
|
+
SENSITIVE = []
|
3767
3854
|
include Aws::Structure
|
3768
3855
|
end
|
3769
3856
|
|
@@ -3792,6 +3879,7 @@ module Aws::CostExplorer
|
|
3792
3879
|
:total,
|
3793
3880
|
:groups,
|
3794
3881
|
:estimated)
|
3882
|
+
SENSITIVE = []
|
3795
3883
|
include Aws::Structure
|
3796
3884
|
end
|
3797
3885
|
|
@@ -3825,6 +3913,7 @@ module Aws::CostExplorer
|
|
3825
3913
|
:rightsizing_type,
|
3826
3914
|
:modify_recommendation_detail,
|
3827
3915
|
:terminate_recommendation_detail)
|
3916
|
+
SENSITIVE = []
|
3828
3917
|
include Aws::Structure
|
3829
3918
|
end
|
3830
3919
|
|
@@ -3833,7 +3922,7 @@ module Aws::CostExplorer
|
|
3833
3922
|
# instance families or across different instance families. You can also
|
3834
3923
|
# choose to view your estimated savings associated with recommendations
|
3835
3924
|
# with consideration of existing Savings Plans or RI benefits, or
|
3836
|
-
#
|
3925
|
+
# neither.
|
3837
3926
|
#
|
3838
3927
|
# @note When making an API call, you may pass RightsizingRecommendationConfiguration
|
3839
3928
|
# data as a hash:
|
@@ -3859,6 +3948,7 @@ module Aws::CostExplorer
|
|
3859
3948
|
class RightsizingRecommendationConfiguration < Struct.new(
|
3860
3949
|
:recommendation_target,
|
3861
3950
|
:benefits_considered)
|
3951
|
+
SENSITIVE = []
|
3862
3952
|
include Aws::Structure
|
3863
3953
|
end
|
3864
3954
|
|
@@ -3869,8 +3959,7 @@ module Aws::CostExplorer
|
|
3869
3959
|
# @return [String]
|
3870
3960
|
#
|
3871
3961
|
# @!attribute [rw] generation_timestamp
|
3872
|
-
# The
|
3873
|
-
# recommendation.
|
3962
|
+
# The timestamp for when Amazon Web Services made this recommendation.
|
3874
3963
|
# @return [String]
|
3875
3964
|
#
|
3876
3965
|
# @!attribute [rw] lookback_period_in_days
|
@@ -3884,6 +3973,7 @@ module Aws::CostExplorer
|
|
3884
3973
|
:recommendation_id,
|
3885
3974
|
:generation_timestamp,
|
3886
3975
|
:lookback_period_in_days)
|
3976
|
+
SENSITIVE = []
|
3887
3977
|
include Aws::Structure
|
3888
3978
|
end
|
3889
3979
|
|
@@ -3905,7 +3995,7 @@ module Aws::CostExplorer
|
|
3905
3995
|
#
|
3906
3996
|
# @!attribute [rw] savings_percentage
|
3907
3997
|
# Savings percentage based on the recommended modifications, relative
|
3908
|
-
# to the total On
|
3998
|
+
# to the total On-Demand costs associated with these instances.
|
3909
3999
|
# @return [String]
|
3910
4000
|
#
|
3911
4001
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/RightsizingRecommendationSummary AWS API Documentation
|
@@ -3915,6 +4005,7 @@ module Aws::CostExplorer
|
|
3915
4005
|
:estimated_total_monthly_savings_amount,
|
3916
4006
|
:savings_currency_code,
|
3917
4007
|
:savings_percentage)
|
4008
|
+
SENSITIVE = []
|
3918
4009
|
include Aws::Structure
|
3919
4010
|
end
|
3920
4011
|
|
@@ -3942,6 +4033,7 @@ module Aws::CostExplorer
|
|
3942
4033
|
:amortized_recurring_commitment,
|
3943
4034
|
:amortized_upfront_commitment,
|
3944
4035
|
:total_amortized_commitment)
|
4036
|
+
SENSITIVE = []
|
3945
4037
|
include Aws::Structure
|
3946
4038
|
end
|
3947
4039
|
|
@@ -3968,6 +4060,7 @@ module Aws::CostExplorer
|
|
3968
4060
|
:attributes,
|
3969
4061
|
:coverage,
|
3970
4062
|
:time_period)
|
4063
|
+
SENSITIVE = []
|
3971
4064
|
include Aws::Structure
|
3972
4065
|
end
|
3973
4066
|
|
@@ -4002,6 +4095,7 @@ module Aws::CostExplorer
|
|
4002
4095
|
:on_demand_cost,
|
4003
4096
|
:total_cost,
|
4004
4097
|
:coverage_percentage)
|
4098
|
+
SENSITIVE = []
|
4005
4099
|
include Aws::Structure
|
4006
4100
|
end
|
4007
4101
|
|
@@ -4026,6 +4120,7 @@ module Aws::CostExplorer
|
|
4026
4120
|
:region,
|
4027
4121
|
:instance_family,
|
4028
4122
|
:offering_id)
|
4123
|
+
SENSITIVE = []
|
4029
4124
|
include Aws::Structure
|
4030
4125
|
end
|
4031
4126
|
|
@@ -4076,6 +4171,7 @@ module Aws::CostExplorer
|
|
4076
4171
|
:lookback_period_in_days,
|
4077
4172
|
:savings_plans_purchase_recommendation_details,
|
4078
4173
|
:savings_plans_purchase_recommendation_summary)
|
4174
|
+
SENSITIVE = []
|
4079
4175
|
include Aws::Structure
|
4080
4176
|
end
|
4081
4177
|
|
@@ -4179,6 +4275,7 @@ module Aws::CostExplorer
|
|
4179
4275
|
:current_minimum_hourly_on_demand_spend,
|
4180
4276
|
:current_maximum_hourly_on_demand_spend,
|
4181
4277
|
:current_average_hourly_on_demand_spend)
|
4278
|
+
SENSITIVE = []
|
4182
4279
|
include Aws::Structure
|
4183
4280
|
end
|
4184
4281
|
|
@@ -4197,6 +4294,7 @@ module Aws::CostExplorer
|
|
4197
4294
|
class SavingsPlansPurchaseRecommendationMetadata < Struct.new(
|
4198
4295
|
:recommendation_id,
|
4199
4296
|
:generation_timestamp)
|
4297
|
+
SENSITIVE = []
|
4200
4298
|
include Aws::Structure
|
4201
4299
|
end
|
4202
4300
|
|
@@ -4273,6 +4371,7 @@ module Aws::CostExplorer
|
|
4273
4371
|
:estimated_savings_percentage,
|
4274
4372
|
:estimated_monthly_savings_amount,
|
4275
4373
|
:estimated_on_demand_cost_with_current_commitment)
|
4374
|
+
SENSITIVE = []
|
4276
4375
|
include Aws::Structure
|
4277
4376
|
end
|
4278
4377
|
|
@@ -4295,6 +4394,7 @@ module Aws::CostExplorer
|
|
4295
4394
|
class SavingsPlansSavings < Struct.new(
|
4296
4395
|
:net_savings,
|
4297
4396
|
:on_demand_cost_equivalent)
|
4397
|
+
SENSITIVE = []
|
4298
4398
|
include Aws::Structure
|
4299
4399
|
end
|
4300
4400
|
|
@@ -4327,6 +4427,7 @@ module Aws::CostExplorer
|
|
4327
4427
|
:used_commitment,
|
4328
4428
|
:unused_commitment,
|
4329
4429
|
:utilization_percentage)
|
4430
|
+
SENSITIVE = []
|
4330
4431
|
include Aws::Structure
|
4331
4432
|
end
|
4332
4433
|
|
@@ -4355,6 +4456,7 @@ module Aws::CostExplorer
|
|
4355
4456
|
:utilization,
|
4356
4457
|
:savings,
|
4357
4458
|
:amortized_commitment)
|
4459
|
+
SENSITIVE = []
|
4358
4460
|
include Aws::Structure
|
4359
4461
|
end
|
4360
4462
|
|
@@ -4388,6 +4490,7 @@ module Aws::CostExplorer
|
|
4388
4490
|
:utilization,
|
4389
4491
|
:savings,
|
4390
4492
|
:amortized_commitment)
|
4493
|
+
SENSITIVE = []
|
4391
4494
|
include Aws::Structure
|
4392
4495
|
end
|
4393
4496
|
|
@@ -4429,6 +4532,7 @@ module Aws::CostExplorer
|
|
4429
4532
|
:utilization,
|
4430
4533
|
:savings,
|
4431
4534
|
:amortized_commitment)
|
4535
|
+
SENSITIVE = []
|
4432
4536
|
include Aws::Structure
|
4433
4537
|
end
|
4434
4538
|
|
@@ -4442,6 +4546,7 @@ module Aws::CostExplorer
|
|
4442
4546
|
#
|
4443
4547
|
class ServiceQuotaExceededException < Struct.new(
|
4444
4548
|
:message)
|
4549
|
+
SENSITIVE = []
|
4445
4550
|
include Aws::Structure
|
4446
4551
|
end
|
4447
4552
|
|
@@ -4466,6 +4571,7 @@ module Aws::CostExplorer
|
|
4466
4571
|
#
|
4467
4572
|
class ServiceSpecification < Struct.new(
|
4468
4573
|
:ec2_specification)
|
4574
|
+
SENSITIVE = []
|
4469
4575
|
include Aws::Structure
|
4470
4576
|
end
|
4471
4577
|
|
@@ -4501,6 +4607,7 @@ module Aws::CostExplorer
|
|
4501
4607
|
:key,
|
4502
4608
|
:values,
|
4503
4609
|
:match_options)
|
4610
|
+
SENSITIVE = []
|
4504
4611
|
include Aws::Structure
|
4505
4612
|
end
|
4506
4613
|
|
@@ -4541,6 +4648,7 @@ module Aws::CostExplorer
|
|
4541
4648
|
:default_target_instance,
|
4542
4649
|
:resource_details,
|
4543
4650
|
:expected_resource_utilization)
|
4651
|
+
SENSITIVE = []
|
4544
4652
|
include Aws::Structure
|
4545
4653
|
end
|
4546
4654
|
|
@@ -4560,6 +4668,7 @@ module Aws::CostExplorer
|
|
4560
4668
|
class TerminateRecommendationDetail < Struct.new(
|
4561
4669
|
:estimated_monthly_savings,
|
4562
4670
|
:currency_code)
|
4671
|
+
SENSITIVE = []
|
4563
4672
|
include Aws::Structure
|
4564
4673
|
end
|
4565
4674
|
|
@@ -4574,6 +4683,7 @@ module Aws::CostExplorer
|
|
4574
4683
|
#
|
4575
4684
|
class UnresolvableUsageUnitException < Struct.new(
|
4576
4685
|
:message)
|
4686
|
+
SENSITIVE = []
|
4577
4687
|
include Aws::Structure
|
4578
4688
|
end
|
4579
4689
|
|
@@ -4642,6 +4752,7 @@ module Aws::CostExplorer
|
|
4642
4752
|
:cost_category_arn,
|
4643
4753
|
:rule_version,
|
4644
4754
|
:rules)
|
4755
|
+
SENSITIVE = []
|
4645
4756
|
include Aws::Structure
|
4646
4757
|
end
|
4647
4758
|
|
@@ -4658,6 +4769,7 @@ module Aws::CostExplorer
|
|
4658
4769
|
class UpdateCostCategoryDefinitionResponse < Struct.new(
|
4659
4770
|
:cost_category_arn,
|
4660
4771
|
:effective_start)
|
4772
|
+
SENSITIVE = []
|
4661
4773
|
include Aws::Structure
|
4662
4774
|
end
|
4663
4775
|
|
@@ -4681,6 +4793,7 @@ module Aws::CostExplorer
|
|
4681
4793
|
:time_period,
|
4682
4794
|
:groups,
|
4683
4795
|
:total)
|
4796
|
+
SENSITIVE = []
|
4684
4797
|
include Aws::Structure
|
4685
4798
|
end
|
4686
4799
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-costexplorer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.46.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-08-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.99.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|