aws-sdk-invoicing 1.6.0 → 1.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eab861889375800cb26f505c59d67b42fd0e5ed6492647c8fdf8645a97237a2b
4
- data.tar.gz: ee4d9a9b91456cecd1c95a6042975cba615dfb15bca1fd901c9b5fa1abfd6d6f
3
+ metadata.gz: 197a0c03a6566d3c9136ee131eb12dcc764d87a9d2499f23ee28514ca5e6d450
4
+ data.tar.gz: 64801827b97b909b013797e337ff4d76c2ebd977bfcca40e3b2d899e0aab62ed
5
5
  SHA512:
6
- metadata.gz: 2aedf82fa40b3e0074c3a1792801a5d1dc758409d25968b12fc54fd750e6e1323bee98bddc44b42288e3e80366eba1d9e31b4d6c27899874f702a1de09be44e7
7
- data.tar.gz: 30ffb42b34a9f2b405095cab6f88ffbfbc714b39b920fb4d60b2ccb081567e058b27ed2673a7f7ea274bf08ca5ee70a84e8ec0db905cd1393693f5d370e7d3dc
6
+ metadata.gz: 69e40730ca24ed2dd345a55e05215c3c9ecfcd9f02b89135e2d99cd41e7a627390d251f227fcd0a40dabfcc0bb32febd64e7961c993c3536b8eedcdd95a6c949
7
+ data.tar.gz: e06170b7035308d641f9c04edde078fd12009a77b0d888a8156aafca92599bf0a2d7130e577e4fe85b8983a3a842506b3101ddeec56fed544c0aeddbd35bbf3f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.7.0 (2025-06-04)
5
+ ------------------
6
+
7
+ * Feature - Added new Invoicing ListInvoiceSummaries API Operation
8
+
4
9
  1.6.0 (2025-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.7.0
@@ -769,6 +769,648 @@ module Aws::Invoicing
769
769
  req.send_request(options)
770
770
  end
771
771
 
772
+ # Retrieves your invoice details programmatically, without line item
773
+ # details.
774
+ #
775
+ # @option params [required, Types::InvoiceSummariesSelector] :selector
776
+ # The option to retrieve details for a specific invoice by providing its
777
+ # unique ID. Alternatively, access information for all invoices linked
778
+ # to the account by providing an account ID.
779
+ #
780
+ # @option params [Types::InvoiceSummariesFilter] :filter
781
+ # Filters you can use to customize your invoice summary.
782
+ #
783
+ # @option params [String] :next_token
784
+ # The token to retrieve the next set of results. Amazon Web Services
785
+ # provides the token when the response from a previous call has more
786
+ # results than the maximum page size.
787
+ #
788
+ # @option params [Integer] :max_results
789
+ # The maximum number of invoice summaries a paginated response can
790
+ # contain.
791
+ #
792
+ # @return [Types::ListInvoiceSummariesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
793
+ #
794
+ # * {Types::ListInvoiceSummariesResponse#invoice_summaries #invoice_summaries} => Array<Types::InvoiceSummary>
795
+ # * {Types::ListInvoiceSummariesResponse#next_token #next_token} => String
796
+ #
797
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
798
+ #
799
+ #
800
+ # @example Example: ListInvoiceSummaries with InvoiceId as selector
801
+ #
802
+ # resp = client.list_invoice_summaries({
803
+ # selector: {
804
+ # resource_type: "INVOICE_ID",
805
+ # value: "1111111111",
806
+ # },
807
+ # })
808
+ #
809
+ # resp.to_h outputs the following:
810
+ # {
811
+ # invoice_summaries: [
812
+ # {
813
+ # account_id: "111111111111",
814
+ # base_currency_amount: {
815
+ # amount_breakdown: {
816
+ # discounts: {
817
+ # total_amount: "1.00",
818
+ # },
819
+ # sub_total_amount: "1.00",
820
+ # taxes: {
821
+ # total_amount: "1.00",
822
+ # },
823
+ # },
824
+ # currency_code: "USD",
825
+ # total_amount: "1.00",
826
+ # total_amount_before_tax: "1.00",
827
+ # },
828
+ # billing_period: {
829
+ # month: 1,
830
+ # year: 2025,
831
+ # },
832
+ # due_date: Time.parse("2025-04-01T01:00:00.000Z"),
833
+ # entity: {
834
+ # invoicing_entity: "Amazon Web Services, Inc.",
835
+ # },
836
+ # invoice_id: "1111111111",
837
+ # invoice_type: "INVOICE",
838
+ # issued_date: Time.parse("2025-04-01T01:00:00.000Z"),
839
+ # payment_currency_amount: {
840
+ # amount_breakdown: {
841
+ # discounts: {
842
+ # total_amount: "1.00",
843
+ # },
844
+ # sub_total_amount: "1.00",
845
+ # taxes: {
846
+ # breakdown: [
847
+ # {
848
+ # amount: "1",
849
+ # description: "VAT",
850
+ # rate: "1.0",
851
+ # },
852
+ # ],
853
+ # total_amount: "1.00",
854
+ # },
855
+ # },
856
+ # currency_code: "USD",
857
+ # currency_exchange_details: {
858
+ # rate: "1.0",
859
+ # source_currency_code: "USD",
860
+ # target_currency_code: "USD",
861
+ # },
862
+ # total_amount: "1.00",
863
+ # total_amount_before_tax: "1.00",
864
+ # },
865
+ # tax_currency_amount: {
866
+ # amount_breakdown: {
867
+ # discounts: {
868
+ # total_amount: "1.00",
869
+ # },
870
+ # sub_total_amount: "1.00",
871
+ # taxes: {
872
+ # breakdown: [
873
+ # {
874
+ # amount: "1",
875
+ # description: "VAT",
876
+ # rate: "1.0",
877
+ # },
878
+ # ],
879
+ # total_amount: "1.00",
880
+ # },
881
+ # },
882
+ # currency_code: "USD",
883
+ # currency_exchange_details: {
884
+ # rate: "1.0",
885
+ # source_currency_code: "USD",
886
+ # target_currency_code: "USD",
887
+ # },
888
+ # total_amount: "1.00",
889
+ # total_amount_before_tax: "1.00",
890
+ # },
891
+ # },
892
+ # ],
893
+ # }
894
+ #
895
+ # @example Example: ListInvoiceSummaries with AccountId as selector and billing period
896
+ #
897
+ # resp = client.list_invoice_summaries({
898
+ # filter: {
899
+ # billing_period: {
900
+ # month: 1,
901
+ # year: 2025,
902
+ # },
903
+ # },
904
+ # selector: {
905
+ # resource_type: "ACCOUNT_ID",
906
+ # value: "111111111111",
907
+ # },
908
+ # })
909
+ #
910
+ # resp.to_h outputs the following:
911
+ # {
912
+ # invoice_summaries: [
913
+ # {
914
+ # account_id: "111111111111",
915
+ # base_currency_amount: {
916
+ # amount_breakdown: {
917
+ # discounts: {
918
+ # total_amount: "1.00",
919
+ # },
920
+ # sub_total_amount: "1.00",
921
+ # taxes: {
922
+ # total_amount: "1.00",
923
+ # },
924
+ # },
925
+ # currency_code: "USD",
926
+ # total_amount: "1.00",
927
+ # total_amount_before_tax: "1.00",
928
+ # },
929
+ # billing_period: {
930
+ # month: 1,
931
+ # year: 2025,
932
+ # },
933
+ # due_date: Time.parse("2025-04-01T01:00:00.000Z"),
934
+ # entity: {
935
+ # invoicing_entity: "Amazon Web Services, Inc.",
936
+ # },
937
+ # invoice_id: "1111111111",
938
+ # invoice_type: "INVOICE",
939
+ # issued_date: Time.parse("2025-04-01T01:00:00.000Z"),
940
+ # payment_currency_amount: {
941
+ # amount_breakdown: {
942
+ # discounts: {
943
+ # total_amount: "1.00",
944
+ # },
945
+ # sub_total_amount: "1.00",
946
+ # taxes: {
947
+ # breakdown: [
948
+ # {
949
+ # amount: "1",
950
+ # description: "VAT",
951
+ # rate: "1.0",
952
+ # },
953
+ # ],
954
+ # total_amount: "1.00",
955
+ # },
956
+ # },
957
+ # currency_code: "USD",
958
+ # currency_exchange_details: {
959
+ # rate: "1.0",
960
+ # source_currency_code: "USD",
961
+ # target_currency_code: "USD",
962
+ # },
963
+ # total_amount: "1.00",
964
+ # total_amount_before_tax: "1.00",
965
+ # },
966
+ # tax_currency_amount: {
967
+ # amount_breakdown: {
968
+ # discounts: {
969
+ # total_amount: "1.00",
970
+ # },
971
+ # sub_total_amount: "1.00",
972
+ # taxes: {
973
+ # breakdown: [
974
+ # {
975
+ # amount: "1",
976
+ # description: "VAT",
977
+ # rate: "1.0",
978
+ # },
979
+ # ],
980
+ # total_amount: "1.00",
981
+ # },
982
+ # },
983
+ # currency_code: "USD",
984
+ # currency_exchange_details: {
985
+ # rate: "1.0",
986
+ # source_currency_code: "USD",
987
+ # target_currency_code: "USD",
988
+ # },
989
+ # total_amount: "1.00",
990
+ # total_amount_before_tax: "1.00",
991
+ # },
992
+ # },
993
+ # ],
994
+ # }
995
+ #
996
+ # @example Example: ListInvoiceSummaries with AccountId as selector and time interval
997
+ #
998
+ # resp = client.list_invoice_summaries({
999
+ # filter: {
1000
+ # time_interval: {
1001
+ # end_date: Time.parse(1592639007),
1002
+ # start_date: Time.parse(1590997407),
1003
+ # },
1004
+ # },
1005
+ # selector: {
1006
+ # resource_type: "ACCOUNT_ID",
1007
+ # value: "111111111111",
1008
+ # },
1009
+ # })
1010
+ #
1011
+ # resp.to_h outputs the following:
1012
+ # {
1013
+ # invoice_summaries: [
1014
+ # {
1015
+ # account_id: "111111111111",
1016
+ # base_currency_amount: {
1017
+ # amount_breakdown: {
1018
+ # discounts: {
1019
+ # total_amount: "1.00",
1020
+ # },
1021
+ # sub_total_amount: "1.00",
1022
+ # taxes: {
1023
+ # total_amount: "1.00",
1024
+ # },
1025
+ # },
1026
+ # currency_code: "USD",
1027
+ # total_amount: "1.00",
1028
+ # total_amount_before_tax: "1.00",
1029
+ # },
1030
+ # billing_period: {
1031
+ # month: 1,
1032
+ # year: 2025,
1033
+ # },
1034
+ # due_date: Time.parse("2025-04-01T01:00:00.000Z"),
1035
+ # entity: {
1036
+ # invoicing_entity: "Amazon Web Services, Inc.",
1037
+ # },
1038
+ # invoice_id: "1111111111",
1039
+ # invoice_type: "INVOICE",
1040
+ # issued_date: Time.parse("2025-04-01T01:00:00.000Z"),
1041
+ # payment_currency_amount: {
1042
+ # amount_breakdown: {
1043
+ # discounts: {
1044
+ # total_amount: "1.00",
1045
+ # },
1046
+ # sub_total_amount: "1.00",
1047
+ # taxes: {
1048
+ # breakdown: [
1049
+ # {
1050
+ # amount: "1",
1051
+ # description: "VAT",
1052
+ # rate: "1.0",
1053
+ # },
1054
+ # ],
1055
+ # total_amount: "1.00",
1056
+ # },
1057
+ # },
1058
+ # currency_code: "USD",
1059
+ # currency_exchange_details: {
1060
+ # rate: "1.0",
1061
+ # source_currency_code: "USD",
1062
+ # target_currency_code: "USD",
1063
+ # },
1064
+ # total_amount: "1.00",
1065
+ # total_amount_before_tax: "1.00",
1066
+ # },
1067
+ # tax_currency_amount: {
1068
+ # amount_breakdown: {
1069
+ # discounts: {
1070
+ # total_amount: "1.00",
1071
+ # },
1072
+ # sub_total_amount: "1.00",
1073
+ # taxes: {
1074
+ # breakdown: [
1075
+ # {
1076
+ # amount: "1",
1077
+ # description: "VAT",
1078
+ # rate: "1.0",
1079
+ # },
1080
+ # ],
1081
+ # total_amount: "1.00",
1082
+ # },
1083
+ # },
1084
+ # currency_code: "USD",
1085
+ # currency_exchange_details: {
1086
+ # rate: "1.0",
1087
+ # source_currency_code: "USD",
1088
+ # target_currency_code: "USD",
1089
+ # },
1090
+ # total_amount: "1.00",
1091
+ # total_amount_before_tax: "1.00",
1092
+ # },
1093
+ # },
1094
+ # ],
1095
+ # }
1096
+ #
1097
+ # @example Example: ListInvoiceSummaries with AccountId as selector and a billing period and max results
1098
+ #
1099
+ # resp = client.list_invoice_summaries({
1100
+ # filter: {
1101
+ # billing_period: {
1102
+ # month: 1,
1103
+ # year: 2025,
1104
+ # },
1105
+ # },
1106
+ # max_results: 1,
1107
+ # selector: {
1108
+ # resource_type: "ACCOUNT_ID",
1109
+ # value: "111111111111",
1110
+ # },
1111
+ # })
1112
+ #
1113
+ # resp.to_h outputs the following:
1114
+ # {
1115
+ # invoice_summaries: [
1116
+ # {
1117
+ # account_id: "111111111111",
1118
+ # base_currency_amount: {
1119
+ # amount_breakdown: {
1120
+ # discounts: {
1121
+ # total_amount: "1.00",
1122
+ # },
1123
+ # sub_total_amount: "1.00",
1124
+ # taxes: {
1125
+ # total_amount: "1.00",
1126
+ # },
1127
+ # },
1128
+ # currency_code: "USD",
1129
+ # total_amount: "1.00",
1130
+ # total_amount_before_tax: "1.00",
1131
+ # },
1132
+ # billing_period: {
1133
+ # month: 1,
1134
+ # year: 2025,
1135
+ # },
1136
+ # due_date: Time.parse("2025-04-01T01:00:00.000Z"),
1137
+ # entity: {
1138
+ # invoicing_entity: "Amazon Web Services, Inc.",
1139
+ # },
1140
+ # invoice_id: "1111111111",
1141
+ # invoice_type: "INVOICE",
1142
+ # issued_date: Time.parse("2025-04-01T01:00:00.000Z"),
1143
+ # payment_currency_amount: {
1144
+ # amount_breakdown: {
1145
+ # discounts: {
1146
+ # total_amount: "1.00",
1147
+ # },
1148
+ # sub_total_amount: "1.00",
1149
+ # taxes: {
1150
+ # breakdown: [
1151
+ # {
1152
+ # amount: "1",
1153
+ # description: "VAT",
1154
+ # rate: "1.0",
1155
+ # },
1156
+ # ],
1157
+ # total_amount: "1.00",
1158
+ # },
1159
+ # },
1160
+ # currency_code: "USD",
1161
+ # currency_exchange_details: {
1162
+ # rate: "1.0",
1163
+ # source_currency_code: "USD",
1164
+ # target_currency_code: "USD",
1165
+ # },
1166
+ # total_amount: "1.00",
1167
+ # total_amount_before_tax: "1.00",
1168
+ # },
1169
+ # tax_currency_amount: {
1170
+ # amount_breakdown: {
1171
+ # discounts: {
1172
+ # total_amount: "1.00",
1173
+ # },
1174
+ # sub_total_amount: "1.00",
1175
+ # taxes: {
1176
+ # breakdown: [
1177
+ # {
1178
+ # amount: "1",
1179
+ # description: "VAT",
1180
+ # rate: "1.0",
1181
+ # },
1182
+ # ],
1183
+ # total_amount: "1.00",
1184
+ # },
1185
+ # },
1186
+ # currency_code: "USD",
1187
+ # currency_exchange_details: {
1188
+ # rate: "1.0",
1189
+ # source_currency_code: "USD",
1190
+ # target_currency_code: "USD",
1191
+ # },
1192
+ # total_amount: "1.00",
1193
+ # total_amount_before_tax: "1.00",
1194
+ # },
1195
+ # },
1196
+ # ],
1197
+ # next_token: "abcde12345",
1198
+ # }
1199
+ #
1200
+ # @example Example: ListInvoiceSummaries with AccountId as selector and a billing period and next token
1201
+ #
1202
+ # resp = client.list_invoice_summaries({
1203
+ # filter: {
1204
+ # billing_period: {
1205
+ # month: 1,
1206
+ # year: 2025,
1207
+ # },
1208
+ # },
1209
+ # next_token: "abcde12345",
1210
+ # selector: {
1211
+ # resource_type: "ACCOUNT_ID",
1212
+ # value: "111111111111",
1213
+ # },
1214
+ # })
1215
+ #
1216
+ # resp.to_h outputs the following:
1217
+ # {
1218
+ # invoice_summaries: [
1219
+ # {
1220
+ # account_id: "111111111111",
1221
+ # base_currency_amount: {
1222
+ # amount_breakdown: {
1223
+ # discounts: {
1224
+ # total_amount: "1.00",
1225
+ # },
1226
+ # sub_total_amount: "1.00",
1227
+ # taxes: {
1228
+ # total_amount: "1.00",
1229
+ # },
1230
+ # },
1231
+ # currency_code: "USD",
1232
+ # total_amount: "1.00",
1233
+ # total_amount_before_tax: "1.00",
1234
+ # },
1235
+ # billing_period: {
1236
+ # month: 1,
1237
+ # year: 2025,
1238
+ # },
1239
+ # due_date: Time.parse("2025-04-01T01:00:00.000Z"),
1240
+ # entity: {
1241
+ # invoicing_entity: "Amazon Web Services, Inc.",
1242
+ # },
1243
+ # invoice_id: "1111111111",
1244
+ # invoice_type: "INVOICE",
1245
+ # issued_date: Time.parse("2025-04-01T01:00:00.000Z"),
1246
+ # payment_currency_amount: {
1247
+ # amount_breakdown: {
1248
+ # discounts: {
1249
+ # total_amount: "1.00",
1250
+ # },
1251
+ # sub_total_amount: "1.00",
1252
+ # taxes: {
1253
+ # breakdown: [
1254
+ # {
1255
+ # amount: "1",
1256
+ # description: "VAT",
1257
+ # rate: "1.0",
1258
+ # },
1259
+ # ],
1260
+ # total_amount: "1.00",
1261
+ # },
1262
+ # },
1263
+ # currency_code: "USD",
1264
+ # currency_exchange_details: {
1265
+ # rate: "1.0",
1266
+ # source_currency_code: "USD",
1267
+ # target_currency_code: "USD",
1268
+ # },
1269
+ # total_amount: "1.00",
1270
+ # total_amount_before_tax: "1.00",
1271
+ # },
1272
+ # tax_currency_amount: {
1273
+ # amount_breakdown: {
1274
+ # discounts: {
1275
+ # total_amount: "1.00",
1276
+ # },
1277
+ # sub_total_amount: "1.00",
1278
+ # taxes: {
1279
+ # breakdown: [
1280
+ # {
1281
+ # amount: "1",
1282
+ # description: "VAT",
1283
+ # rate: "1.0",
1284
+ # },
1285
+ # ],
1286
+ # total_amount: "1.00",
1287
+ # },
1288
+ # },
1289
+ # currency_code: "USD",
1290
+ # currency_exchange_details: {
1291
+ # rate: "1.0",
1292
+ # source_currency_code: "USD",
1293
+ # target_currency_code: "USD",
1294
+ # },
1295
+ # total_amount: "1.00",
1296
+ # total_amount_before_tax: "1.00",
1297
+ # },
1298
+ # },
1299
+ # ],
1300
+ # }
1301
+ #
1302
+ # @example Request syntax with placeholder values
1303
+ #
1304
+ # resp = client.list_invoice_summaries({
1305
+ # selector: { # required
1306
+ # resource_type: "ACCOUNT_ID", # required, accepts ACCOUNT_ID, INVOICE_ID
1307
+ # value: "StringWithoutNewLine", # required
1308
+ # },
1309
+ # filter: {
1310
+ # time_interval: {
1311
+ # start_date: Time.now, # required
1312
+ # end_date: Time.now, # required
1313
+ # },
1314
+ # billing_period: {
1315
+ # month: 1, # required
1316
+ # year: 1, # required
1317
+ # },
1318
+ # invoicing_entity: "BasicString",
1319
+ # },
1320
+ # next_token: "NextTokenString",
1321
+ # max_results: 1,
1322
+ # })
1323
+ #
1324
+ # @example Response structure
1325
+ #
1326
+ # resp.invoice_summaries #=> Array
1327
+ # resp.invoice_summaries[0].account_id #=> String
1328
+ # resp.invoice_summaries[0].invoice_id #=> String
1329
+ # resp.invoice_summaries[0].issued_date #=> Time
1330
+ # resp.invoice_summaries[0].due_date #=> Time
1331
+ # resp.invoice_summaries[0].entity.invoicing_entity #=> String
1332
+ # resp.invoice_summaries[0].billing_period.month #=> Integer
1333
+ # resp.invoice_summaries[0].billing_period.year #=> Integer
1334
+ # resp.invoice_summaries[0].invoice_type #=> String, one of "INVOICE", "CREDIT_MEMO"
1335
+ # resp.invoice_summaries[0].original_invoice_id #=> String
1336
+ # resp.invoice_summaries[0].purchase_order_number #=> String
1337
+ # resp.invoice_summaries[0].base_currency_amount.total_amount #=> String
1338
+ # resp.invoice_summaries[0].base_currency_amount.total_amount_before_tax #=> String
1339
+ # resp.invoice_summaries[0].base_currency_amount.currency_code #=> String
1340
+ # resp.invoice_summaries[0].base_currency_amount.amount_breakdown.sub_total_amount #=> String
1341
+ # resp.invoice_summaries[0].base_currency_amount.amount_breakdown.discounts.breakdown #=> Array
1342
+ # resp.invoice_summaries[0].base_currency_amount.amount_breakdown.discounts.breakdown[0].description #=> String
1343
+ # resp.invoice_summaries[0].base_currency_amount.amount_breakdown.discounts.breakdown[0].amount #=> String
1344
+ # resp.invoice_summaries[0].base_currency_amount.amount_breakdown.discounts.breakdown[0].rate #=> String
1345
+ # resp.invoice_summaries[0].base_currency_amount.amount_breakdown.discounts.total_amount #=> String
1346
+ # resp.invoice_summaries[0].base_currency_amount.amount_breakdown.taxes.breakdown #=> Array
1347
+ # resp.invoice_summaries[0].base_currency_amount.amount_breakdown.taxes.breakdown[0].description #=> String
1348
+ # resp.invoice_summaries[0].base_currency_amount.amount_breakdown.taxes.breakdown[0].amount #=> String
1349
+ # resp.invoice_summaries[0].base_currency_amount.amount_breakdown.taxes.breakdown[0].rate #=> String
1350
+ # resp.invoice_summaries[0].base_currency_amount.amount_breakdown.taxes.total_amount #=> String
1351
+ # resp.invoice_summaries[0].base_currency_amount.amount_breakdown.fees.breakdown #=> Array
1352
+ # resp.invoice_summaries[0].base_currency_amount.amount_breakdown.fees.breakdown[0].description #=> String
1353
+ # resp.invoice_summaries[0].base_currency_amount.amount_breakdown.fees.breakdown[0].amount #=> String
1354
+ # resp.invoice_summaries[0].base_currency_amount.amount_breakdown.fees.breakdown[0].rate #=> String
1355
+ # resp.invoice_summaries[0].base_currency_amount.amount_breakdown.fees.total_amount #=> String
1356
+ # resp.invoice_summaries[0].base_currency_amount.currency_exchange_details.source_currency_code #=> String
1357
+ # resp.invoice_summaries[0].base_currency_amount.currency_exchange_details.target_currency_code #=> String
1358
+ # resp.invoice_summaries[0].base_currency_amount.currency_exchange_details.rate #=> String
1359
+ # resp.invoice_summaries[0].tax_currency_amount.total_amount #=> String
1360
+ # resp.invoice_summaries[0].tax_currency_amount.total_amount_before_tax #=> String
1361
+ # resp.invoice_summaries[0].tax_currency_amount.currency_code #=> String
1362
+ # resp.invoice_summaries[0].tax_currency_amount.amount_breakdown.sub_total_amount #=> String
1363
+ # resp.invoice_summaries[0].tax_currency_amount.amount_breakdown.discounts.breakdown #=> Array
1364
+ # resp.invoice_summaries[0].tax_currency_amount.amount_breakdown.discounts.breakdown[0].description #=> String
1365
+ # resp.invoice_summaries[0].tax_currency_amount.amount_breakdown.discounts.breakdown[0].amount #=> String
1366
+ # resp.invoice_summaries[0].tax_currency_amount.amount_breakdown.discounts.breakdown[0].rate #=> String
1367
+ # resp.invoice_summaries[0].tax_currency_amount.amount_breakdown.discounts.total_amount #=> String
1368
+ # resp.invoice_summaries[0].tax_currency_amount.amount_breakdown.taxes.breakdown #=> Array
1369
+ # resp.invoice_summaries[0].tax_currency_amount.amount_breakdown.taxes.breakdown[0].description #=> String
1370
+ # resp.invoice_summaries[0].tax_currency_amount.amount_breakdown.taxes.breakdown[0].amount #=> String
1371
+ # resp.invoice_summaries[0].tax_currency_amount.amount_breakdown.taxes.breakdown[0].rate #=> String
1372
+ # resp.invoice_summaries[0].tax_currency_amount.amount_breakdown.taxes.total_amount #=> String
1373
+ # resp.invoice_summaries[0].tax_currency_amount.amount_breakdown.fees.breakdown #=> Array
1374
+ # resp.invoice_summaries[0].tax_currency_amount.amount_breakdown.fees.breakdown[0].description #=> String
1375
+ # resp.invoice_summaries[0].tax_currency_amount.amount_breakdown.fees.breakdown[0].amount #=> String
1376
+ # resp.invoice_summaries[0].tax_currency_amount.amount_breakdown.fees.breakdown[0].rate #=> String
1377
+ # resp.invoice_summaries[0].tax_currency_amount.amount_breakdown.fees.total_amount #=> String
1378
+ # resp.invoice_summaries[0].tax_currency_amount.currency_exchange_details.source_currency_code #=> String
1379
+ # resp.invoice_summaries[0].tax_currency_amount.currency_exchange_details.target_currency_code #=> String
1380
+ # resp.invoice_summaries[0].tax_currency_amount.currency_exchange_details.rate #=> String
1381
+ # resp.invoice_summaries[0].payment_currency_amount.total_amount #=> String
1382
+ # resp.invoice_summaries[0].payment_currency_amount.total_amount_before_tax #=> String
1383
+ # resp.invoice_summaries[0].payment_currency_amount.currency_code #=> String
1384
+ # resp.invoice_summaries[0].payment_currency_amount.amount_breakdown.sub_total_amount #=> String
1385
+ # resp.invoice_summaries[0].payment_currency_amount.amount_breakdown.discounts.breakdown #=> Array
1386
+ # resp.invoice_summaries[0].payment_currency_amount.amount_breakdown.discounts.breakdown[0].description #=> String
1387
+ # resp.invoice_summaries[0].payment_currency_amount.amount_breakdown.discounts.breakdown[0].amount #=> String
1388
+ # resp.invoice_summaries[0].payment_currency_amount.amount_breakdown.discounts.breakdown[0].rate #=> String
1389
+ # resp.invoice_summaries[0].payment_currency_amount.amount_breakdown.discounts.total_amount #=> String
1390
+ # resp.invoice_summaries[0].payment_currency_amount.amount_breakdown.taxes.breakdown #=> Array
1391
+ # resp.invoice_summaries[0].payment_currency_amount.amount_breakdown.taxes.breakdown[0].description #=> String
1392
+ # resp.invoice_summaries[0].payment_currency_amount.amount_breakdown.taxes.breakdown[0].amount #=> String
1393
+ # resp.invoice_summaries[0].payment_currency_amount.amount_breakdown.taxes.breakdown[0].rate #=> String
1394
+ # resp.invoice_summaries[0].payment_currency_amount.amount_breakdown.taxes.total_amount #=> String
1395
+ # resp.invoice_summaries[0].payment_currency_amount.amount_breakdown.fees.breakdown #=> Array
1396
+ # resp.invoice_summaries[0].payment_currency_amount.amount_breakdown.fees.breakdown[0].description #=> String
1397
+ # resp.invoice_summaries[0].payment_currency_amount.amount_breakdown.fees.breakdown[0].amount #=> String
1398
+ # resp.invoice_summaries[0].payment_currency_amount.amount_breakdown.fees.breakdown[0].rate #=> String
1399
+ # resp.invoice_summaries[0].payment_currency_amount.amount_breakdown.fees.total_amount #=> String
1400
+ # resp.invoice_summaries[0].payment_currency_amount.currency_exchange_details.source_currency_code #=> String
1401
+ # resp.invoice_summaries[0].payment_currency_amount.currency_exchange_details.target_currency_code #=> String
1402
+ # resp.invoice_summaries[0].payment_currency_amount.currency_exchange_details.rate #=> String
1403
+ # resp.next_token #=> String
1404
+ #
1405
+ # @see http://docs.aws.amazon.com/goto/WebAPI/invoicing-2024-12-01/ListInvoiceSummaries AWS API Documentation
1406
+ #
1407
+ # @overload list_invoice_summaries(params = {})
1408
+ # @param [Hash] params ({})
1409
+ def list_invoice_summaries(params = {}, options = {})
1410
+ req = build_request(:list_invoice_summaries, params)
1411
+ req.send_request(options)
1412
+ end
1413
+
772
1414
  # This fetches a list of all invoice unit definitions for a given
773
1415
  # account, as of the provided `AsOf` date.
774
1416
  #
@@ -1185,7 +1827,7 @@ module Aws::Invoicing
1185
1827
  tracer: tracer
1186
1828
  )
1187
1829
  context[:gem_name] = 'aws-sdk-invoicing'
1188
- context[:gem_version] = '1.6.0'
1830
+ context[:gem_version] = '1.7.0'
1189
1831
  Seahorse::Client::Request.new(handlers, context)
1190
1832
  end
1191
1833