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
|
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package sagemakerfeaturestoreruntime
import (
"fmt"
"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"
"github.com/aws/aws-sdk-go/private/protocol/restjson"
)
const opBatchGetRecord = "BatchGetRecord"
// BatchGetRecordRequest generates a "aws/request.Request" representing the
// client's request for the BatchGetRecord 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 BatchGetRecord for more information on using the BatchGetRecord
// 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 BatchGetRecordRequest method.
// req, resp := client.BatchGetRecordRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/sagemaker-featurestore-runtime-2020-07-01/BatchGetRecord
func (c *SageMakerFeatureStoreRuntime) BatchGetRecordRequest(input *BatchGetRecordInput) (req *request.Request, output *BatchGetRecordOutput) {
op := &request.Operation{
Name: opBatchGetRecord,
HTTPMethod: "POST",
HTTPPath: "/BatchGetRecord",
}
if input == nil {
input = &BatchGetRecordInput{}
}
output = &BatchGetRecordOutput{}
req = c.newRequest(op, input, output)
return
}
// BatchGetRecord API operation for Amazon SageMaker Feature Store Runtime.
//
// Retrieves a batch of Records from a FeatureGroup.
//
// 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 Amazon SageMaker Feature Store Runtime's
// API operation BatchGetRecord for usage and error information.
//
// Returned Error Types:
//
// - ValidationError
// There was an error validating your request.
//
// - InternalFailure
// An internal failure occurred. Try your request again. If the problem persists,
// contact Amazon Web Services customer support.
//
// - ServiceUnavailable
// The service is currently unavailable.
//
// - AccessForbidden
// You do not have permission to perform an action.
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/sagemaker-featurestore-runtime-2020-07-01/BatchGetRecord
func (c *SageMakerFeatureStoreRuntime) BatchGetRecord(input *BatchGetRecordInput) (*BatchGetRecordOutput, error) {
req, out := c.BatchGetRecordRequest(input)
return out, req.Send()
}
// BatchGetRecordWithContext is the same as BatchGetRecord with the addition of
// the ability to pass a context and additional request options.
//
// See BatchGetRecord 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 *SageMakerFeatureStoreRuntime) BatchGetRecordWithContext(ctx aws.Context, input *BatchGetRecordInput, opts ...request.Option) (*BatchGetRecordOutput, error) {
req, out := c.BatchGetRecordRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
const opDeleteRecord = "DeleteRecord"
// DeleteRecordRequest generates a "aws/request.Request" representing the
// client's request for the DeleteRecord 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 DeleteRecord for more information on using the DeleteRecord
// 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 DeleteRecordRequest method.
// req, resp := client.DeleteRecordRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/sagemaker-featurestore-runtime-2020-07-01/DeleteRecord
func (c *SageMakerFeatureStoreRuntime) DeleteRecordRequest(input *DeleteRecordInput) (req *request.Request, output *DeleteRecordOutput) {
op := &request.Operation{
Name: opDeleteRecord,
HTTPMethod: "DELETE",
HTTPPath: "/FeatureGroup/{FeatureGroupName}",
}
if input == nil {
input = &DeleteRecordInput{}
}
output = &DeleteRecordOutput{}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Swap(restjson.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler)
return
}
// DeleteRecord API operation for Amazon SageMaker Feature Store Runtime.
//
// Deletes a Record from a FeatureGroup in the OnlineStore. Feature Store supports
// both SoftDelete and HardDelete. For SoftDelete (default), feature columns
// are set to null and the record is no longer retrievable by GetRecord or BatchGetRecord.
// For HardDelete, the complete Record is removed from the OnlineStore. In both
// cases, Feature Store appends the deleted record marker to the OfflineStore
// with feature values set to null, is_deleted value set to True, and EventTime
// set to the delete input EventTime.
//
// Note that the EventTime specified in DeleteRecord should be set later than
// the EventTime of the existing record in the OnlineStore for that RecordIdentifer.
// If it is not, the deletion does not occur:
//
// - For SoftDelete, the existing (undeleted) record remains in the OnlineStore,
// though the delete record marker is still written to the OfflineStore.
//
// - HardDelete returns EventTime: 400 ValidationException to indicate that
// the delete operation failed. No delete record marker is written to the
// OfflineStore.
//
// 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 Amazon SageMaker Feature Store Runtime's
// API operation DeleteRecord for usage and error information.
//
// Returned Error Types:
//
// - ValidationError
// There was an error validating your request.
//
// - InternalFailure
// An internal failure occurred. Try your request again. If the problem persists,
// contact Amazon Web Services customer support.
//
// - ServiceUnavailable
// The service is currently unavailable.
//
// - AccessForbidden
// You do not have permission to perform an action.
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/sagemaker-featurestore-runtime-2020-07-01/DeleteRecord
func (c *SageMakerFeatureStoreRuntime) DeleteRecord(input *DeleteRecordInput) (*DeleteRecordOutput, error) {
req, out := c.DeleteRecordRequest(input)
return out, req.Send()
}
// DeleteRecordWithContext is the same as DeleteRecord with the addition of
// the ability to pass a context and additional request options.
//
// See DeleteRecord 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 *SageMakerFeatureStoreRuntime) DeleteRecordWithContext(ctx aws.Context, input *DeleteRecordInput, opts ...request.Option) (*DeleteRecordOutput, error) {
req, out := c.DeleteRecordRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
const opGetRecord = "GetRecord"
// GetRecordRequest generates a "aws/request.Request" representing the
// client's request for the GetRecord 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 GetRecord for more information on using the GetRecord
// 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 GetRecordRequest method.
// req, resp := client.GetRecordRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/sagemaker-featurestore-runtime-2020-07-01/GetRecord
func (c *SageMakerFeatureStoreRuntime) GetRecordRequest(input *GetRecordInput) (req *request.Request, output *GetRecordOutput) {
op := &request.Operation{
Name: opGetRecord,
HTTPMethod: "GET",
HTTPPath: "/FeatureGroup/{FeatureGroupName}",
}
if input == nil {
input = &GetRecordInput{}
}
output = &GetRecordOutput{}
req = c.newRequest(op, input, output)
return
}
// GetRecord API operation for Amazon SageMaker Feature Store Runtime.
//
// Use for OnlineStore serving from a FeatureStore. Only the latest records
// stored in the OnlineStore can be retrieved. If no Record with RecordIdentifierValue
// is found, then an empty result is returned.
//
// 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 Amazon SageMaker Feature Store Runtime's
// API operation GetRecord for usage and error information.
//
// Returned Error Types:
//
// - ValidationError
// There was an error validating your request.
//
// - ResourceNotFound
// A resource that is required to perform an action was not found.
//
// - InternalFailure
// An internal failure occurred. Try your request again. If the problem persists,
// contact Amazon Web Services customer support.
//
// - ServiceUnavailable
// The service is currently unavailable.
//
// - AccessForbidden
// You do not have permission to perform an action.
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/sagemaker-featurestore-runtime-2020-07-01/GetRecord
func (c *SageMakerFeatureStoreRuntime) GetRecord(input *GetRecordInput) (*GetRecordOutput, error) {
req, out := c.GetRecordRequest(input)
return out, req.Send()
}
// GetRecordWithContext is the same as GetRecord with the addition of
// the ability to pass a context and additional request options.
//
// See GetRecord 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 *SageMakerFeatureStoreRuntime) GetRecordWithContext(ctx aws.Context, input *GetRecordInput, opts ...request.Option) (*GetRecordOutput, error) {
req, out := c.GetRecordRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
const opPutRecord = "PutRecord"
// PutRecordRequest generates a "aws/request.Request" representing the
// client's request for the PutRecord 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 PutRecord for more information on using the PutRecord
// 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 PutRecordRequest method.
// req, resp := client.PutRecordRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/sagemaker-featurestore-runtime-2020-07-01/PutRecord
func (c *SageMakerFeatureStoreRuntime) PutRecordRequest(input *PutRecordInput) (req *request.Request, output *PutRecordOutput) {
op := &request.Operation{
Name: opPutRecord,
HTTPMethod: "PUT",
HTTPPath: "/FeatureGroup/{FeatureGroupName}",
}
if input == nil {
input = &PutRecordInput{}
}
output = &PutRecordOutput{}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Swap(restjson.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler)
return
}
// PutRecord API operation for Amazon SageMaker Feature Store Runtime.
//
// The PutRecord API is used to ingest a list of Records into your feature group.
//
// If a new record’s EventTime is greater, the new record is written to both
// the OnlineStore and OfflineStore. Otherwise, the record is a historic record
// and it is written only to the OfflineStore.
//
// You can specify the ingestion to be applied to the OnlineStore, OfflineStore,
// or both by using the TargetStores request parameter.
//
// You can set the ingested record to expire at a given time to live (TTL) duration
// after the record’s event time, ExpiresAt = EventTime + TtlDuration, by
// specifying the TtlDuration parameter. A record level TtlDuration is set when
// specifying the TtlDuration parameter using the PutRecord API call. If the
// input TtlDuration is null or unspecified, TtlDuration is set to the default
// feature group level TtlDuration. A record level TtlDuration supersedes the
// group level TtlDuration.
//
// 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 Amazon SageMaker Feature Store Runtime's
// API operation PutRecord for usage and error information.
//
// Returned Error Types:
//
// - ValidationError
// There was an error validating your request.
//
// - InternalFailure
// An internal failure occurred. Try your request again. If the problem persists,
// contact Amazon Web Services customer support.
//
// - ServiceUnavailable
// The service is currently unavailable.
//
// - AccessForbidden
// You do not have permission to perform an action.
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/sagemaker-featurestore-runtime-2020-07-01/PutRecord
func (c *SageMakerFeatureStoreRuntime) PutRecord(input *PutRecordInput) (*PutRecordOutput, error) {
req, out := c.PutRecordRequest(input)
return out, req.Send()
}
// PutRecordWithContext is the same as PutRecord with the addition of
// the ability to pass a context and additional request options.
//
// See PutRecord 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 *SageMakerFeatureStoreRuntime) PutRecordWithContext(ctx aws.Context, input *PutRecordInput, opts ...request.Option) (*PutRecordOutput, error) {
req, out := c.PutRecordRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
// You do not have permission to perform an action.
type AccessForbidden 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 AccessForbidden) 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 AccessForbidden) GoString() string {
return s.String()
}
func newErrorAccessForbidden(v protocol.ResponseMetadata) error {
return &AccessForbidden{
RespMetadata: v,
}
}
// Code returns the exception type name.
func (s *AccessForbidden) Code() string {
return "AccessForbidden"
}
// Message returns the exception's message.
func (s *AccessForbidden) Message() string {
if s.Message_ != nil {
return *s.Message_
}
return ""
}
// OrigErr always returns nil, satisfies awserr.Error interface.
func (s *AccessForbidden) OrigErr() error {
return nil
}
func (s *AccessForbidden) 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 *AccessForbidden) StatusCode() int {
return s.RespMetadata.StatusCode
}
// RequestID returns the service's response RequestID for request.
func (s *AccessForbidden) RequestID() string {
return s.RespMetadata.RequestID
}
// The error that has occurred when attempting to retrieve a batch of Records.
type BatchGetRecordError struct {
_ struct{} `type:"structure"`
// The error code of an error that has occurred when attempting to retrieve
// a batch of Records. For more information on errors, see Errors (https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_feature_store_GetRecord.html#API_feature_store_GetRecord_Errors).
//
// ErrorCode is a required field
ErrorCode *string `type:"string" required:"true"`
// The error message of an error that has occurred when attempting to retrieve
// a record in the batch.
//
// ErrorMessage is a required field
ErrorMessage *string `type:"string" required:"true"`
// The name of the feature group that the record belongs to.
//
// FeatureGroupName is a required field
FeatureGroupName *string `type:"string" required:"true"`
// The value for the RecordIdentifier in string format of a Record from a FeatureGroup
// that is causing an error when attempting to be retrieved.
//
// RecordIdentifierValueAsString is a required field
RecordIdentifierValueAsString *string `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 BatchGetRecordError) 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 BatchGetRecordError) GoString() string {
return s.String()
}
// SetErrorCode sets the ErrorCode field's value.
func (s *BatchGetRecordError) SetErrorCode(v string) *BatchGetRecordError {
s.ErrorCode = &v
return s
}
// SetErrorMessage sets the ErrorMessage field's value.
func (s *BatchGetRecordError) SetErrorMessage(v string) *BatchGetRecordError {
s.ErrorMessage = &v
return s
}
// SetFeatureGroupName sets the FeatureGroupName field's value.
func (s *BatchGetRecordError) SetFeatureGroupName(v string) *BatchGetRecordError {
s.FeatureGroupName = &v
return s
}
// SetRecordIdentifierValueAsString sets the RecordIdentifierValueAsString field's value.
func (s *BatchGetRecordError) SetRecordIdentifierValueAsString(v string) *BatchGetRecordError {
s.RecordIdentifierValueAsString = &v
return s
}
// The identifier that identifies the batch of Records you are retrieving in
// a batch.
type BatchGetRecordIdentifier struct {
_ struct{} `type:"structure"`
// The name or Amazon Resource Name (ARN) of the FeatureGroup containing the
// records you are retrieving in a batch.
//
// FeatureGroupName is a required field
FeatureGroupName *string `min:"1" type:"string" required:"true"`
// List of names of Features to be retrieved. If not specified, the latest value
// for all the Features are returned.
FeatureNames []*string `min:"1" type:"list"`
// The value for a list of record identifiers in string format.
//
// RecordIdentifiersValueAsString is a required field
RecordIdentifiersValueAsString []*string `min:"1" type:"list" 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 BatchGetRecordIdentifier) 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 BatchGetRecordIdentifier) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *BatchGetRecordIdentifier) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "BatchGetRecordIdentifier"}
if s.FeatureGroupName == nil {
invalidParams.Add(request.NewErrParamRequired("FeatureGroupName"))
}
if s.FeatureGroupName != nil && len(*s.FeatureGroupName) < 1 {
invalidParams.Add(request.NewErrParamMinLen("FeatureGroupName", 1))
}
if s.FeatureNames != nil && len(s.FeatureNames) < 1 {
invalidParams.Add(request.NewErrParamMinLen("FeatureNames", 1))
}
if s.RecordIdentifiersValueAsString == nil {
invalidParams.Add(request.NewErrParamRequired("RecordIdentifiersValueAsString"))
}
if s.RecordIdentifiersValueAsString != nil && len(s.RecordIdentifiersValueAsString) < 1 {
invalidParams.Add(request.NewErrParamMinLen("RecordIdentifiersValueAsString", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetFeatureGroupName sets the FeatureGroupName field's value.
func (s *BatchGetRecordIdentifier) SetFeatureGroupName(v string) *BatchGetRecordIdentifier {
s.FeatureGroupName = &v
return s
}
// SetFeatureNames sets the FeatureNames field's value.
func (s *BatchGetRecordIdentifier) SetFeatureNames(v []*string) *BatchGetRecordIdentifier {
s.FeatureNames = v
return s
}
// SetRecordIdentifiersValueAsString sets the RecordIdentifiersValueAsString field's value.
func (s *BatchGetRecordIdentifier) SetRecordIdentifiersValueAsString(v []*string) *BatchGetRecordIdentifier {
s.RecordIdentifiersValueAsString = v
return s
}
type BatchGetRecordInput struct {
_ struct{} `type:"structure"`
// Parameter to request ExpiresAt in response. If Enabled, BatchGetRecord will
// return the value of ExpiresAt, if it is not null. If Disabled and null, BatchGetRecord
// will return null.
ExpirationTimeResponse *string `type:"string" enum:"ExpirationTimeResponse"`
// A list containing the name or Amazon Resource Name (ARN) of the FeatureGroup,
// the list of names of Features to be retrieved, and the corresponding RecordIdentifier
// values as strings.
//
// Identifiers is a required field
Identifiers []*BatchGetRecordIdentifier `min:"1" type:"list" 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 BatchGetRecordInput) 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 BatchGetRecordInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *BatchGetRecordInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "BatchGetRecordInput"}
if s.Identifiers == nil {
invalidParams.Add(request.NewErrParamRequired("Identifiers"))
}
if s.Identifiers != nil && len(s.Identifiers) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Identifiers", 1))
}
if s.Identifiers != nil {
for i, v := range s.Identifiers {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Identifiers", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetExpirationTimeResponse sets the ExpirationTimeResponse field's value.
func (s *BatchGetRecordInput) SetExpirationTimeResponse(v string) *BatchGetRecordInput {
s.ExpirationTimeResponse = &v
return s
}
// SetIdentifiers sets the Identifiers field's value.
func (s *BatchGetRecordInput) SetIdentifiers(v []*BatchGetRecordIdentifier) *BatchGetRecordInput {
s.Identifiers = v
return s
}
type BatchGetRecordOutput struct {
_ struct{} `type:"structure"`
// A list of errors that have occurred when retrieving a batch of Records.
//
// Errors is a required field
Errors []*BatchGetRecordError `type:"list" required:"true"`
// A list of Records you requested to be retrieved in batch.
//
// Records is a required field
Records []*BatchGetRecordResultDetail `type:"list" required:"true"`
// A unprocessed list of FeatureGroup names, with their corresponding RecordIdentifier
// value, and Feature name.
//
// UnprocessedIdentifiers is a required field
UnprocessedIdentifiers []*BatchGetRecordIdentifier `type:"list" 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 BatchGetRecordOutput) 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 BatchGetRecordOutput) GoString() string {
return s.String()
}
// SetErrors sets the Errors field's value.
func (s *BatchGetRecordOutput) SetErrors(v []*BatchGetRecordError) *BatchGetRecordOutput {
s.Errors = v
return s
}
// SetRecords sets the Records field's value.
func (s *BatchGetRecordOutput) SetRecords(v []*BatchGetRecordResultDetail) *BatchGetRecordOutput {
s.Records = v
return s
}
// SetUnprocessedIdentifiers sets the UnprocessedIdentifiers field's value.
func (s *BatchGetRecordOutput) SetUnprocessedIdentifiers(v []*BatchGetRecordIdentifier) *BatchGetRecordOutput {
s.UnprocessedIdentifiers = v
return s
}
// The output of records that have been retrieved in a batch.
type BatchGetRecordResultDetail struct {
_ struct{} `type:"structure"`
// The ExpiresAt ISO string of the requested record.
ExpiresAt *string `type:"string"`
// The FeatureGroupName containing Records you retrieved in a batch.
//
// FeatureGroupName is a required field
FeatureGroupName *string `type:"string" required:"true"`
// The Record retrieved.
//
// Record is a required field
Record []*FeatureValue `min:"1" type:"list" required:"true"`
// The value of the record identifier in string format.
//
// RecordIdentifierValueAsString is a required field
RecordIdentifierValueAsString *string `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 BatchGetRecordResultDetail) 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 BatchGetRecordResultDetail) GoString() string {
return s.String()
}
// SetExpiresAt sets the ExpiresAt field's value.
func (s *BatchGetRecordResultDetail) SetExpiresAt(v string) *BatchGetRecordResultDetail {
s.ExpiresAt = &v
return s
}
// SetFeatureGroupName sets the FeatureGroupName field's value.
func (s *BatchGetRecordResultDetail) SetFeatureGroupName(v string) *BatchGetRecordResultDetail {
s.FeatureGroupName = &v
return s
}
// SetRecord sets the Record field's value.
func (s *BatchGetRecordResultDetail) SetRecord(v []*FeatureValue) *BatchGetRecordResultDetail {
s.Record = v
return s
}
// SetRecordIdentifierValueAsString sets the RecordIdentifierValueAsString field's value.
func (s *BatchGetRecordResultDetail) SetRecordIdentifierValueAsString(v string) *BatchGetRecordResultDetail {
s.RecordIdentifierValueAsString = &v
return s
}
type DeleteRecordInput struct {
_ struct{} `type:"structure" nopayload:"true"`
// The name of the deletion mode for deleting the record. By default, the deletion
// mode is set to SoftDelete.
DeletionMode *string `location:"querystring" locationName:"DeletionMode" type:"string" enum:"DeletionMode"`
// Timestamp indicating when the deletion event occurred. EventTime can be used
// to query data at a certain point in time.
//
// EventTime is a required field
EventTime *string `location:"querystring" locationName:"EventTime" type:"string" required:"true"`
// The name or Amazon Resource Name (ARN) of the feature group to delete the
// record from.
//
// FeatureGroupName is a required field
FeatureGroupName *string `location:"uri" locationName:"FeatureGroupName" min:"1" type:"string" required:"true"`
// The value for the RecordIdentifier that uniquely identifies the record, in
// string format.
//
// RecordIdentifierValueAsString is a required field
RecordIdentifierValueAsString *string `location:"querystring" locationName:"RecordIdentifierValueAsString" type:"string" required:"true"`
// A list of stores from which you're deleting the record. By default, Feature
// Store deletes the record from all of the stores that you're using for the
// FeatureGroup.
TargetStores []*string `location:"querystring" locationName:"TargetStores" min:"1" type:"list" enum:"TargetStore"`
}
// 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 DeleteRecordInput) 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 DeleteRecordInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DeleteRecordInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DeleteRecordInput"}
if s.EventTime == nil {
invalidParams.Add(request.NewErrParamRequired("EventTime"))
}
if s.FeatureGroupName == nil {
invalidParams.Add(request.NewErrParamRequired("FeatureGroupName"))
}
if s.FeatureGroupName != nil && len(*s.FeatureGroupName) < 1 {
invalidParams.Add(request.NewErrParamMinLen("FeatureGroupName", 1))
}
if s.RecordIdentifierValueAsString == nil {
invalidParams.Add(request.NewErrParamRequired("RecordIdentifierValueAsString"))
}
if s.TargetStores != nil && len(s.TargetStores) < 1 {
invalidParams.Add(request.NewErrParamMinLen("TargetStores", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetDeletionMode sets the DeletionMode field's value.
func (s *DeleteRecordInput) SetDeletionMode(v string) *DeleteRecordInput {
s.DeletionMode = &v
return s
}
// SetEventTime sets the EventTime field's value.
func (s *DeleteRecordInput) SetEventTime(v string) *DeleteRecordInput {
s.EventTime = &v
return s
}
// SetFeatureGroupName sets the FeatureGroupName field's value.
func (s *DeleteRecordInput) SetFeatureGroupName(v string) *DeleteRecordInput {
s.FeatureGroupName = &v
return s
}
// SetRecordIdentifierValueAsString sets the RecordIdentifierValueAsString field's value.
func (s *DeleteRecordInput) SetRecordIdentifierValueAsString(v string) *DeleteRecordInput {
s.RecordIdentifierValueAsString = &v
return s
}
// SetTargetStores sets the TargetStores field's value.
func (s *DeleteRecordInput) SetTargetStores(v []*string) *DeleteRecordInput {
s.TargetStores = v
return s
}
type DeleteRecordOutput struct {
_ struct{} `type:"structure"`
}
// 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 DeleteRecordOutput) 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 DeleteRecordOutput) GoString() string {
return s.String()
}
// The value associated with a feature.
type FeatureValue struct {
_ struct{} `type:"structure"`
// The name of a feature that a feature value corresponds to.
//
// FeatureName is a required field
FeatureName *string `min:"1" type:"string" required:"true"`
// The value in string format associated with a feature. Used when your CollectionType
// is None. Note that features types can be String, Integral, or Fractional.
// This value represents all three types as a string.
ValueAsString *string `type:"string"`
// The list of values in string format associated with a feature. Used when
// your CollectionType is a List, Set, or Vector. Note that features types can
// be String, Integral, or Fractional. These values represents all three types
// as a string.
ValueAsStringList []*string `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 FeatureValue) 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 FeatureValue) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *FeatureValue) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "FeatureValue"}
if s.FeatureName == nil {
invalidParams.Add(request.NewErrParamRequired("FeatureName"))
}
if s.FeatureName != nil && len(*s.FeatureName) < 1 {
invalidParams.Add(request.NewErrParamMinLen("FeatureName", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetFeatureName sets the FeatureName field's value.
func (s *FeatureValue) SetFeatureName(v string) *FeatureValue {
s.FeatureName = &v
return s
}
// SetValueAsString sets the ValueAsString field's value.
func (s *FeatureValue) SetValueAsString(v string) *FeatureValue {
s.ValueAsString = &v
return s
}
// SetValueAsStringList sets the ValueAsStringList field's value.
func (s *FeatureValue) SetValueAsStringList(v []*string) *FeatureValue {
s.ValueAsStringList = v
return s
}
type GetRecordInput struct {
_ struct{} `type:"structure" nopayload:"true"`
// Parameter to request ExpiresAt in response. If Enabled, GetRecord will return
// the value of ExpiresAt, if it is not null. If Disabled and null, GetRecord
// will return null.
ExpirationTimeResponse *string `location:"querystring" locationName:"ExpirationTimeResponse" type:"string" enum:"ExpirationTimeResponse"`
// The name or Amazon Resource Name (ARN) of the feature group from which you
// want to retrieve a record.
//
// FeatureGroupName is a required field
FeatureGroupName *string `location:"uri" locationName:"FeatureGroupName" min:"1" type:"string" required:"true"`
// List of names of Features to be retrieved. If not specified, the latest value
// for all the Features are returned.
FeatureNames []*string `location:"querystring" locationName:"FeatureName" min:"1" type:"list"`
// The value that corresponds to RecordIdentifier type and uniquely identifies
// the record in the FeatureGroup.
//
// RecordIdentifierValueAsString is a required field
RecordIdentifierValueAsString *string `location:"querystring" locationName:"RecordIdentifierValueAsString" 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 GetRecordInput) 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 GetRecordInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *GetRecordInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "GetRecordInput"}
if s.FeatureGroupName == nil {
invalidParams.Add(request.NewErrParamRequired("FeatureGroupName"))
}
if s.FeatureGroupName != nil && len(*s.FeatureGroupName) < 1 {
invalidParams.Add(request.NewErrParamMinLen("FeatureGroupName", 1))
}
if s.FeatureNames != nil && len(s.FeatureNames) < 1 {
invalidParams.Add(request.NewErrParamMinLen("FeatureNames", 1))
}
if s.RecordIdentifierValueAsString == nil {
invalidParams.Add(request.NewErrParamRequired("RecordIdentifierValueAsString"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetExpirationTimeResponse sets the ExpirationTimeResponse field's value.
func (s *GetRecordInput) SetExpirationTimeResponse(v string) *GetRecordInput {
s.ExpirationTimeResponse = &v
return s
}
// SetFeatureGroupName sets the FeatureGroupName field's value.
func (s *GetRecordInput) SetFeatureGroupName(v string) *GetRecordInput {
s.FeatureGroupName = &v
return s
}
// SetFeatureNames sets the FeatureNames field's value.
func (s *GetRecordInput) SetFeatureNames(v []*string) *GetRecordInput {
s.FeatureNames = v
return s
}
// SetRecordIdentifierValueAsString sets the RecordIdentifierValueAsString field's value.
func (s *GetRecordInput) SetRecordIdentifierValueAsString(v string) *GetRecordInput {
s.RecordIdentifierValueAsString = &v
return s
}
type GetRecordOutput struct {
_ struct{} `type:"structure"`
// The ExpiresAt ISO string of the requested record.
ExpiresAt *string `type:"string"`
// The record you requested. A list of FeatureValues.
Record []*FeatureValue `min:"1" 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 GetRecordOutput) 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 GetRecordOutput) GoString() string {
return s.String()
}
// SetExpiresAt sets the ExpiresAt field's value.
func (s *GetRecordOutput) SetExpiresAt(v string) *GetRecordOutput {
s.ExpiresAt = &v
return s
}
// SetRecord sets the Record field's value.
func (s *GetRecordOutput) SetRecord(v []*FeatureValue) *GetRecordOutput {
s.Record = v
return s
}
// An internal failure occurred. Try your request again. If the problem persists,
// contact Amazon Web Services customer support.
type InternalFailure 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 InternalFailure) 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 InternalFailure) GoString() string {
return s.String()
}
func newErrorInternalFailure(v protocol.ResponseMetadata) error {
return &InternalFailure{
RespMetadata: v,
}
}
// Code returns the exception type name.
func (s *InternalFailure) Code() string {
return "InternalFailure"
}
// Message returns the exception's message.
func (s *InternalFailure) Message() string {
if s.Message_ != nil {
return *s.Message_
}
return ""
}
// OrigErr always returns nil, satisfies awserr.Error interface.
func (s *InternalFailure) OrigErr() error {
return nil
}
func (s *InternalFailure) 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 *InternalFailure) StatusCode() int {
return s.RespMetadata.StatusCode
}
// RequestID returns the service's response RequestID for request.
func (s *InternalFailure) RequestID() string {
return s.RespMetadata.RequestID
}
type PutRecordInput struct {
_ struct{} `type:"structure"`
// The name or Amazon Resource Name (ARN) of the feature group that you want
// to insert the record into.
//
// FeatureGroupName is a required field
FeatureGroupName *string `location:"uri" locationName:"FeatureGroupName" min:"1" type:"string" required:"true"`
// List of FeatureValues to be inserted. This will be a full over-write. If
// you only want to update few of the feature values, do the following:
//
// * Use GetRecord to retrieve the latest record.
//
// * Update the record returned from GetRecord.
//
// * Use PutRecord to update feature values.
//
// Record is a required field
Record []*FeatureValue `min:"1" type:"list" required:"true"`
// A list of stores to which you're adding the record. By default, Feature Store
// adds the record to all of the stores that you're using for the FeatureGroup.
TargetStores []*string `min:"1" type:"list" enum:"TargetStore"`
// Time to live duration, where the record is hard deleted after the expiration
// time is reached; ExpiresAt = EventTime + TtlDuration. For information on
// HardDelete, see the DeleteRecord (https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_feature_store_DeleteRecord.html)
// API in the Amazon SageMaker API Reference guide.
TtlDuration *TtlDuration `type:"structure"`
}
// 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 PutRecordInput) 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 PutRecordInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *PutRecordInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "PutRecordInput"}
if s.FeatureGroupName == nil {
invalidParams.Add(request.NewErrParamRequired("FeatureGroupName"))
}
if s.FeatureGroupName != nil && len(*s.FeatureGroupName) < 1 {
invalidParams.Add(request.NewErrParamMinLen("FeatureGroupName", 1))
}
if s.Record == nil {
invalidParams.Add(request.NewErrParamRequired("Record"))
}
if s.Record != nil && len(s.Record) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Record", 1))
}
if s.TargetStores != nil && len(s.TargetStores) < 1 {
invalidParams.Add(request.NewErrParamMinLen("TargetStores", 1))
}
if s.Record != nil {
for i, v := range s.Record {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Record", i), err.(request.ErrInvalidParams))
}
}
}
if s.TtlDuration != nil {
if err := s.TtlDuration.Validate(); err != nil {
invalidParams.AddNested("TtlDuration", err.(request.ErrInvalidParams))
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetFeatureGroupName sets the FeatureGroupName field's value.
func (s *PutRecordInput) SetFeatureGroupName(v string) *PutRecordInput {
s.FeatureGroupName = &v
return s
}
// SetRecord sets the Record field's value.
func (s *PutRecordInput) SetRecord(v []*FeatureValue) *PutRecordInput {
s.Record = v
return s
}
// SetTargetStores sets the TargetStores field's value.
func (s *PutRecordInput) SetTargetStores(v []*string) *PutRecordInput {
s.TargetStores = v
return s
}
// SetTtlDuration sets the TtlDuration field's value.
func (s *PutRecordInput) SetTtlDuration(v *TtlDuration) *PutRecordInput {
s.TtlDuration = v
return s
}
type PutRecordOutput struct {
_ struct{} `type:"structure"`
}
// 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 PutRecordOutput) 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 PutRecordOutput) GoString() string {
return s.String()
}
// A resource that is required to perform an action was not found.
type ResourceNotFound 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 ResourceNotFound) 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 ResourceNotFound) GoString() string {
return s.String()
}
func newErrorResourceNotFound(v protocol.ResponseMetadata) error {
return &ResourceNotFound{
RespMetadata: v,
}
}
// Code returns the exception type name.
func (s *ResourceNotFound) Code() string {
return "ResourceNotFound"
}
// Message returns the exception's message.
func (s *ResourceNotFound) Message() string {
if s.Message_ != nil {
return *s.Message_
}
return ""
}
// OrigErr always returns nil, satisfies awserr.Error interface.
func (s *ResourceNotFound) OrigErr() error {
return nil
}
func (s *ResourceNotFound) 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 *ResourceNotFound) StatusCode() int {
return s.RespMetadata.StatusCode
}
// RequestID returns the service's response RequestID for request.
func (s *ResourceNotFound) RequestID() string {
return s.RespMetadata.RequestID
}
// The service is currently unavailable.
type ServiceUnavailable 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 ServiceUnavailable) 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 ServiceUnavailable) GoString() string {
return s.String()
}
func newErrorServiceUnavailable(v protocol.ResponseMetadata) error {
return &ServiceUnavailable{
RespMetadata: v,
}
}
// Code returns the exception type name.
func (s *ServiceUnavailable) Code() string {
return "ServiceUnavailable"
}
// Message returns the exception's message.
func (s *ServiceUnavailable) Message() string {
if s.Message_ != nil {
return *s.Message_
}
return ""
}
// OrigErr always returns nil, satisfies awserr.Error interface.
func (s *ServiceUnavailable) OrigErr() error {
return nil
}
func (s *ServiceUnavailable) 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 *ServiceUnavailable) StatusCode() int {
return s.RespMetadata.StatusCode
}
// RequestID returns the service's response RequestID for request.
func (s *ServiceUnavailable) RequestID() string {
return s.RespMetadata.RequestID
}
// Time to live duration, where the record is hard deleted after the expiration
// time is reached; ExpiresAt = EventTime + TtlDuration. For information on
// HardDelete, see the DeleteRecord (https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_feature_store_DeleteRecord.html)
// API in the Amazon SageMaker API Reference guide.
type TtlDuration struct {
_ struct{} `type:"structure"`
// TtlDuration time unit.
//
// Unit is a required field
Unit *string `type:"string" required:"true" enum:"TtlDurationUnit"`
// TtlDuration time value.
//
// Value is a required field
Value *int64 `min:"1" type:"integer" 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 TtlDuration) 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 TtlDuration) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *TtlDuration) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "TtlDuration"}
if s.Unit == nil {
invalidParams.Add(request.NewErrParamRequired("Unit"))
}
if s.Value == nil {
invalidParams.Add(request.NewErrParamRequired("Value"))
}
if s.Value != nil && *s.Value < 1 {
invalidParams.Add(request.NewErrParamMinValue("Value", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetUnit sets the Unit field's value.
func (s *TtlDuration) SetUnit(v string) *TtlDuration {
s.Unit = &v
return s
}
// SetValue sets the Value field's value.
func (s *TtlDuration) SetValue(v int64) *TtlDuration {
s.Value = &v
return s
}
// There was an error validating your request.
type ValidationError 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 ValidationError) 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 ValidationError) GoString() string {
return s.String()
}
func newErrorValidationError(v protocol.ResponseMetadata) error {
return &ValidationError{
RespMetadata: v,
}
}
// Code returns the exception type name.
func (s *ValidationError) Code() string {
return "ValidationError"
}
// Message returns the exception's message.
func (s *ValidationError) Message() string {
if s.Message_ != nil {
return *s.Message_
}
return ""
}
// OrigErr always returns nil, satisfies awserr.Error interface.
func (s *ValidationError) OrigErr() error {
return nil
}
func (s *ValidationError) 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 *ValidationError) StatusCode() int {
return s.RespMetadata.StatusCode
}
// RequestID returns the service's response RequestID for request.
func (s *ValidationError) RequestID() string {
return s.RespMetadata.RequestID
}
const (
// DeletionModeSoftDelete is a DeletionMode enum value
DeletionModeSoftDelete = "SoftDelete"
// DeletionModeHardDelete is a DeletionMode enum value
DeletionModeHardDelete = "HardDelete"
)
// DeletionMode_Values returns all elements of the DeletionMode enum
func DeletionMode_Values() []string {
return []string{
DeletionModeSoftDelete,
DeletionModeHardDelete,
}
}
const (
// ExpirationTimeResponseEnabled is a ExpirationTimeResponse enum value
ExpirationTimeResponseEnabled = "Enabled"
// ExpirationTimeResponseDisabled is a ExpirationTimeResponse enum value
ExpirationTimeResponseDisabled = "Disabled"
)
// ExpirationTimeResponse_Values returns all elements of the ExpirationTimeResponse enum
func ExpirationTimeResponse_Values() []string {
return []string{
ExpirationTimeResponseEnabled,
ExpirationTimeResponseDisabled,
}
}
const (
// TargetStoreOnlineStore is a TargetStore enum value
TargetStoreOnlineStore = "OnlineStore"
// TargetStoreOfflineStore is a TargetStore enum value
TargetStoreOfflineStore = "OfflineStore"
)
// TargetStore_Values returns all elements of the TargetStore enum
func TargetStore_Values() []string {
return []string{
TargetStoreOnlineStore,
TargetStoreOfflineStore,
}
}
const (
// TtlDurationUnitSeconds is a TtlDurationUnit enum value
TtlDurationUnitSeconds = "Seconds"
// TtlDurationUnitMinutes is a TtlDurationUnit enum value
TtlDurationUnitMinutes = "Minutes"
// TtlDurationUnitHours is a TtlDurationUnit enum value
TtlDurationUnitHours = "Hours"
// TtlDurationUnitDays is a TtlDurationUnit enum value
TtlDurationUnitDays = "Days"
// TtlDurationUnitWeeks is a TtlDurationUnit enum value
TtlDurationUnitWeeks = "Weeks"
)
// TtlDurationUnit_Values returns all elements of the TtlDurationUnit enum
func TtlDurationUnit_Values() []string {
return []string{
TtlDurationUnitSeconds,
TtlDurationUnitMinutes,
TtlDurationUnitHours,
TtlDurationUnitDays,
TtlDurationUnitWeeks,
}
}
|