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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// What occurs after a certain event.
type Action struct {
// Details for the export revision to Amazon S3 action.
ExportRevisionToS3 *AutoExportRevisionToS3RequestDetails
noSmithyDocumentSerde
}
// The API Gateway API that is the asset.
type ApiGatewayApiAsset struct {
// The API description of the API asset.
ApiDescription *string
// The API endpoint of the API asset.
ApiEndpoint *string
// The unique identifier of the API asset.
ApiId *string
// The API key of the API asset.
ApiKey *string
// The API name of the API asset.
ApiName *string
// The download URL of the API specification of the API asset.
ApiSpecificationDownloadUrl *string
// The date and time that the upload URL expires, in ISO 8601 format.
ApiSpecificationDownloadUrlExpiresAt *time.Time
// The protocol type of the API asset.
ProtocolType ProtocolType
// The stage of the API asset.
Stage *string
noSmithyDocumentSerde
}
// The destination for the asset.
type AssetDestinationEntry struct {
// The unique identifier for the asset.
//
// This member is required.
AssetId *string
// The Amazon S3 bucket that is the destination for the asset.
//
// This member is required.
Bucket *string
// The name of the object in Amazon S3 for the asset.
Key *string
noSmithyDocumentSerde
}
// Details about the asset.
type AssetDetails struct {
// Information about the API Gateway API asset.
ApiGatewayApiAsset *ApiGatewayApiAsset
// The AWS Lake Formation data permission that is the asset.
LakeFormationDataPermissionAsset *LakeFormationDataPermissionAsset
// The Amazon Redshift datashare that is the asset.
RedshiftDataShareAsset *RedshiftDataShareAsset
// The Amazon S3 data access that is the asset.
S3DataAccessAsset *S3DataAccessAsset
// The Amazon S3 object that is the asset.
S3SnapshotAsset *S3SnapshotAsset
noSmithyDocumentSerde
}
// An asset in AWS Data Exchange is a piece of data (Amazon S3 object) or a means
// of fulfilling data (Amazon Redshift datashare or Amazon API Gateway API, AWS
// Lake Formation data permission, or Amazon S3 data access). The asset can be a
// structured data file, an image file, or some other data file that can be stored
// as an Amazon S3 object, an Amazon API Gateway API, or an Amazon Redshift
// datashare, an AWS Lake Formation data permission, or an Amazon S3 data access.
// When you create an import job for your files, API Gateway APIs, Amazon Redshift
// datashares, AWS Lake Formation data permission, or Amazon S3 data access, you
// create an asset in AWS Data Exchange.
type AssetEntry struct {
// The ARN for the asset.
//
// This member is required.
Arn *string
// Details about the asset.
//
// This member is required.
AssetDetails *AssetDetails
// The type of asset that is added to a data set.
//
// This member is required.
AssetType AssetType
// The date and time that the asset was created, in ISO 8601 format.
//
// This member is required.
CreatedAt *time.Time
// The unique identifier for the data set associated with this asset.
//
// This member is required.
DataSetId *string
// The unique identifier for the asset.
//
// This member is required.
Id *string
// The name of the asset. When importing from Amazon S3, the Amazon S3 object key
// is used as the asset name. When exporting to Amazon S3, the asset name is used
// as default target Amazon S3 object key. When importing from Amazon API Gateway
// API, the API name is used as the asset name. When importing from Amazon
// Redshift, the datashare name is used as the asset name. When importing from AWS
// Lake Formation, the static values of "Database(s) included in LF-tag policy" or
// "Table(s) included in LF-tag policy" are used as the asset name.
//
// This member is required.
Name *string
// The unique identifier for the revision associated with this asset.
//
// This member is required.
RevisionId *string
// The date and time that the asset was last updated, in ISO 8601 format.
//
// This member is required.
UpdatedAt *time.Time
// The asset ID of the owned asset corresponding to the entitled asset being
// viewed. This parameter is returned when an asset owner is viewing the entitled
// copy of its owned asset.
SourceId *string
noSmithyDocumentSerde
}
// The source of the assets.
type AssetSourceEntry struct {
// The Amazon S3 bucket that's part of the source of the asset.
//
// This member is required.
Bucket *string
// The name of the object in Amazon S3 for the asset.
//
// This member is required.
Key *string
noSmithyDocumentSerde
}
// A revision destination is the Amazon S3 bucket folder destination to where the
// export will be sent.
type AutoExportRevisionDestinationEntry struct {
// The Amazon S3 bucket that is the destination for the event action.
//
// This member is required.
Bucket *string
// A string representing the pattern for generated names of the individual assets
// in the revision. For more information about key patterns, see Key patterns when
// exporting revisions (https://docs.aws.amazon.com/data-exchange/latest/userguide/jobs.html#revision-export-keypatterns)
// .
KeyPattern *string
noSmithyDocumentSerde
}
// Details of the operation to be performed by the job.
type AutoExportRevisionToS3RequestDetails struct {
// A revision destination is the Amazon S3 bucket folder destination to where the
// export will be sent.
//
// This member is required.
RevisionDestination *AutoExportRevisionDestinationEntry
// Encryption configuration for the auto export job.
Encryption *ExportServerSideEncryption
noSmithyDocumentSerde
}
// Details of the operation to create an Amazon S3 data access from an S3 bucket.
type CreateS3DataAccessFromS3BucketRequestDetails struct {
// Details about the S3 data access source asset.
//
// This member is required.
AssetSource *S3DataAccessAssetSourceEntry
// The unique identifier for the data set associated with the creation of this
// Amazon S3 data access.
//
// This member is required.
DataSetId *string
// The unique identifier for a revision.
//
// This member is required.
RevisionId *string
noSmithyDocumentSerde
}
// Details about the response of the operation to create an S3 data access from an
// S3 bucket.
type CreateS3DataAccessFromS3BucketResponseDetails struct {
// Details about the asset source from an Amazon S3 bucket.
//
// This member is required.
AssetSource *S3DataAccessAssetSourceEntry
// The unique identifier for this data set.
//
// This member is required.
DataSetId *string
// The unique identifier for the revision.
//
// This member is required.
RevisionId *string
noSmithyDocumentSerde
}
// The LF-tag policy for database resources.
type DatabaseLFTagPolicy struct {
// A list of LF-tag conditions that apply to database resources.
//
// This member is required.
Expression []LFTag
noSmithyDocumentSerde
}
// The LF-tag policy and permissions for database resources.
type DatabaseLFTagPolicyAndPermissions struct {
// A list of LF-tag conditions that apply to database resources.
//
// This member is required.
Expression []LFTag
// The permissions granted to subscribers on database resources.
//
// This member is required.
Permissions []DatabaseLFTagPolicyPermission
noSmithyDocumentSerde
}
// A data set is an AWS resource with one or more revisions.
type DataSetEntry struct {
// The ARN for the data set.
//
// This member is required.
Arn *string
// The type of asset that is added to a data set.
//
// This member is required.
AssetType AssetType
// The date and time that the data set was created, in ISO 8601 format.
//
// This member is required.
CreatedAt *time.Time
// The description for the data set.
//
// This member is required.
Description *string
// The unique identifier for the data set.
//
// This member is required.
Id *string
// The name of the data set.
//
// This member is required.
Name *string
// A property that defines the data set as OWNED by the account (for providers) or
// ENTITLED to the account (for subscribers).
//
// This member is required.
Origin Origin
// The date and time that the data set was last updated, in ISO 8601 format.
//
// This member is required.
UpdatedAt *time.Time
// If the origin of this data set is ENTITLED, includes the details for the
// product on AWS Marketplace.
OriginDetails *OriginDetails
// The data set ID of the owned data set corresponding to the entitled data set
// being viewed. This parameter is returned when a data set owner is viewing the
// entitled copy of its owned data set.
SourceId *string
noSmithyDocumentSerde
}
// Extra details specific to a data update type notification.
type DataUpdateRequestDetails struct {
// A datetime in the past when the data was updated. This typically means that the
// underlying resource supporting the data set was updated.
DataUpdatedAt *time.Time
noSmithyDocumentSerde
}
// Extra details specific to a deprecation type notification.
type DeprecationRequestDetails struct {
// A datetime in the future when the data set will be deprecated.
//
// This member is required.
DeprecationAt *time.Time
noSmithyDocumentSerde
}
// Information about the job error.
type Details struct {
// Information about the job error.
ImportAssetFromSignedUrlJobErrorDetails *ImportAssetFromSignedUrlJobErrorDetails
// Details about the job error.
ImportAssetsFromS3JobErrorDetails []AssetSourceEntry
noSmithyDocumentSerde
}
// What occurs to start an action.
type Event struct {
// What occurs to start the revision publish action.
RevisionPublished *RevisionPublished
noSmithyDocumentSerde
}
// An event action is an object that defines the relationship between a specific
// event and an automated action that will be taken on behalf of the customer.
type EventActionEntry struct {
// What occurs after a certain event.
//
// This member is required.
Action *Action
// The Amazon Resource Name (ARN) for the event action.
//
// This member is required.
Arn *string
// The date and time that the event action was created, in ISO 8601 format.
//
// This member is required.
CreatedAt *time.Time
// What occurs to start an action.
//
// This member is required.
Event *Event
// The unique identifier for the event action.
//
// This member is required.
Id *string
// The date and time that the event action was last updated, in ISO 8601 format.
//
// This member is required.
UpdatedAt *time.Time
noSmithyDocumentSerde
}
// Details of the operation to be performed by the job.
type ExportAssetsToS3RequestDetails struct {
// The destination for the asset.
//
// This member is required.
AssetDestinations []AssetDestinationEntry
// The unique identifier for the data set associated with this export job.
//
// This member is required.
DataSetId *string
// The unique identifier for the revision associated with this export request.
//
// This member is required.
RevisionId *string
// Encryption configuration for the export job.
Encryption *ExportServerSideEncryption
noSmithyDocumentSerde
}
// Details about the export to Amazon S3 response.
type ExportAssetsToS3ResponseDetails struct {
// The destination in Amazon S3 where the asset is exported.
//
// This member is required.
AssetDestinations []AssetDestinationEntry
// The unique identifier for the data set associated with this export job.
//
// This member is required.
DataSetId *string
// The unique identifier for the revision associated with this export response.
//
// This member is required.
RevisionId *string
// Encryption configuration of the export job.
Encryption *ExportServerSideEncryption
noSmithyDocumentSerde
}
// Details of the operation to be performed by the job.
type ExportAssetToSignedUrlRequestDetails struct {
// The unique identifier for the asset that is exported to a signed URL.
//
// This member is required.
AssetId *string
// The unique identifier for the data set associated with this export job.
//
// This member is required.
DataSetId *string
// The unique identifier for the revision associated with this export request.
//
// This member is required.
RevisionId *string
noSmithyDocumentSerde
}
// The details of the export to signed URL response.
type ExportAssetToSignedUrlResponseDetails struct {
// The unique identifier for the asset associated with this export job.
//
// This member is required.
AssetId *string
// The unique identifier for the data set associated with this export job.
//
// This member is required.
DataSetId *string
// The unique identifier for the revision associated with this export response.
//
// This member is required.
RevisionId *string
// The signed URL for the export request.
SignedUrl *string
// The date and time that the signed URL expires, in ISO 8601 format.
SignedUrlExpiresAt *time.Time
noSmithyDocumentSerde
}
// Details of the operation to be performed by the job.
type ExportRevisionsToS3RequestDetails struct {
// The unique identifier for the data set associated with this export job.
//
// This member is required.
DataSetId *string
// The destination for the revision.
//
// This member is required.
RevisionDestinations []RevisionDestinationEntry
// Encryption configuration for the export job.
Encryption *ExportServerSideEncryption
noSmithyDocumentSerde
}
// Details about the export revisions to Amazon S3 response.
type ExportRevisionsToS3ResponseDetails struct {
// The unique identifier for the data set associated with this export job.
//
// This member is required.
DataSetId *string
// The destination in Amazon S3 where the revision is exported.
//
// This member is required.
RevisionDestinations []RevisionDestinationEntry
// Encryption configuration of the export job.
Encryption *ExportServerSideEncryption
// The Amazon Resource Name (ARN) of the event action.
EventActionArn *string
noSmithyDocumentSerde
}
// Encryption configuration of the export job. Includes the encryption type in
// addition to the AWS KMS key. The KMS key is only necessary if you chose the KMS
// encryption type.
type ExportServerSideEncryption struct {
// The type of server side encryption used for encrypting the objects in Amazon S3.
//
// This member is required.
Type ServerSideEncryptionTypes
// The Amazon Resource Name (ARN) of the AWS KMS key you want to use to encrypt
// the Amazon S3 objects. This parameter is required if you choose aws:kms as an
// encryption type.
KmsKeyArn *string
noSmithyDocumentSerde
}
// The request details.
type ImportAssetFromApiGatewayApiRequestDetails struct {
// The API Gateway API ID.
//
// This member is required.
ApiId *string
// The API name.
//
// This member is required.
ApiName *string
// The Base64-encoded MD5 hash of the OpenAPI 3.0 JSON API specification file. It
// is used to ensure the integrity of the file.
//
// This member is required.
ApiSpecificationMd5Hash *string
// The data set ID.
//
// This member is required.
DataSetId *string
// The protocol type.
//
// This member is required.
ProtocolType ProtocolType
// The revision ID.
//
// This member is required.
RevisionId *string
// The API stage.
//
// This member is required.
Stage *string
// The API description. Markdown supported.
ApiDescription *string
// The API Gateway API key.
ApiKey *string
noSmithyDocumentSerde
}
// The response details.
type ImportAssetFromApiGatewayApiResponseDetails struct {
// The API ID.
//
// This member is required.
ApiId *string
// The API name.
//
// This member is required.
ApiName *string
// The Base64-encoded Md5 hash for the API asset, used to ensure the integrity of
// the API at that location.
//
// This member is required.
ApiSpecificationMd5Hash *string
// The upload URL of the API specification.
//
// This member is required.
ApiSpecificationUploadUrl *string
// The date and time that the upload URL expires, in ISO 8601 format.
//
// This member is required.
ApiSpecificationUploadUrlExpiresAt *time.Time
// The data set ID.
//
// This member is required.
DataSetId *string
// The protocol type.
//
// This member is required.
ProtocolType ProtocolType
// The revision ID.
//
// This member is required.
RevisionId *string
// The API stage.
//
// This member is required.
Stage *string
// The API description.
ApiDescription *string
// The API key.
ApiKey *string
noSmithyDocumentSerde
}
// Details about the job error.
type ImportAssetFromSignedUrlJobErrorDetails struct {
// Details about the job error.
//
// This member is required.
AssetName *string
noSmithyDocumentSerde
}
// Details of the operation to be performed by the job.
type ImportAssetFromSignedUrlRequestDetails struct {
// The name of the asset. When importing from Amazon S3, the Amazon S3 object key
// is used as the asset name.
//
// This member is required.
AssetName *string
// The unique identifier for the data set associated with this import job.
//
// This member is required.
DataSetId *string
// The Base64-encoded Md5 hash for the asset, used to ensure the integrity of the
// file at that location.
//
// This member is required.
Md5Hash *string
// The unique identifier for the revision associated with this import request.
//
// This member is required.
RevisionId *string
noSmithyDocumentSerde
}
// The details in the response for an import request, including the signed URL and
// other information.
type ImportAssetFromSignedUrlResponseDetails struct {
// The name for the asset associated with this import job.
//
// This member is required.
AssetName *string
// The unique identifier for the data set associated with this import job.
//
// This member is required.
DataSetId *string
// The unique identifier for the revision associated with this import response.
//
// This member is required.
RevisionId *string
// The Base64-encoded Md5 hash for the asset, used to ensure the integrity of the
// file at that location.
Md5Hash *string
// The signed URL.
SignedUrl *string
// The time and date at which the signed URL expires, in ISO 8601 format.
SignedUrlExpiresAt *time.Time
noSmithyDocumentSerde
}
// Details about the assets imported from an AWS Lake Formation tag policy request.
type ImportAssetsFromLakeFormationTagPolicyRequestDetails struct {
// The identifier for the AWS Glue Data Catalog.
//
// This member is required.
CatalogId *string
// The unique identifier for the data set associated with this import job.
//
// This member is required.
DataSetId *string
// The unique identifier for the revision associated with this import job.
//
// This member is required.
RevisionId *string
// The IAM role's ARN that allows AWS Data Exchange to assume the role and grant
// and revoke permissions of subscribers to AWS Lake Formation data permissions.
//
// This member is required.
RoleArn *string
// A structure for the database object.
Database *DatabaseLFTagPolicyAndPermissions
// A structure for the table object.
Table *TableLFTagPolicyAndPermissions
noSmithyDocumentSerde
}
// Details from an import AWS Lake Formation tag policy job response.
type ImportAssetsFromLakeFormationTagPolicyResponseDetails struct {
// The identifier for the AWS Glue Data Catalog.
//
// This member is required.
CatalogId *string
// The unique identifier for the data set associated with this import job.
//
// This member is required.
DataSetId *string
// The unique identifier for the revision associated with this import job.
//
// This member is required.
RevisionId *string
// The IAM role's ARN that allows AWS Data Exchange to assume the role and grant
// and revoke permissions to AWS Lake Formation data permissions.
//
// This member is required.
RoleArn *string
// A structure for the database object.
Database *DatabaseLFTagPolicyAndPermissions
// A structure for the table object.
Table *TableLFTagPolicyAndPermissions
noSmithyDocumentSerde
}
// Details from an import from Amazon Redshift datashare request.
type ImportAssetsFromRedshiftDataSharesRequestDetails struct {
// A list of Amazon Redshift datashare assets.
//
// This member is required.
AssetSources []RedshiftDataShareAssetSourceEntry
// The unique identifier for the data set associated with this import job.
//
// This member is required.
DataSetId *string
// The unique identifier for the revision associated with this import job.
//
// This member is required.
RevisionId *string
noSmithyDocumentSerde
}
// Details from an import from Amazon Redshift datashare response.
type ImportAssetsFromRedshiftDataSharesResponseDetails struct {
// A list of Amazon Redshift datashare asset sources.
//
// This member is required.
AssetSources []RedshiftDataShareAssetSourceEntry
// The unique identifier for the data set associated with this import job.
//
// This member is required.
DataSetId *string
// The unique identifier for the revision associated with this import job.
//
// This member is required.
RevisionId *string
noSmithyDocumentSerde
}
// Details of the operation to be performed by the job.
type ImportAssetsFromS3RequestDetails struct {
// Is a list of Amazon S3 bucket and object key pairs.
//
// This member is required.
AssetSources []AssetSourceEntry
// The unique identifier for the data set associated with this import job.
//
// This member is required.
DataSetId *string
// The unique identifier for the revision associated with this import request.
//
// This member is required.
RevisionId *string
noSmithyDocumentSerde
}
// Details from an import from Amazon S3 response.
type ImportAssetsFromS3ResponseDetails struct {
// Is a list of Amazon S3 bucket and object key pairs.
//
// This member is required.
AssetSources []AssetSourceEntry
// The unique identifier for the data set associated with this import job.
//
// This member is required.
DataSetId *string
// The unique identifier for the revision associated with this import response.
//
// This member is required.
RevisionId *string
noSmithyDocumentSerde
}
// AWS Data Exchange Jobs are asynchronous import or export operations used to
// create or copy assets. A data set owner can both import and export as they see
// fit. Someone with an entitlement to a data set can only export. Jobs are deleted
// 90 days after they are created.
type JobEntry struct {
// The ARN for the job.
//
// This member is required.
Arn *string
// The date and time that the job was created, in ISO 8601 format.
//
// This member is required.
CreatedAt *time.Time
// Details of the operation to be performed by the job, such as export destination
// details or import source details.
//
// This member is required.
Details *ResponseDetails
// The unique identifier for the job.
//
// This member is required.
Id *string
// The state of the job.
//
// This member is required.
State State
// The job type.
//
// This member is required.
Type Type
// The date and time that the job was last updated, in ISO 8601 format.
//
// This member is required.
UpdatedAt *time.Time
// Errors for jobs.
Errors []JobError
noSmithyDocumentSerde
}
// An error that occurred with the job request.
type JobError struct {
// The code for the job error.
//
// This member is required.
Code Code
// The message related to the job error.
//
// This member is required.
Message *string
// The details about the job error.
Details *Details
// The name of the limit that was reached.
LimitName JobErrorLimitName
// The value of the exceeded limit.
LimitValue float64
// The unique identifier for the resource related to the error.
ResourceId *string
// The type of resource related to the error.
ResourceType JobErrorResourceTypes
noSmithyDocumentSerde
}
// The Amazon Resource Name (ARN) of the AWS KMS key used to encrypt the shared S3
// objects.
type KmsKeyToGrant struct {
// The AWS KMS CMK (Key Management System Customer Managed Key) used to encrypt S3
// objects in the shared S3 Bucket. AWS Data exchange will create a KMS grant for
// each subscriber to allow them to access and decrypt their entitled data that is
// encrypted using this KMS key specified.
//
// This member is required.
KmsKeyArn *string
noSmithyDocumentSerde
}
// The AWS Lake Formation data permission asset.
type LakeFormationDataPermissionAsset struct {
// Details about the AWS Lake Formation data permission.
//
// This member is required.
LakeFormationDataPermissionDetails *LakeFormationDataPermissionDetails
// The data permission type.
//
// This member is required.
LakeFormationDataPermissionType LakeFormationDataPermissionType
// The permissions granted to the subscribers on the resource.
//
// This member is required.
Permissions []LFPermission
// The IAM role's ARN that allows AWS Data Exchange to assume the role and grant
// and revoke permissions to AWS Lake Formation data permissions.
RoleArn *string
noSmithyDocumentSerde
}
// Details about the AWS Lake Formation data permission.
type LakeFormationDataPermissionDetails struct {
// Details about the LF-tag policy.
LFTagPolicy *LFTagPolicyDetails
noSmithyDocumentSerde
}
// Extra details specific to the affected scope in this LF data set.
type LakeFormationTagPolicyDetails struct {
// The underlying Glue database that the notification is referring to.
Database *string
// The underlying Glue table that the notification is referring to.
Table *string
noSmithyDocumentSerde
}
// Details about the AWS Lake Formation resource (Table or Database) included in
// the AWS Lake Formation data permission.
type LFResourceDetails struct {
// Details about the database resource included in the AWS Lake Formation data
// permission.
Database *DatabaseLFTagPolicy
// Details about the table resource included in the AWS Lake Formation data
// permission.
Table *TableLFTagPolicy
noSmithyDocumentSerde
}
// A structure that allows an LF-admin to grant permissions on certain conditions.
type LFTag struct {
// The key name for the LF-tag.
//
// This member is required.
TagKey *string
// A list of LF-tag values.
//
// This member is required.
TagValues []string
noSmithyDocumentSerde
}
// Details about the LF-tag policy.
type LFTagPolicyDetails struct {
// The identifier for the AWS Glue Data Catalog.
//
// This member is required.
CatalogId *string
// Details for the Lake Formation Resources included in the LF-tag policy.
//
// This member is required.
ResourceDetails *LFResourceDetails
// The resource type for which the LF-tag policy applies.
//
// This member is required.
ResourceType LFResourceType
noSmithyDocumentSerde
}
// Extra details specific to this notification.
type NotificationDetails struct {
// Extra details specific to a data update type notification.
DataUpdate *DataUpdateRequestDetails
// Extra details specific to a deprecation type notification.
Deprecation *DeprecationRequestDetails
// Extra details specific to a schema change type notification.
SchemaChange *SchemaChangeRequestDetails
noSmithyDocumentSerde
}
// Details about the origin of the data set.
type OriginDetails struct {
// The product ID of the origin of the data set.
ProductId *string
noSmithyDocumentSerde
}
// The Amazon Redshift datashare asset.
type RedshiftDataShareAsset struct {
// The Amazon Resource Name (ARN) of the datashare asset.
//
// This member is required.
Arn *string
noSmithyDocumentSerde
}
// The source of the Amazon Redshift datashare asset.
type RedshiftDataShareAssetSourceEntry struct {
// The Amazon Resource Name (ARN) of the datashare asset.
//
// This member is required.
DataShareArn *string
noSmithyDocumentSerde
}
// Extra details specific to the affected scope in this Redshift data set.
type RedshiftDataShareDetails struct {
// The ARN of the underlying Redshift data share that is being affected by this
// notification.
//
// This member is required.
Arn *string
// The database name in the Redshift data share that is being affected by this
// notification.
//
// This member is required.
Database *string
// A function name in the Redshift database that is being affected by this
// notification.
Function *string
// A schema name in the Redshift database that is being affected by this
// notification.
Schema *string
// A table name in the Redshift database that is being affected by this
// notification.
Table *string
// A view name in the Redshift database that is being affected by this
// notification.
View *string
noSmithyDocumentSerde
}
// The details for the request.
type RequestDetails struct {
// Details of the request to create S3 data access from the Amazon S3 bucket.
CreateS3DataAccessFromS3Bucket *CreateS3DataAccessFromS3BucketRequestDetails
// Details about the export to signed URL request.
ExportAssetToSignedUrl *ExportAssetToSignedUrlRequestDetails
// Details about the export to Amazon S3 request.
ExportAssetsToS3 *ExportAssetsToS3RequestDetails
// Details about the export to Amazon S3 request.
ExportRevisionsToS3 *ExportRevisionsToS3RequestDetails
// Details about the import from signed URL request.
ImportAssetFromApiGatewayApi *ImportAssetFromApiGatewayApiRequestDetails
// Details about the import from Amazon S3 request.
ImportAssetFromSignedUrl *ImportAssetFromSignedUrlRequestDetails
// Request details for the ImportAssetsFromLakeFormationTagPolicy job.
ImportAssetsFromLakeFormationTagPolicy *ImportAssetsFromLakeFormationTagPolicyRequestDetails
// Details from an import from Amazon Redshift datashare request.
ImportAssetsFromRedshiftDataShares *ImportAssetsFromRedshiftDataSharesRequestDetails
// Details about the import asset from API Gateway API request.
ImportAssetsFromS3 *ImportAssetsFromS3RequestDetails
noSmithyDocumentSerde
}
// Details for the response.
type ResponseDetails struct {
// Response details from the CreateS3DataAccessFromS3Bucket job.
CreateS3DataAccessFromS3Bucket *CreateS3DataAccessFromS3BucketResponseDetails
// Details for the export to signed URL response.
ExportAssetToSignedUrl *ExportAssetToSignedUrlResponseDetails
// Details for the export to Amazon S3 response.
ExportAssetsToS3 *ExportAssetsToS3ResponseDetails
// Details for the export revisions to Amazon S3 response.
ExportRevisionsToS3 *ExportRevisionsToS3ResponseDetails
// The response details.
ImportAssetFromApiGatewayApi *ImportAssetFromApiGatewayApiResponseDetails
// Details for the import from signed URL response.
ImportAssetFromSignedUrl *ImportAssetFromSignedUrlResponseDetails
// Response details from the ImportAssetsFromLakeFormationTagPolicy job.
ImportAssetsFromLakeFormationTagPolicy *ImportAssetsFromLakeFormationTagPolicyResponseDetails
// Details from an import from Amazon Redshift datashare response.
ImportAssetsFromRedshiftDataShares *ImportAssetsFromRedshiftDataSharesResponseDetails
// Details for the import from Amazon S3 response.
ImportAssetsFromS3 *ImportAssetsFromS3ResponseDetails
noSmithyDocumentSerde
}
// The destination where the assets in the revision will be exported.
type RevisionDestinationEntry struct {
// The Amazon S3 bucket that is the destination for the assets in the revision.
//
// This member is required.
Bucket *string
// The unique identifier for the revision.
//
// This member is required.
RevisionId *string
// A string representing the pattern for generated names of the individual assets
// in the revision. For more information about key patterns, see Key patterns when
// exporting revisions (https://docs.aws.amazon.com/data-exchange/latest/userguide/jobs.html#revision-export-keypatterns)
// .
KeyPattern *string
noSmithyDocumentSerde
}
// A revision is a container for one or more assets.
type RevisionEntry struct {
// The ARN for the revision.
//
// This member is required.
Arn *string
// The date and time that the revision was created, in ISO 8601 format.
//
// This member is required.
CreatedAt *time.Time
// The unique identifier for the data set associated with the data set revision.
//
// This member is required.
DataSetId *string
// The unique identifier for the revision.
//
// This member is required.
Id *string
// The date and time that the revision was last updated, in ISO 8601 format.
//
// This member is required.
UpdatedAt *time.Time
// An optional comment about the revision.
Comment *string
// To publish a revision to a data set in a product, the revision must first be
// finalized. Finalizing a revision tells AWS Data Exchange that your changes to
// the assets in the revision are complete. After it's in this read-only state, you
// can publish the revision to your products. Finalized revisions can be published
// through the AWS Data Exchange console or the AWS Marketplace Catalog API, using
// the StartChangeSet AWS Marketplace Catalog API action. When using the API,
// revisions are uniquely identified by their ARN.
Finalized bool
// A required comment to inform subscribers of the reason their access to the
// revision was revoked.
RevocationComment *string
// A status indicating that subscribers' access to the revision was revoked.
Revoked bool
// The date and time that the revision was revoked, in ISO 8601 format.
RevokedAt *time.Time
// The revision ID of the owned revision corresponding to the entitled revision
// being viewed. This parameter is returned when a revision owner is viewing the
// entitled copy of its owned revision.
SourceId *string
noSmithyDocumentSerde
}
// Information about the published revision.
type RevisionPublished struct {
// The data set ID of the published revision.
//
// This member is required.
DataSetId *string
noSmithyDocumentSerde
}
// The Amazon S3 data access that is the asset.
type S3DataAccessAsset struct {
// The Amazon S3 bucket hosting data to be shared in the S3 data access.
//
// This member is required.
Bucket *string
// The Amazon S3 bucket used for hosting shared data in the Amazon S3 data access.
KeyPrefixes []string
// S3 keys made available using this asset.
Keys []string
// List of AWS KMS CMKs (Key Management System Customer Managed Keys) and ARNs
// used to encrypt S3 objects being shared in this S3 Data Access asset. Providers
// must include all AWS KMS keys used to encrypt these shared S3 objects.
KmsKeysToGrant []KmsKeyToGrant
// The automatically-generated bucket-style alias for your Amazon S3 Access Point.
// Customers can access their entitled data using the S3 Access Point alias.
S3AccessPointAlias *string
// The ARN for your Amazon S3 Access Point. Customers can also access their
// entitled data using the S3 Access Point ARN.
S3AccessPointArn *string
noSmithyDocumentSerde
}
// Source details for an Amazon S3 data access asset.
type S3DataAccessAssetSourceEntry struct {
// The Amazon S3 bucket used for hosting shared data in the Amazon S3 data access.
//
// This member is required.
Bucket *string
// Organizes Amazon S3 asset key prefixes stored in an Amazon S3 bucket.
KeyPrefixes []string
// The keys used to create the Amazon S3 data access.
Keys []string
// List of AWS KMS CMKs (Key Management System Customer Managed Keys) and ARNs
// used to encrypt S3 objects being shared in this S3 Data Access asset.
KmsKeysToGrant []KmsKeyToGrant
noSmithyDocumentSerde
}
// Extra details specific to the affected scope in this S3 Data Access data set.
type S3DataAccessDetails struct {
// A list of the key prefixes affected by this notification. This can have up to
// 50 entries.
KeyPrefixes []string
// A list of the keys affected by this notification. This can have up to 50
// entries.
Keys []string
noSmithyDocumentSerde
}
// The Amazon S3 object that is the asset.
type S3SnapshotAsset struct {
// The size of the Amazon S3 object that is the object.
//
// This member is required.
Size float64
noSmithyDocumentSerde
}
// Object encompassing information about a schema change to a single, particular
// field, a notification can have up to 100 of these.
type SchemaChangeDetails struct {
// Name of the changing field. This value can be up to 255 characters long.
//
// This member is required.
Name *string
// Is the field being added, removed, or modified?
//
// This member is required.
Type SchemaChangeType
// Description of what's changing about this field. This value can be up to 512
// characters long.
Description *string
noSmithyDocumentSerde
}
// Extra details specific to this schema change type notification.
type SchemaChangeRequestDetails struct {
// A date in the future when the schema change is taking effect.
//
// This member is required.
SchemaChangeAt *time.Time
// List of schema changes happening in the scope of this notification. This can
// have up to 100 entries.
Changes []SchemaChangeDetails
noSmithyDocumentSerde
}
// Details about the scope of the notifications such as the affected resources.
type ScopeDetails struct {
// Underlying LF resources that will be affected by this notification.
LakeFormationTagPolicies []LakeFormationTagPolicyDetails
// Underlying Redshift resources that will be affected by this notification.
RedshiftDataShares []RedshiftDataShareDetails
// Underlying S3 resources that will be affected by this notification.
S3DataAccesses []S3DataAccessDetails
noSmithyDocumentSerde
}
// The LF-tag policy for a table resource.
type TableLFTagPolicy struct {
// A list of LF-tag conditions that apply to table resources.
//
// This member is required.
Expression []LFTag
noSmithyDocumentSerde
}
// The LF-tag policy and permissions that apply to table resources.
type TableLFTagPolicyAndPermissions struct {
// A list of LF-tag conditions that apply to table resources.
//
// This member is required.
Expression []LFTag
// The permissions granted to subscribers on table resources.
//
// This member is required.
Permissions []TableTagPolicyLFPermission
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|