1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931
|
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package applicationcostprofiler
import (
"fmt"
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/private/protocol"
)
const opDeleteReportDefinition = "DeleteReportDefinition"
// DeleteReportDefinitionRequest generates a "aws/request.Request" representing the
// client's request for the DeleteReportDefinition operation. The "output" return
// value will be populated with the request's response once the request completes
// successfully.
//
// Use "Send" method on the returned Request to send the API call to the service.
// the "output" return value is not valid until after Send returns without error.
//
// See DeleteReportDefinition for more information on using the DeleteReportDefinition
// API call, and error handling.
//
// This method is useful when you want to inject custom logic or configuration
// into the SDK's request lifecycle. Such as custom headers, or retry logic.
//
// // Example sending a request using the DeleteReportDefinitionRequest method.
// req, resp := client.DeleteReportDefinitionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/AWSApplicationCostProfiler-2020-09-10/DeleteReportDefinition
func (c *ApplicationCostProfiler) DeleteReportDefinitionRequest(input *DeleteReportDefinitionInput) (req *request.Request, output *DeleteReportDefinitionOutput) {
op := &request.Operation{
Name: opDeleteReportDefinition,
HTTPMethod: "DELETE",
HTTPPath: "/reportDefinition/{reportId}",
}
if input == nil {
input = &DeleteReportDefinitionInput{}
}
output = &DeleteReportDefinitionOutput{}
req = c.newRequest(op, input, output)
return
}
// DeleteReportDefinition API operation for AWS Application Cost Profiler.
//
// Deletes the specified report definition in AWS Application Cost Profiler.
// This stops the report from being generated.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Application Cost Profiler's
// API operation DeleteReportDefinition for usage and error information.
//
// Returned Error Types:
//
// - InternalServerException
// An internal server error occurred. Retry your request.
//
// - ThrottlingException
// The calls to AWS Application Cost Profiler API are throttled. The request
// was denied.
//
// - ValidationException
// The input fails to satisfy the constraints for the API.
//
// - AccessDeniedException
// You do not have permission to perform this action.
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/AWSApplicationCostProfiler-2020-09-10/DeleteReportDefinition
func (c *ApplicationCostProfiler) DeleteReportDefinition(input *DeleteReportDefinitionInput) (*DeleteReportDefinitionOutput, error) {
req, out := c.DeleteReportDefinitionRequest(input)
return out, req.Send()
}
// DeleteReportDefinitionWithContext is the same as DeleteReportDefinition with the addition of
// the ability to pass a context and additional request options.
//
// See DeleteReportDefinition for details on how to use this API operation.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *ApplicationCostProfiler) DeleteReportDefinitionWithContext(ctx aws.Context, input *DeleteReportDefinitionInput, opts ...request.Option) (*DeleteReportDefinitionOutput, error) {
req, out := c.DeleteReportDefinitionRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
const opGetReportDefinition = "GetReportDefinition"
// GetReportDefinitionRequest generates a "aws/request.Request" representing the
// client's request for the GetReportDefinition operation. The "output" return
// value will be populated with the request's response once the request completes
// successfully.
//
// Use "Send" method on the returned Request to send the API call to the service.
// the "output" return value is not valid until after Send returns without error.
//
// See GetReportDefinition for more information on using the GetReportDefinition
// API call, and error handling.
//
// This method is useful when you want to inject custom logic or configuration
// into the SDK's request lifecycle. Such as custom headers, or retry logic.
//
// // Example sending a request using the GetReportDefinitionRequest method.
// req, resp := client.GetReportDefinitionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/AWSApplicationCostProfiler-2020-09-10/GetReportDefinition
func (c *ApplicationCostProfiler) GetReportDefinitionRequest(input *GetReportDefinitionInput) (req *request.Request, output *GetReportDefinitionOutput) {
op := &request.Operation{
Name: opGetReportDefinition,
HTTPMethod: "GET",
HTTPPath: "/reportDefinition/{reportId}",
}
if input == nil {
input = &GetReportDefinitionInput{}
}
output = &GetReportDefinitionOutput{}
req = c.newRequest(op, input, output)
return
}
// GetReportDefinition API operation for AWS Application Cost Profiler.
//
// Retrieves the definition of a report already configured in AWS Application
// Cost Profiler.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Application Cost Profiler's
// API operation GetReportDefinition for usage and error information.
//
// Returned Error Types:
//
// - InternalServerException
// An internal server error occurred. Retry your request.
//
// - ThrottlingException
// The calls to AWS Application Cost Profiler API are throttled. The request
// was denied.
//
// - ValidationException
// The input fails to satisfy the constraints for the API.
//
// - AccessDeniedException
// You do not have permission to perform this action.
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/AWSApplicationCostProfiler-2020-09-10/GetReportDefinition
func (c *ApplicationCostProfiler) GetReportDefinition(input *GetReportDefinitionInput) (*GetReportDefinitionOutput, error) {
req, out := c.GetReportDefinitionRequest(input)
return out, req.Send()
}
// GetReportDefinitionWithContext is the same as GetReportDefinition with the addition of
// the ability to pass a context and additional request options.
//
// See GetReportDefinition for details on how to use this API operation.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *ApplicationCostProfiler) GetReportDefinitionWithContext(ctx aws.Context, input *GetReportDefinitionInput, opts ...request.Option) (*GetReportDefinitionOutput, error) {
req, out := c.GetReportDefinitionRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
const opImportApplicationUsage = "ImportApplicationUsage"
// ImportApplicationUsageRequest generates a "aws/request.Request" representing the
// client's request for the ImportApplicationUsage operation. The "output" return
// value will be populated with the request's response once the request completes
// successfully.
//
// Use "Send" method on the returned Request to send the API call to the service.
// the "output" return value is not valid until after Send returns without error.
//
// See ImportApplicationUsage for more information on using the ImportApplicationUsage
// API call, and error handling.
//
// This method is useful when you want to inject custom logic or configuration
// into the SDK's request lifecycle. Such as custom headers, or retry logic.
//
// // Example sending a request using the ImportApplicationUsageRequest method.
// req, resp := client.ImportApplicationUsageRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/AWSApplicationCostProfiler-2020-09-10/ImportApplicationUsage
func (c *ApplicationCostProfiler) ImportApplicationUsageRequest(input *ImportApplicationUsageInput) (req *request.Request, output *ImportApplicationUsageOutput) {
op := &request.Operation{
Name: opImportApplicationUsage,
HTTPMethod: "POST",
HTTPPath: "/importApplicationUsage",
}
if input == nil {
input = &ImportApplicationUsageInput{}
}
output = &ImportApplicationUsageOutput{}
req = c.newRequest(op, input, output)
return
}
// ImportApplicationUsage API operation for AWS Application Cost Profiler.
//
// Ingests application usage data from Amazon Simple Storage Service (Amazon
// S3).
//
// The data must already exist in the S3 location. As part of the action, AWS
// Application Cost Profiler copies the object from your S3 bucket to an S3
// bucket owned by Amazon for processing asynchronously.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Application Cost Profiler's
// API operation ImportApplicationUsage for usage and error information.
//
// Returned Error Types:
//
// - InternalServerException
// An internal server error occurred. Retry your request.
//
// - ThrottlingException
// The calls to AWS Application Cost Profiler API are throttled. The request
// was denied.
//
// - ValidationException
// The input fails to satisfy the constraints for the API.
//
// - AccessDeniedException
// You do not have permission to perform this action.
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/AWSApplicationCostProfiler-2020-09-10/ImportApplicationUsage
func (c *ApplicationCostProfiler) ImportApplicationUsage(input *ImportApplicationUsageInput) (*ImportApplicationUsageOutput, error) {
req, out := c.ImportApplicationUsageRequest(input)
return out, req.Send()
}
// ImportApplicationUsageWithContext is the same as ImportApplicationUsage with the addition of
// the ability to pass a context and additional request options.
//
// See ImportApplicationUsage for details on how to use this API operation.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *ApplicationCostProfiler) ImportApplicationUsageWithContext(ctx aws.Context, input *ImportApplicationUsageInput, opts ...request.Option) (*ImportApplicationUsageOutput, error) {
req, out := c.ImportApplicationUsageRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
const opListReportDefinitions = "ListReportDefinitions"
// ListReportDefinitionsRequest generates a "aws/request.Request" representing the
// client's request for the ListReportDefinitions operation. The "output" return
// value will be populated with the request's response once the request completes
// successfully.
//
// Use "Send" method on the returned Request to send the API call to the service.
// the "output" return value is not valid until after Send returns without error.
//
// See ListReportDefinitions for more information on using the ListReportDefinitions
// API call, and error handling.
//
// This method is useful when you want to inject custom logic or configuration
// into the SDK's request lifecycle. Such as custom headers, or retry logic.
//
// // Example sending a request using the ListReportDefinitionsRequest method.
// req, resp := client.ListReportDefinitionsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/AWSApplicationCostProfiler-2020-09-10/ListReportDefinitions
func (c *ApplicationCostProfiler) ListReportDefinitionsRequest(input *ListReportDefinitionsInput) (req *request.Request, output *ListReportDefinitionsOutput) {
op := &request.Operation{
Name: opListReportDefinitions,
HTTPMethod: "GET",
HTTPPath: "/reportDefinition",
Paginator: &request.Paginator{
InputTokens: []string{"nextToken"},
OutputTokens: []string{"nextToken"},
LimitToken: "maxResults",
TruncationToken: "",
},
}
if input == nil {
input = &ListReportDefinitionsInput{}
}
output = &ListReportDefinitionsOutput{}
req = c.newRequest(op, input, output)
return
}
// ListReportDefinitions API operation for AWS Application Cost Profiler.
//
// Retrieves a list of all reports and their configurations for your AWS account.
//
// The maximum number of reports is one.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Application Cost Profiler's
// API operation ListReportDefinitions for usage and error information.
//
// Returned Error Types:
//
// - InternalServerException
// An internal server error occurred. Retry your request.
//
// - ThrottlingException
// The calls to AWS Application Cost Profiler API are throttled. The request
// was denied.
//
// - ValidationException
// The input fails to satisfy the constraints for the API.
//
// - AccessDeniedException
// You do not have permission to perform this action.
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/AWSApplicationCostProfiler-2020-09-10/ListReportDefinitions
func (c *ApplicationCostProfiler) ListReportDefinitions(input *ListReportDefinitionsInput) (*ListReportDefinitionsOutput, error) {
req, out := c.ListReportDefinitionsRequest(input)
return out, req.Send()
}
// ListReportDefinitionsWithContext is the same as ListReportDefinitions with the addition of
// the ability to pass a context and additional request options.
//
// See ListReportDefinitions for details on how to use this API operation.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *ApplicationCostProfiler) ListReportDefinitionsWithContext(ctx aws.Context, input *ListReportDefinitionsInput, opts ...request.Option) (*ListReportDefinitionsOutput, error) {
req, out := c.ListReportDefinitionsRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
// ListReportDefinitionsPages iterates over the pages of a ListReportDefinitions operation,
// calling the "fn" function with the response data for each page. To stop
// iterating, return false from the fn function.
//
// See ListReportDefinitions method for more information on how to use this operation.
//
// Note: This operation can generate multiple requests to a service.
//
// // Example iterating over at most 3 pages of a ListReportDefinitions operation.
// pageNum := 0
// err := client.ListReportDefinitionsPages(params,
// func(page *applicationcostprofiler.ListReportDefinitionsOutput, lastPage bool) bool {
// pageNum++
// fmt.Println(page)
// return pageNum <= 3
// })
func (c *ApplicationCostProfiler) ListReportDefinitionsPages(input *ListReportDefinitionsInput, fn func(*ListReportDefinitionsOutput, bool) bool) error {
return c.ListReportDefinitionsPagesWithContext(aws.BackgroundContext(), input, fn)
}
// ListReportDefinitionsPagesWithContext same as ListReportDefinitionsPages except
// it takes a Context and allows setting request options on the pages.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *ApplicationCostProfiler) ListReportDefinitionsPagesWithContext(ctx aws.Context, input *ListReportDefinitionsInput, fn func(*ListReportDefinitionsOutput, bool) bool, opts ...request.Option) error {
p := request.Pagination{
NewRequest: func() (*request.Request, error) {
var inCpy *ListReportDefinitionsInput
if input != nil {
tmp := *input
inCpy = &tmp
}
req, _ := c.ListReportDefinitionsRequest(inCpy)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return req, nil
},
}
for p.Next() {
if !fn(p.Page().(*ListReportDefinitionsOutput), !p.HasNextPage()) {
break
}
}
return p.Err()
}
const opPutReportDefinition = "PutReportDefinition"
// PutReportDefinitionRequest generates a "aws/request.Request" representing the
// client's request for the PutReportDefinition operation. The "output" return
// value will be populated with the request's response once the request completes
// successfully.
//
// Use "Send" method on the returned Request to send the API call to the service.
// the "output" return value is not valid until after Send returns without error.
//
// See PutReportDefinition for more information on using the PutReportDefinition
// API call, and error handling.
//
// This method is useful when you want to inject custom logic or configuration
// into the SDK's request lifecycle. Such as custom headers, or retry logic.
//
// // Example sending a request using the PutReportDefinitionRequest method.
// req, resp := client.PutReportDefinitionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/AWSApplicationCostProfiler-2020-09-10/PutReportDefinition
func (c *ApplicationCostProfiler) PutReportDefinitionRequest(input *PutReportDefinitionInput) (req *request.Request, output *PutReportDefinitionOutput) {
op := &request.Operation{
Name: opPutReportDefinition,
HTTPMethod: "POST",
HTTPPath: "/reportDefinition",
}
if input == nil {
input = &PutReportDefinitionInput{}
}
output = &PutReportDefinitionOutput{}
req = c.newRequest(op, input, output)
return
}
// PutReportDefinition API operation for AWS Application Cost Profiler.
//
// Creates the report definition for a report in Application Cost Profiler.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Application Cost Profiler's
// API operation PutReportDefinition for usage and error information.
//
// Returned Error Types:
//
// - InternalServerException
// An internal server error occurred. Retry your request.
//
// - ThrottlingException
// The calls to AWS Application Cost Profiler API are throttled. The request
// was denied.
//
// - ValidationException
// The input fails to satisfy the constraints for the API.
//
// - AccessDeniedException
// You do not have permission to perform this action.
//
// - ServiceQuotaExceededException
// Your request exceeds one or more of the service quotas.
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/AWSApplicationCostProfiler-2020-09-10/PutReportDefinition
func (c *ApplicationCostProfiler) PutReportDefinition(input *PutReportDefinitionInput) (*PutReportDefinitionOutput, error) {
req, out := c.PutReportDefinitionRequest(input)
return out, req.Send()
}
// PutReportDefinitionWithContext is the same as PutReportDefinition with the addition of
// the ability to pass a context and additional request options.
//
// See PutReportDefinition for details on how to use this API operation.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *ApplicationCostProfiler) PutReportDefinitionWithContext(ctx aws.Context, input *PutReportDefinitionInput, opts ...request.Option) (*PutReportDefinitionOutput, error) {
req, out := c.PutReportDefinitionRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
const opUpdateReportDefinition = "UpdateReportDefinition"
// UpdateReportDefinitionRequest generates a "aws/request.Request" representing the
// client's request for the UpdateReportDefinition operation. The "output" return
// value will be populated with the request's response once the request completes
// successfully.
//
// Use "Send" method on the returned Request to send the API call to the service.
// the "output" return value is not valid until after Send returns without error.
//
// See UpdateReportDefinition for more information on using the UpdateReportDefinition
// API call, and error handling.
//
// This method is useful when you want to inject custom logic or configuration
// into the SDK's request lifecycle. Such as custom headers, or retry logic.
//
// // Example sending a request using the UpdateReportDefinitionRequest method.
// req, resp := client.UpdateReportDefinitionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/AWSApplicationCostProfiler-2020-09-10/UpdateReportDefinition
func (c *ApplicationCostProfiler) UpdateReportDefinitionRequest(input *UpdateReportDefinitionInput) (req *request.Request, output *UpdateReportDefinitionOutput) {
op := &request.Operation{
Name: opUpdateReportDefinition,
HTTPMethod: "PUT",
HTTPPath: "/reportDefinition/{reportId}",
}
if input == nil {
input = &UpdateReportDefinitionInput{}
}
output = &UpdateReportDefinitionOutput{}
req = c.newRequest(op, input, output)
return
}
// UpdateReportDefinition API operation for AWS Application Cost Profiler.
//
// Updates existing report in AWS Application Cost Profiler.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Application Cost Profiler's
// API operation UpdateReportDefinition for usage and error information.
//
// Returned Error Types:
//
// - InternalServerException
// An internal server error occurred. Retry your request.
//
// - ThrottlingException
// The calls to AWS Application Cost Profiler API are throttled. The request
// was denied.
//
// - ValidationException
// The input fails to satisfy the constraints for the API.
//
// - AccessDeniedException
// You do not have permission to perform this action.
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/AWSApplicationCostProfiler-2020-09-10/UpdateReportDefinition
func (c *ApplicationCostProfiler) UpdateReportDefinition(input *UpdateReportDefinitionInput) (*UpdateReportDefinitionOutput, error) {
req, out := c.UpdateReportDefinitionRequest(input)
return out, req.Send()
}
// UpdateReportDefinitionWithContext is the same as UpdateReportDefinition with the addition of
// the ability to pass a context and additional request options.
//
// See UpdateReportDefinition for details on how to use this API operation.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *ApplicationCostProfiler) UpdateReportDefinitionWithContext(ctx aws.Context, input *UpdateReportDefinitionInput, opts ...request.Option) (*UpdateReportDefinitionOutput, error) {
req, out := c.UpdateReportDefinitionRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
// You do not have permission to perform this action.
type AccessDeniedException struct {
_ struct{} `type:"structure"`
RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`
Message_ *string `locationName:"message" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s AccessDeniedException) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s AccessDeniedException) GoString() string {
return s.String()
}
func newErrorAccessDeniedException(v protocol.ResponseMetadata) error {
return &AccessDeniedException{
RespMetadata: v,
}
}
// Code returns the exception type name.
func (s *AccessDeniedException) Code() string {
return "AccessDeniedException"
}
// Message returns the exception's message.
func (s *AccessDeniedException) Message() string {
if s.Message_ != nil {
return *s.Message_
}
return ""
}
// OrigErr always returns nil, satisfies awserr.Error interface.
func (s *AccessDeniedException) OrigErr() error {
return nil
}
func (s *AccessDeniedException) Error() string {
return fmt.Sprintf("%s: %s", s.Code(), s.Message())
}
// Status code returns the HTTP status code for the request's response error.
func (s *AccessDeniedException) StatusCode() int {
return s.RespMetadata.StatusCode
}
// RequestID returns the service's response RequestID for request.
func (s *AccessDeniedException) RequestID() string {
return s.RespMetadata.RequestID
}
type DeleteReportDefinitionInput struct {
_ struct{} `type:"structure" nopayload:"true"`
// Required. ID of the report to delete.
//
// ReportId is a required field
ReportId *string `location:"uri" locationName:"reportId" min:"1" type:"string" required:"true"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s DeleteReportDefinitionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s DeleteReportDefinitionInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DeleteReportDefinitionInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DeleteReportDefinitionInput"}
if s.ReportId == nil {
invalidParams.Add(request.NewErrParamRequired("ReportId"))
}
if s.ReportId != nil && len(*s.ReportId) < 1 {
invalidParams.Add(request.NewErrParamMinLen("ReportId", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetReportId sets the ReportId field's value.
func (s *DeleteReportDefinitionInput) SetReportId(v string) *DeleteReportDefinitionInput {
s.ReportId = &v
return s
}
type DeleteReportDefinitionOutput struct {
_ struct{} `type:"structure"`
// ID of the report that was deleted.
ReportId *string `locationName:"reportId" min:"1" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s DeleteReportDefinitionOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s DeleteReportDefinitionOutput) GoString() string {
return s.String()
}
// SetReportId sets the ReportId field's value.
func (s *DeleteReportDefinitionOutput) SetReportId(v string) *DeleteReportDefinitionOutput {
s.ReportId = &v
return s
}
type GetReportDefinitionInput struct {
_ struct{} `type:"structure" nopayload:"true"`
// ID of the report to retrieve.
//
// ReportId is a required field
ReportId *string `location:"uri" locationName:"reportId" min:"1" type:"string" required:"true"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s GetReportDefinitionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s GetReportDefinitionInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *GetReportDefinitionInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "GetReportDefinitionInput"}
if s.ReportId == nil {
invalidParams.Add(request.NewErrParamRequired("ReportId"))
}
if s.ReportId != nil && len(*s.ReportId) < 1 {
invalidParams.Add(request.NewErrParamMinLen("ReportId", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetReportId sets the ReportId field's value.
func (s *GetReportDefinitionInput) SetReportId(v string) *GetReportDefinitionInput {
s.ReportId = &v
return s
}
type GetReportDefinitionOutput struct {
_ struct{} `type:"structure"`
// Timestamp (milliseconds) when this report definition was created.
//
// CreatedAt is a required field
CreatedAt *time.Time `locationName:"createdAt" type:"timestamp" required:"true"`
// Amazon Simple Storage Service (Amazon S3) location where the report is uploaded.
//
// DestinationS3Location is a required field
DestinationS3Location *S3Location `locationName:"destinationS3Location" type:"structure" required:"true"`
// Format of the generated report.
//
// Format is a required field
Format *string `locationName:"format" type:"string" required:"true" enum:"Format"`
// Timestamp (milliseconds) when this report definition was last updated.
//
// LastUpdated is a required field
LastUpdated *time.Time `locationName:"lastUpdated" type:"timestamp" required:"true"`
// Description of the report.
//
// ReportDescription is a required field
ReportDescription *string `locationName:"reportDescription" min:"1" type:"string" required:"true"`
// Cadence used to generate the report.
//
// ReportFrequency is a required field
ReportFrequency *string `locationName:"reportFrequency" type:"string" required:"true" enum:"ReportFrequency"`
// ID of the report retrieved.
//
// ReportId is a required field
ReportId *string `locationName:"reportId" min:"1" type:"string" required:"true"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s GetReportDefinitionOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s GetReportDefinitionOutput) GoString() string {
return s.String()
}
// SetCreatedAt sets the CreatedAt field's value.
func (s *GetReportDefinitionOutput) SetCreatedAt(v time.Time) *GetReportDefinitionOutput {
s.CreatedAt = &v
return s
}
// SetDestinationS3Location sets the DestinationS3Location field's value.
func (s *GetReportDefinitionOutput) SetDestinationS3Location(v *S3Location) *GetReportDefinitionOutput {
s.DestinationS3Location = v
return s
}
// SetFormat sets the Format field's value.
func (s *GetReportDefinitionOutput) SetFormat(v string) *GetReportDefinitionOutput {
s.Format = &v
return s
}
// SetLastUpdated sets the LastUpdated field's value.
func (s *GetReportDefinitionOutput) SetLastUpdated(v time.Time) *GetReportDefinitionOutput {
s.LastUpdated = &v
return s
}
// SetReportDescription sets the ReportDescription field's value.
func (s *GetReportDefinitionOutput) SetReportDescription(v string) *GetReportDefinitionOutput {
s.ReportDescription = &v
return s
}
// SetReportFrequency sets the ReportFrequency field's value.
func (s *GetReportDefinitionOutput) SetReportFrequency(v string) *GetReportDefinitionOutput {
s.ReportFrequency = &v
return s
}
// SetReportId sets the ReportId field's value.
func (s *GetReportDefinitionOutput) SetReportId(v string) *GetReportDefinitionOutput {
s.ReportId = &v
return s
}
type ImportApplicationUsageInput struct {
_ struct{} `type:"structure"`
// Amazon S3 location to import application usage data from.
//
// SourceS3Location is a required field
SourceS3Location *SourceS3Location `locationName:"sourceS3Location" type:"structure" required:"true"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ImportApplicationUsageInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ImportApplicationUsageInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *ImportApplicationUsageInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "ImportApplicationUsageInput"}
if s.SourceS3Location == nil {
invalidParams.Add(request.NewErrParamRequired("SourceS3Location"))
}
if s.SourceS3Location != nil {
if err := s.SourceS3Location.Validate(); err != nil {
invalidParams.AddNested("SourceS3Location", err.(request.ErrInvalidParams))
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetSourceS3Location sets the SourceS3Location field's value.
func (s *ImportApplicationUsageInput) SetSourceS3Location(v *SourceS3Location) *ImportApplicationUsageInput {
s.SourceS3Location = v
return s
}
type ImportApplicationUsageOutput struct {
_ struct{} `type:"structure"`
// ID of the import request.
//
// ImportId is a required field
ImportId *string `locationName:"importId" min:"1" type:"string" required:"true"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ImportApplicationUsageOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ImportApplicationUsageOutput) GoString() string {
return s.String()
}
// SetImportId sets the ImportId field's value.
func (s *ImportApplicationUsageOutput) SetImportId(v string) *ImportApplicationUsageOutput {
s.ImportId = &v
return s
}
// An internal server error occurred. Retry your request.
type InternalServerException struct {
_ struct{} `type:"structure"`
RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`
Message_ *string `locationName:"message" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s InternalServerException) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s InternalServerException) GoString() string {
return s.String()
}
func newErrorInternalServerException(v protocol.ResponseMetadata) error {
return &InternalServerException{
RespMetadata: v,
}
}
// Code returns the exception type name.
func (s *InternalServerException) Code() string {
return "InternalServerException"
}
// Message returns the exception's message.
func (s *InternalServerException) Message() string {
if s.Message_ != nil {
return *s.Message_
}
return ""
}
// OrigErr always returns nil, satisfies awserr.Error interface.
func (s *InternalServerException) OrigErr() error {
return nil
}
func (s *InternalServerException) Error() string {
return fmt.Sprintf("%s: %s", s.Code(), s.Message())
}
// Status code returns the HTTP status code for the request's response error.
func (s *InternalServerException) StatusCode() int {
return s.RespMetadata.StatusCode
}
// RequestID returns the service's response RequestID for request.
func (s *InternalServerException) RequestID() string {
return s.RespMetadata.RequestID
}
type ListReportDefinitionsInput struct {
_ struct{} `type:"structure" nopayload:"true"`
// The maximum number of results to return.
MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"`
// The token value from a previous call to access the next page of results.
NextToken *string `location:"querystring" locationName:"nextToken" min:"1" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ListReportDefinitionsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ListReportDefinitionsInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *ListReportDefinitionsInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "ListReportDefinitionsInput"}
if s.MaxResults != nil && *s.MaxResults < 1 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1))
}
if s.NextToken != nil && len(*s.NextToken) < 1 {
invalidParams.Add(request.NewErrParamMinLen("NextToken", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetMaxResults sets the MaxResults field's value.
func (s *ListReportDefinitionsInput) SetMaxResults(v int64) *ListReportDefinitionsInput {
s.MaxResults = &v
return s
}
// SetNextToken sets the NextToken field's value.
func (s *ListReportDefinitionsInput) SetNextToken(v string) *ListReportDefinitionsInput {
s.NextToken = &v
return s
}
type ListReportDefinitionsOutput struct {
_ struct{} `type:"structure"`
// The value of the next token, if it exists. Null if there are no more results.
NextToken *string `locationName:"nextToken" min:"1" type:"string"`
// The retrieved reports.
ReportDefinitions []*ReportDefinition `locationName:"reportDefinitions" type:"list"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ListReportDefinitionsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ListReportDefinitionsOutput) GoString() string {
return s.String()
}
// SetNextToken sets the NextToken field's value.
func (s *ListReportDefinitionsOutput) SetNextToken(v string) *ListReportDefinitionsOutput {
s.NextToken = &v
return s
}
// SetReportDefinitions sets the ReportDefinitions field's value.
func (s *ListReportDefinitionsOutput) SetReportDefinitions(v []*ReportDefinition) *ListReportDefinitionsOutput {
s.ReportDefinitions = v
return s
}
type PutReportDefinitionInput struct {
_ struct{} `type:"structure"`
// Required. Amazon Simple Storage Service (Amazon S3) location where Application
// Cost Profiler uploads the report.
//
// DestinationS3Location is a required field
DestinationS3Location *S3Location `locationName:"destinationS3Location" type:"structure" required:"true"`
// Required. The format to use for the generated report.
//
// Format is a required field
Format *string `locationName:"format" type:"string" required:"true" enum:"Format"`
// Required. Description of the report.
//
// ReportDescription is a required field
ReportDescription *string `locationName:"reportDescription" min:"1" type:"string" required:"true"`
// Required. The cadence to generate the report.
//
// ReportFrequency is a required field
ReportFrequency *string `locationName:"reportFrequency" type:"string" required:"true" enum:"ReportFrequency"`
// Required. ID of the report. You can choose any valid string matching the
// pattern for the ID.
//
// ReportId is a required field
ReportId *string `locationName:"reportId" min:"1" type:"string" required:"true"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s PutReportDefinitionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s PutReportDefinitionInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *PutReportDefinitionInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "PutReportDefinitionInput"}
if s.DestinationS3Location == nil {
invalidParams.Add(request.NewErrParamRequired("DestinationS3Location"))
}
if s.Format == nil {
invalidParams.Add(request.NewErrParamRequired("Format"))
}
if s.ReportDescription == nil {
invalidParams.Add(request.NewErrParamRequired("ReportDescription"))
}
if s.ReportDescription != nil && len(*s.ReportDescription) < 1 {
invalidParams.Add(request.NewErrParamMinLen("ReportDescription", 1))
}
if s.ReportFrequency == nil {
invalidParams.Add(request.NewErrParamRequired("ReportFrequency"))
}
if s.ReportId == nil {
invalidParams.Add(request.NewErrParamRequired("ReportId"))
}
if s.ReportId != nil && len(*s.ReportId) < 1 {
invalidParams.Add(request.NewErrParamMinLen("ReportId", 1))
}
if s.DestinationS3Location != nil {
if err := s.DestinationS3Location.Validate(); err != nil {
invalidParams.AddNested("DestinationS3Location", err.(request.ErrInvalidParams))
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetDestinationS3Location sets the DestinationS3Location field's value.
func (s *PutReportDefinitionInput) SetDestinationS3Location(v *S3Location) *PutReportDefinitionInput {
s.DestinationS3Location = v
return s
}
// SetFormat sets the Format field's value.
func (s *PutReportDefinitionInput) SetFormat(v string) *PutReportDefinitionInput {
s.Format = &v
return s
}
// SetReportDescription sets the ReportDescription field's value.
func (s *PutReportDefinitionInput) SetReportDescription(v string) *PutReportDefinitionInput {
s.ReportDescription = &v
return s
}
// SetReportFrequency sets the ReportFrequency field's value.
func (s *PutReportDefinitionInput) SetReportFrequency(v string) *PutReportDefinitionInput {
s.ReportFrequency = &v
return s
}
// SetReportId sets the ReportId field's value.
func (s *PutReportDefinitionInput) SetReportId(v string) *PutReportDefinitionInput {
s.ReportId = &v
return s
}
type PutReportDefinitionOutput struct {
_ struct{} `type:"structure"`
// ID of the report.
ReportId *string `locationName:"reportId" min:"1" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s PutReportDefinitionOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s PutReportDefinitionOutput) GoString() string {
return s.String()
}
// SetReportId sets the ReportId field's value.
func (s *PutReportDefinitionOutput) SetReportId(v string) *PutReportDefinitionOutput {
s.ReportId = &v
return s
}
// The configuration of a report in AWS Application Cost Profiler.
type ReportDefinition struct {
_ struct{} `type:"structure"`
// Timestamp (milliseconds) when this report definition was created.
CreatedAt *time.Time `locationName:"createdAt" type:"timestamp"`
// The location in Amazon Simple Storage Service (Amazon S3) the reports should
// be saved to.
DestinationS3Location *S3Location `locationName:"destinationS3Location" type:"structure"`
// The format used for the generated reports.
Format *string `locationName:"format" type:"string" enum:"Format"`
// Timestamp (milliseconds) when this report definition was last updated.
LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp"`
// Description of the report
ReportDescription *string `locationName:"reportDescription" min:"1" type:"string"`
// The cadence at which the report is generated.
ReportFrequency *string `locationName:"reportFrequency" type:"string" enum:"ReportFrequency"`
// The ID of the report.
ReportId *string `locationName:"reportId" min:"1" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ReportDefinition) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ReportDefinition) GoString() string {
return s.String()
}
// SetCreatedAt sets the CreatedAt field's value.
func (s *ReportDefinition) SetCreatedAt(v time.Time) *ReportDefinition {
s.CreatedAt = &v
return s
}
// SetDestinationS3Location sets the DestinationS3Location field's value.
func (s *ReportDefinition) SetDestinationS3Location(v *S3Location) *ReportDefinition {
s.DestinationS3Location = v
return s
}
// SetFormat sets the Format field's value.
func (s *ReportDefinition) SetFormat(v string) *ReportDefinition {
s.Format = &v
return s
}
// SetLastUpdatedAt sets the LastUpdatedAt field's value.
func (s *ReportDefinition) SetLastUpdatedAt(v time.Time) *ReportDefinition {
s.LastUpdatedAt = &v
return s
}
// SetReportDescription sets the ReportDescription field's value.
func (s *ReportDefinition) SetReportDescription(v string) *ReportDefinition {
s.ReportDescription = &v
return s
}
// SetReportFrequency sets the ReportFrequency field's value.
func (s *ReportDefinition) SetReportFrequency(v string) *ReportDefinition {
s.ReportFrequency = &v
return s
}
// SetReportId sets the ReportId field's value.
func (s *ReportDefinition) SetReportId(v string) *ReportDefinition {
s.ReportId = &v
return s
}
// Represents the Amazon Simple Storage Service (Amazon S3) location where AWS
// Application Cost Profiler reports are generated and then written to.
type S3Location struct {
_ struct{} `type:"structure"`
// Name of the S3 bucket.
//
// Bucket is a required field
Bucket *string `locationName:"bucket" min:"3" type:"string" required:"true"`
// Prefix for the location to write to.
//
// Prefix is a required field
Prefix *string `locationName:"prefix" min:"1" type:"string" required:"true"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s S3Location) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s S3Location) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *S3Location) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "S3Location"}
if s.Bucket == nil {
invalidParams.Add(request.NewErrParamRequired("Bucket"))
}
if s.Bucket != nil && len(*s.Bucket) < 3 {
invalidParams.Add(request.NewErrParamMinLen("Bucket", 3))
}
if s.Prefix == nil {
invalidParams.Add(request.NewErrParamRequired("Prefix"))
}
if s.Prefix != nil && len(*s.Prefix) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Prefix", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetBucket sets the Bucket field's value.
func (s *S3Location) SetBucket(v string) *S3Location {
s.Bucket = &v
return s
}
// SetPrefix sets the Prefix field's value.
func (s *S3Location) SetPrefix(v string) *S3Location {
s.Prefix = &v
return s
}
// Your request exceeds one or more of the service quotas.
type ServiceQuotaExceededException struct {
_ struct{} `type:"structure"`
RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`
Message_ *string `locationName:"message" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ServiceQuotaExceededException) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ServiceQuotaExceededException) GoString() string {
return s.String()
}
func newErrorServiceQuotaExceededException(v protocol.ResponseMetadata) error {
return &ServiceQuotaExceededException{
RespMetadata: v,
}
}
// Code returns the exception type name.
func (s *ServiceQuotaExceededException) Code() string {
return "ServiceQuotaExceededException"
}
// Message returns the exception's message.
func (s *ServiceQuotaExceededException) Message() string {
if s.Message_ != nil {
return *s.Message_
}
return ""
}
// OrigErr always returns nil, satisfies awserr.Error interface.
func (s *ServiceQuotaExceededException) OrigErr() error {
return nil
}
func (s *ServiceQuotaExceededException) Error() string {
return fmt.Sprintf("%s: %s", s.Code(), s.Message())
}
// Status code returns the HTTP status code for the request's response error.
func (s *ServiceQuotaExceededException) StatusCode() int {
return s.RespMetadata.StatusCode
}
// RequestID returns the service's response RequestID for request.
func (s *ServiceQuotaExceededException) RequestID() string {
return s.RespMetadata.RequestID
}
// Represents the Amazon Simple Storage Service (Amazon S3) location where usage
// data is read from.
type SourceS3Location struct {
_ struct{} `type:"structure"`
// Name of the bucket.
//
// Bucket is a required field
Bucket *string `locationName:"bucket" min:"3" type:"string" required:"true"`
// Key of the object.
//
// Key is a required field
Key *string `locationName:"key" min:"1" type:"string" required:"true"`
// Region of the bucket. Only required for Regions that are disabled by default.
// For more infomration about Regions that are disabled by default, see Enabling
// a Region (https://docs.aws.amazon.com/general/latest/gr/rande-manage.html#rande-manage-enable)
// in the AWS General Reference guide.
Region *string `locationName:"region" type:"string" enum:"S3BucketRegion"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s SourceS3Location) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s SourceS3Location) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *SourceS3Location) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "SourceS3Location"}
if s.Bucket == nil {
invalidParams.Add(request.NewErrParamRequired("Bucket"))
}
if s.Bucket != nil && len(*s.Bucket) < 3 {
invalidParams.Add(request.NewErrParamMinLen("Bucket", 3))
}
if s.Key == nil {
invalidParams.Add(request.NewErrParamRequired("Key"))
}
if s.Key != nil && len(*s.Key) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Key", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetBucket sets the Bucket field's value.
func (s *SourceS3Location) SetBucket(v string) *SourceS3Location {
s.Bucket = &v
return s
}
// SetKey sets the Key field's value.
func (s *SourceS3Location) SetKey(v string) *SourceS3Location {
s.Key = &v
return s
}
// SetRegion sets the Region field's value.
func (s *SourceS3Location) SetRegion(v string) *SourceS3Location {
s.Region = &v
return s
}
// The calls to AWS Application Cost Profiler API are throttled. The request
// was denied.
type ThrottlingException struct {
_ struct{} `type:"structure"`
RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`
Message_ *string `locationName:"message" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ThrottlingException) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ThrottlingException) GoString() string {
return s.String()
}
func newErrorThrottlingException(v protocol.ResponseMetadata) error {
return &ThrottlingException{
RespMetadata: v,
}
}
// Code returns the exception type name.
func (s *ThrottlingException) Code() string {
return "ThrottlingException"
}
// Message returns the exception's message.
func (s *ThrottlingException) Message() string {
if s.Message_ != nil {
return *s.Message_
}
return ""
}
// OrigErr always returns nil, satisfies awserr.Error interface.
func (s *ThrottlingException) OrigErr() error {
return nil
}
func (s *ThrottlingException) Error() string {
return fmt.Sprintf("%s: %s", s.Code(), s.Message())
}
// Status code returns the HTTP status code for the request's response error.
func (s *ThrottlingException) StatusCode() int {
return s.RespMetadata.StatusCode
}
// RequestID returns the service's response RequestID for request.
func (s *ThrottlingException) RequestID() string {
return s.RespMetadata.RequestID
}
type UpdateReportDefinitionInput struct {
_ struct{} `type:"structure"`
// Required. Amazon Simple Storage Service (Amazon S3) location where Application
// Cost Profiler uploads the report.
//
// DestinationS3Location is a required field
DestinationS3Location *S3Location `locationName:"destinationS3Location" type:"structure" required:"true"`
// Required. The format to use for the generated report.
//
// Format is a required field
Format *string `locationName:"format" type:"string" required:"true" enum:"Format"`
// Required. Description of the report.
//
// ReportDescription is a required field
ReportDescription *string `locationName:"reportDescription" min:"1" type:"string" required:"true"`
// Required. The cadence to generate the report.
//
// ReportFrequency is a required field
ReportFrequency *string `locationName:"reportFrequency" type:"string" required:"true" enum:"ReportFrequency"`
// Required. ID of the report to update.
//
// ReportId is a required field
ReportId *string `location:"uri" locationName:"reportId" min:"1" type:"string" required:"true"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s UpdateReportDefinitionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s UpdateReportDefinitionInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *UpdateReportDefinitionInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "UpdateReportDefinitionInput"}
if s.DestinationS3Location == nil {
invalidParams.Add(request.NewErrParamRequired("DestinationS3Location"))
}
if s.Format == nil {
invalidParams.Add(request.NewErrParamRequired("Format"))
}
if s.ReportDescription == nil {
invalidParams.Add(request.NewErrParamRequired("ReportDescription"))
}
if s.ReportDescription != nil && len(*s.ReportDescription) < 1 {
invalidParams.Add(request.NewErrParamMinLen("ReportDescription", 1))
}
if s.ReportFrequency == nil {
invalidParams.Add(request.NewErrParamRequired("ReportFrequency"))
}
if s.ReportId == nil {
invalidParams.Add(request.NewErrParamRequired("ReportId"))
}
if s.ReportId != nil && len(*s.ReportId) < 1 {
invalidParams.Add(request.NewErrParamMinLen("ReportId", 1))
}
if s.DestinationS3Location != nil {
if err := s.DestinationS3Location.Validate(); err != nil {
invalidParams.AddNested("DestinationS3Location", err.(request.ErrInvalidParams))
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetDestinationS3Location sets the DestinationS3Location field's value.
func (s *UpdateReportDefinitionInput) SetDestinationS3Location(v *S3Location) *UpdateReportDefinitionInput {
s.DestinationS3Location = v
return s
}
// SetFormat sets the Format field's value.
func (s *UpdateReportDefinitionInput) SetFormat(v string) *UpdateReportDefinitionInput {
s.Format = &v
return s
}
// SetReportDescription sets the ReportDescription field's value.
func (s *UpdateReportDefinitionInput) SetReportDescription(v string) *UpdateReportDefinitionInput {
s.ReportDescription = &v
return s
}
// SetReportFrequency sets the ReportFrequency field's value.
func (s *UpdateReportDefinitionInput) SetReportFrequency(v string) *UpdateReportDefinitionInput {
s.ReportFrequency = &v
return s
}
// SetReportId sets the ReportId field's value.
func (s *UpdateReportDefinitionInput) SetReportId(v string) *UpdateReportDefinitionInput {
s.ReportId = &v
return s
}
type UpdateReportDefinitionOutput struct {
_ struct{} `type:"structure"`
// ID of the report.
ReportId *string `locationName:"reportId" min:"1" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s UpdateReportDefinitionOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s UpdateReportDefinitionOutput) GoString() string {
return s.String()
}
// SetReportId sets the ReportId field's value.
func (s *UpdateReportDefinitionOutput) SetReportId(v string) *UpdateReportDefinitionOutput {
s.ReportId = &v
return s
}
// The input fails to satisfy the constraints for the API.
type ValidationException struct {
_ struct{} `type:"structure"`
RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`
Message_ *string `locationName:"message" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ValidationException) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ValidationException) GoString() string {
return s.String()
}
func newErrorValidationException(v protocol.ResponseMetadata) error {
return &ValidationException{
RespMetadata: v,
}
}
// Code returns the exception type name.
func (s *ValidationException) Code() string {
return "ValidationException"
}
// Message returns the exception's message.
func (s *ValidationException) Message() string {
if s.Message_ != nil {
return *s.Message_
}
return ""
}
// OrigErr always returns nil, satisfies awserr.Error interface.
func (s *ValidationException) OrigErr() error {
return nil
}
func (s *ValidationException) Error() string {
return fmt.Sprintf("%s: %s", s.Code(), s.Message())
}
// Status code returns the HTTP status code for the request's response error.
func (s *ValidationException) StatusCode() int {
return s.RespMetadata.StatusCode
}
// RequestID returns the service's response RequestID for request.
func (s *ValidationException) RequestID() string {
return s.RespMetadata.RequestID
}
const (
// FormatCsv is a Format enum value
FormatCsv = "CSV"
// FormatParquet is a Format enum value
FormatParquet = "PARQUET"
)
// Format_Values returns all elements of the Format enum
func Format_Values() []string {
return []string{
FormatCsv,
FormatParquet,
}
}
const (
// ReportFrequencyMonthly is a ReportFrequency enum value
ReportFrequencyMonthly = "MONTHLY"
// ReportFrequencyDaily is a ReportFrequency enum value
ReportFrequencyDaily = "DAILY"
// ReportFrequencyAll is a ReportFrequency enum value
ReportFrequencyAll = "ALL"
)
// ReportFrequency_Values returns all elements of the ReportFrequency enum
func ReportFrequency_Values() []string {
return []string{
ReportFrequencyMonthly,
ReportFrequencyDaily,
ReportFrequencyAll,
}
}
const (
// S3BucketRegionApEast1 is a S3BucketRegion enum value
S3BucketRegionApEast1 = "ap-east-1"
// S3BucketRegionMeSouth1 is a S3BucketRegion enum value
S3BucketRegionMeSouth1 = "me-south-1"
// S3BucketRegionEuSouth1 is a S3BucketRegion enum value
S3BucketRegionEuSouth1 = "eu-south-1"
// S3BucketRegionAfSouth1 is a S3BucketRegion enum value
S3BucketRegionAfSouth1 = "af-south-1"
)
// S3BucketRegion_Values returns all elements of the S3BucketRegion enum
func S3BucketRegion_Values() []string {
return []string{
S3BucketRegionApEast1,
S3BucketRegionMeSouth1,
S3BucketRegionEuSouth1,
S3BucketRegionAfSouth1,
}
}
|