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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// The action to add a header to a message. When executed, this action will add
// the given header to the message.
type AddHeaderAction struct {
// The name of the header to add to an email. The header must be prefixed with
// "X-". Headers are added regardless of whether the header name pre-existed in the
// email.
//
// This member is required.
HeaderName *string
// The value of the header to add to the email.
//
// This member is required.
HeaderValue *string
noSmithyDocumentSerde
}
// An Add On instance represents a specific configuration of an Add On.
type AddonInstance struct {
// The Amazon Resource Name (ARN) of the Add On instance.
AddonInstanceArn *string
// The unique ID of the Add On instance.
AddonInstanceId *string
// The name of the Add On for the instance.
AddonName *string
// The subscription ID for the instance.
AddonSubscriptionId *string
// The timestamp of when the Add On instance was created.
CreatedTimestamp *time.Time
noSmithyDocumentSerde
}
// A subscription for an Add On representing the acceptance of its terms of use
// and additional pricing.
type AddonSubscription struct {
// The name of the Add On.
AddonName *string
// The Amazon Resource Name (ARN) of the Add On subscription.
AddonSubscriptionArn *string
// The unique ID of the Add On subscription.
AddonSubscriptionId *string
// The timestamp of when the Add On subscription was created.
CreatedTimestamp *time.Time
noSmithyDocumentSerde
}
// The result of an analysis can be used in conditions to trigger actions.
// Analyses can inspect the email content and report a certain aspect of the email.
type Analysis struct {
// The Amazon Resource Name (ARN) of an Add On.
//
// This member is required.
Analyzer *string
// The returned value from an Add On.
//
// This member is required.
ResultField *string
noSmithyDocumentSerde
}
// An archive resource for storing and retaining emails.
type Archive struct {
// The unique identifier of the archive.
//
// This member is required.
ArchiveId *string
// The unique name assigned to the archive.
ArchiveName *string
// The current state of the archive:
//
// - ACTIVE – The archive is ready and available for use.
//
// - PENDING_DELETION – The archive has been marked for deletion and will be
// permanently deleted in 30 days. No further modifications can be made in this
// state.
ArchiveState ArchiveState
// The timestamp of when the archive was last updated.
LastUpdatedTimestamp *time.Time
noSmithyDocumentSerde
}
// The action to archive the email by delivering the email to an Amazon SES
// archive.
type ArchiveAction struct {
// The identifier of the archive to send the email to.
//
// This member is required.
TargetArchive *string
// A policy that states what to do in the case of failure. The action will fail if
// there are configuration errors. For example, the specified archive has been
// deleted.
ActionFailurePolicy ActionFailurePolicy
noSmithyDocumentSerde
}
// A boolean expression to evaluate email attribute values.
type ArchiveBooleanExpression struct {
// The email attribute value to evaluate.
//
// This member is required.
Evaluate ArchiveBooleanToEvaluate
// The boolean operator to use for evaluation.
//
// This member is required.
Operator ArchiveBooleanOperator
noSmithyDocumentSerde
}
// The attribute to evaluate in a boolean expression.
//
// The following types satisfy this interface:
//
// ArchiveBooleanToEvaluateMemberAttribute
type ArchiveBooleanToEvaluate interface {
isArchiveBooleanToEvaluate()
}
// The name of the email attribute to evaluate.
type ArchiveBooleanToEvaluateMemberAttribute struct {
Value ArchiveBooleanEmailAttribute
noSmithyDocumentSerde
}
func (*ArchiveBooleanToEvaluateMemberAttribute) isArchiveBooleanToEvaluate() {}
// A filter condition used to include or exclude emails when exporting from or
// searching an archive.
//
// The following types satisfy this interface:
//
// ArchiveFilterConditionMemberBooleanExpression
// ArchiveFilterConditionMemberStringExpression
type ArchiveFilterCondition interface {
isArchiveFilterCondition()
}
// A boolean expression to evaluate against email attributes.
type ArchiveFilterConditionMemberBooleanExpression struct {
Value ArchiveBooleanExpression
noSmithyDocumentSerde
}
func (*ArchiveFilterConditionMemberBooleanExpression) isArchiveFilterCondition() {}
// A string expression to evaluate against email attributes.
type ArchiveFilterConditionMemberStringExpression struct {
Value ArchiveStringExpression
noSmithyDocumentSerde
}
func (*ArchiveFilterConditionMemberStringExpression) isArchiveFilterCondition() {}
// A set of filter conditions to include and/or exclude emails.
type ArchiveFilters struct {
// The filter conditions for emails to include.
Include []ArchiveFilterCondition
// The filter conditions for emails to exclude.
Unless []ArchiveFilterCondition
noSmithyDocumentSerde
}
// The retention policy for an email archive that specifies how long emails are
// kept before being automatically deleted.
//
// The following types satisfy this interface:
//
// ArchiveRetentionMemberRetentionPeriod
type ArchiveRetention interface {
isArchiveRetention()
}
// The enum value sets the period for retaining emails in an archive.
type ArchiveRetentionMemberRetentionPeriod struct {
Value RetentionPeriod
noSmithyDocumentSerde
}
func (*ArchiveRetentionMemberRetentionPeriod) isArchiveRetention() {}
// A string expression to evaluate an email attribute value against one or more
// string values.
type ArchiveStringExpression struct {
// The attribute of the email to evaluate.
//
// This member is required.
Evaluate ArchiveStringToEvaluate
// The operator to use when evaluating the string values.
//
// This member is required.
Operator ArchiveStringOperator
// The list of string values to evaluate the email attribute against.
//
// This member is required.
Values []string
noSmithyDocumentSerde
}
// Specifies the email attribute to evaluate in a string expression.
//
// The following types satisfy this interface:
//
// ArchiveStringToEvaluateMemberAttribute
type ArchiveStringToEvaluate interface {
isArchiveStringToEvaluate()
}
// The name of the email attribute to evaluate.
type ArchiveStringToEvaluateMemberAttribute struct {
Value ArchiveStringEmailAttribute
noSmithyDocumentSerde
}
func (*ArchiveStringToEvaluateMemberAttribute) isArchiveStringToEvaluate() {}
// This action to delivers an email to a mailbox.
type DeliverToMailboxAction struct {
// The Amazon Resource Name (ARN) of a WorkMail organization to deliver the email
// to.
//
// This member is required.
MailboxArn *string
// The Amazon Resource Name (ARN) of an IAM role to use to execute this action.
// The role must have access to the workmail:DeliverToMailbox API.
//
// This member is required.
RoleArn *string
// A policy that states what to do in the case of failure. The action will fail if
// there are configuration errors. For example, the mailbox ARN is no longer valid.
ActionFailurePolicy ActionFailurePolicy
noSmithyDocumentSerde
}
// This action causes processing to stop and the email to be dropped. If the
// action applies only to certain recipients, only those recipients are dropped,
// and processing continues for other recipients.
type DropAction struct {
noSmithyDocumentSerde
}
// The destination configuration for delivering exported email data.
//
// The following types satisfy this interface:
//
// ExportDestinationConfigurationMemberS3
type ExportDestinationConfiguration interface {
isExportDestinationConfiguration()
}
// Configuration for delivering to an Amazon S3 bucket.
type ExportDestinationConfigurationMemberS3 struct {
Value S3ExportDestinationConfiguration
noSmithyDocumentSerde
}
func (*ExportDestinationConfigurationMemberS3) isExportDestinationConfiguration() {}
// The current status of an archive export job.
type ExportStatus struct {
// The timestamp of when the export job completed (if finished).
CompletionTimestamp *time.Time
// An error message if the export job failed.
ErrorMessage *string
// The current state of the export job.
State ExportState
// The timestamp of when the export job was submitted.
SubmissionTimestamp *time.Time
noSmithyDocumentSerde
}
// Summary statuses of an archive export job.
type ExportSummary struct {
// The unique identifier of the export job.
ExportId *string
// The current status of the export job.
Status *ExportStatus
noSmithyDocumentSerde
}
// The Add On ARN and its returned value that is evaluated in a policy statement's
// conditional expression to either deny or block the incoming email.
type IngressAnalysis struct {
// The Amazon Resource Name (ARN) of an Add On.
//
// This member is required.
Analyzer *string
// The returned value from an Add On.
//
// This member is required.
ResultField *string
noSmithyDocumentSerde
}
// The structure for a boolean condition matching on the incoming mail.
type IngressBooleanExpression struct {
// The operand on which to perform a boolean condition operation.
//
// This member is required.
Evaluate IngressBooleanToEvaluate
// The matching operator for a boolean condition expression.
//
// This member is required.
Operator IngressBooleanOperator
noSmithyDocumentSerde
}
// The union type representing the allowed types of operands for a boolean
// condition.
//
// The following types satisfy this interface:
//
// IngressBooleanToEvaluateMemberAnalysis
type IngressBooleanToEvaluate interface {
isIngressBooleanToEvaluate()
}
// The structure type for a boolean condition stating the Add On ARN and its
// returned value.
type IngressBooleanToEvaluateMemberAnalysis struct {
Value IngressAnalysis
noSmithyDocumentSerde
}
func (*IngressBooleanToEvaluateMemberAnalysis) isIngressBooleanToEvaluate() {}
// The structure for an IP based condition matching on the incoming mail.
//
// The following types satisfy this interface:
//
// IngressIpToEvaluateMemberAttribute
type IngressIpToEvaluate interface {
isIngressIpToEvaluate()
}
// An enum type representing the allowed attribute types for an IP condition.
type IngressIpToEvaluateMemberAttribute struct {
Value IngressIpv4Attribute
noSmithyDocumentSerde
}
func (*IngressIpToEvaluateMemberAttribute) isIngressIpToEvaluate() {}
// The union type representing the allowed types for the left hand side of an IP
// condition.
type IngressIpv4Expression struct {
// The left hand side argument of an IP condition expression.
//
// This member is required.
Evaluate IngressIpToEvaluate
// The matching operator for an IP condition expression.
//
// This member is required.
Operator IngressIpOperator
// The right hand side argument of an IP condition expression.
//
// This member is required.
Values []string
noSmithyDocumentSerde
}
// The structure of an ingress endpoint resource.
type IngressPoint struct {
// The identifier of the ingress endpoint resource.
//
// This member is required.
IngressPointId *string
// A user friendly name for the ingress endpoint resource.
//
// This member is required.
IngressPointName *string
// The status of the ingress endpoint resource.
//
// This member is required.
Status IngressPointStatus
// The type of ingress endpoint resource.
//
// This member is required.
Type IngressPointType
// The DNS A Record that identifies your ingress endpoint. Configure your DNS
// Mail Exchange (MX) record with this value to route emails to Mail Manager.
ARecord *string
noSmithyDocumentSerde
}
// The authentication configuration for the ingress endpoint resource.
type IngressPointAuthConfiguration struct {
// The ingress endpoint password configuration for the ingress endpoint resource.
IngressPointPasswordConfiguration *IngressPointPasswordConfiguration
// The ingress endpoint SecretsManager::Secret ARN configuration for the ingress
// endpoint resource.
SecretArn *string
noSmithyDocumentSerde
}
// The configuration of the ingress endpoint resource.
//
// The following types satisfy this interface:
//
// IngressPointConfigurationMemberSecretArn
// IngressPointConfigurationMemberSmtpPassword
type IngressPointConfiguration interface {
isIngressPointConfiguration()
}
// The SecretsManager::Secret ARN of the ingress endpoint resource.
type IngressPointConfigurationMemberSecretArn struct {
Value string
noSmithyDocumentSerde
}
func (*IngressPointConfigurationMemberSecretArn) isIngressPointConfiguration() {}
// The password of the ingress endpoint resource.
type IngressPointConfigurationMemberSmtpPassword struct {
Value string
noSmithyDocumentSerde
}
func (*IngressPointConfigurationMemberSmtpPassword) isIngressPointConfiguration() {}
// The password configuration of the ingress endpoint resource.
type IngressPointPasswordConfiguration struct {
// The previous password expiry timestamp of the ingress endpoint resource.
PreviousSmtpPasswordExpiryTimestamp *time.Time
// The previous password version of the ingress endpoint resource.
PreviousSmtpPasswordVersion *string
// The current password expiry timestamp of the ingress endpoint resource.
SmtpPasswordVersion *string
noSmithyDocumentSerde
}
// The structure for a string based condition matching on the incoming mail.
type IngressStringExpression struct {
// The left hand side argument of a string condition expression.
//
// This member is required.
Evaluate IngressStringToEvaluate
// The matching operator for a string condition expression.
//
// This member is required.
Operator IngressStringOperator
// The right hand side argument of a string condition expression.
//
// This member is required.
Values []string
noSmithyDocumentSerde
}
// The union type representing the allowed types for the left hand side of a
// string condition.
//
// The following types satisfy this interface:
//
// IngressStringToEvaluateMemberAttribute
type IngressStringToEvaluate interface {
isIngressStringToEvaluate()
}
// The enum type representing the allowed attribute types for a string condition.
type IngressStringToEvaluateMemberAttribute struct {
Value IngressStringEmailAttribute
noSmithyDocumentSerde
}
func (*IngressStringToEvaluateMemberAttribute) isIngressStringToEvaluate() {}
// The structure for a TLS related condition matching on the incoming mail.
type IngressTlsProtocolExpression struct {
// The left hand side argument of a TLS condition expression.
//
// This member is required.
Evaluate IngressTlsProtocolToEvaluate
// The matching operator for a TLS condition expression.
//
// This member is required.
Operator IngressTlsProtocolOperator
// The right hand side argument of a TLS condition expression.
//
// This member is required.
Value IngressTlsProtocolAttribute
noSmithyDocumentSerde
}
// The union type representing the allowed types for the left hand side of a TLS
// condition.
//
// The following types satisfy this interface:
//
// IngressTlsProtocolToEvaluateMemberAttribute
type IngressTlsProtocolToEvaluate interface {
isIngressTlsProtocolToEvaluate()
}
// The enum type representing the allowed attribute types for the TLS condition.
type IngressTlsProtocolToEvaluateMemberAttribute struct {
Value IngressTlsAttribute
noSmithyDocumentSerde
}
func (*IngressTlsProtocolToEvaluateMemberAttribute) isIngressTlsProtocolToEvaluate() {}
// The textual body content of an email message.
type MessageBody struct {
// The HTML body content of the message.
Html *string
// A flag indicating if the email was malformed.
MessageMalformed *bool
// The plain text body content of the message.
Text *string
noSmithyDocumentSerde
}
// Explicitly indicate that the relay destination server does not require SMTP
// credential authentication.
type NoAuthentication struct {
noSmithyDocumentSerde
}
// The email traffic filtering conditions which are contained in a traffic policy
// resource.
//
// The following types satisfy this interface:
//
// PolicyConditionMemberBooleanExpression
// PolicyConditionMemberIpExpression
// PolicyConditionMemberStringExpression
// PolicyConditionMemberTlsExpression
type PolicyCondition interface {
isPolicyCondition()
}
// This represents a boolean type condition matching on the incoming mail. It
// performs the boolean operation configured in 'Operator' and evaluates the
// 'Protocol' object against the 'Value'.
type PolicyConditionMemberBooleanExpression struct {
Value IngressBooleanExpression
noSmithyDocumentSerde
}
func (*PolicyConditionMemberBooleanExpression) isPolicyCondition() {}
// This represents an IP based condition matching on the incoming mail. It
// performs the operation configured in 'Operator' and evaluates the 'Protocol'
// object against the 'Value'.
type PolicyConditionMemberIpExpression struct {
Value IngressIpv4Expression
noSmithyDocumentSerde
}
func (*PolicyConditionMemberIpExpression) isPolicyCondition() {}
// This represents a string based condition matching on the incoming mail. It
// performs the string operation configured in 'Operator' and evaluates the
// 'Protocol' object against the 'Value'.
type PolicyConditionMemberStringExpression struct {
Value IngressStringExpression
noSmithyDocumentSerde
}
func (*PolicyConditionMemberStringExpression) isPolicyCondition() {}
// This represents a TLS based condition matching on the incoming mail. It
// performs the operation configured in 'Operator' and evaluates the 'Protocol'
// object against the 'Value'.
type PolicyConditionMemberTlsExpression struct {
Value IngressTlsProtocolExpression
noSmithyDocumentSerde
}
func (*PolicyConditionMemberTlsExpression) isPolicyCondition() {}
// The structure containing traffic policy conditions and actions.
type PolicyStatement struct {
// The action that informs a traffic policy resource to either allow or block the
// email if it matches a condition in the policy statement.
//
// This member is required.
Action AcceptAction
// The list of conditions to apply to incoming messages for filtering email
// traffic.
//
// This member is required.
Conditions []PolicyCondition
noSmithyDocumentSerde
}
// The relay resource that can be used as a rule to relay receiving emails to the
// destination relay server.
type Relay struct {
// The timestamp of when the relay was last modified.
LastModifiedTimestamp *time.Time
// The unique relay identifier.
RelayId *string
// The unique relay name.
RelayName *string
noSmithyDocumentSerde
}
// The action relays the email via SMTP to another specific SMTP server.
type RelayAction struct {
// The identifier of the relay resource to be used when relaying an email.
//
// This member is required.
Relay *string
// A policy that states what to do in the case of failure. The action will fail if
// there are configuration errors. For example, the specified relay has been
// deleted.
ActionFailurePolicy ActionFailurePolicy
// This action specifies whether to preserve or replace original mail from address
// while relaying received emails to a destination server.
MailFrom MailFrom
noSmithyDocumentSerde
}
// Authentication for the relay destination server—specify the secretARN where the
// SMTP credentials are stored, or specify an empty NoAuthentication structure if
// the relay destination server does not require SMTP credential authentication.
//
// The following types satisfy this interface:
//
// RelayAuthenticationMemberNoAuthentication
// RelayAuthenticationMemberSecretArn
type RelayAuthentication interface {
isRelayAuthentication()
}
// Keep an empty structure if the relay destination server does not require SMTP
// credential authentication.
type RelayAuthenticationMemberNoAuthentication struct {
Value NoAuthentication
noSmithyDocumentSerde
}
func (*RelayAuthenticationMemberNoAuthentication) isRelayAuthentication() {}
// The ARN of the secret created in secrets manager where the relay server's SMTP
// credentials are stored.
type RelayAuthenticationMemberSecretArn struct {
Value string
noSmithyDocumentSerde
}
func (*RelayAuthenticationMemberSecretArn) isRelayAuthentication() {}
// This action replaces the email envelope recipients with the given list of
// recipients. If the condition of this action applies only to a subset of
// recipients, only those recipients are replaced with the recipients specified in
// the action. The message contents and headers are unaffected by this action, only
// the envelope recipients are updated.
type ReplaceRecipientAction struct {
// This action specifies the replacement recipient email addresses to insert.
ReplaceWith []string
noSmithyDocumentSerde
}
// A result row containing metadata for an archived email message.
type Row struct {
// The unique identifier of the archived message.
ArchivedMessageId *string
// The email addresses in the CC header.
Cc *string
// The date the email was sent.
Date *string
// The email address of the sender.
From *string
// A flag indicating if the email has attachments.
HasAttachments *bool
// The email message ID this is a reply to.
InReplyTo *string
// The unique message ID of the email.
MessageId *string
// The received headers from the email delivery path.
ReceivedHeaders []string
// The timestamp of when the email was received.
ReceivedTimestamp *time.Time
// The subject header value of the email.
Subject *string
// The email addresses in the To header.
To *string
// The user agent that sent the email.
XMailer *string
// The original user agent that sent the email.
XOriginalMailer *string
// The priority level of the email.
XPriority *string
noSmithyDocumentSerde
}
// A rule contains conditions, "unless conditions" and actions. For each envelope
// recipient of an email, if all conditions match and none of the "unless
// conditions" match, then all of the actions are executed sequentially. If no
// conditions are provided, the rule always applies and the actions are implicitly
// executed. If only "unless conditions" are provided, the rule applies if the
// email does not match the evaluation of the "unless conditions".
type Rule struct {
// The list of actions to execute when the conditions match the incoming email,
// and none of the "unless conditions" match.
//
// This member is required.
Actions []RuleAction
// The conditions of this rule. All conditions must match the email for the
// actions to be executed. An empty list of conditions means that all emails match,
// but are still subject to any "unless conditions"
Conditions []RuleCondition
// The user-friendly name of the rule.
Name *string
// The "unless conditions" of this rule. None of the conditions can match the
// email for the actions to be executed. If any of these conditions do match the
// email, then the actions are not executed.
Unless []RuleCondition
noSmithyDocumentSerde
}
// The action for a rule to take. Only one of the contained actions can be set.
//
// The following types satisfy this interface:
//
// RuleActionMemberAddHeader
// RuleActionMemberArchive
// RuleActionMemberDeliverToMailbox
// RuleActionMemberDrop
// RuleActionMemberRelay
// RuleActionMemberReplaceRecipient
// RuleActionMemberSend
// RuleActionMemberWriteToS3
type RuleAction interface {
isRuleAction()
}
// This action adds a header. This can be used to add arbitrary email headers.
type RuleActionMemberAddHeader struct {
Value AddHeaderAction
noSmithyDocumentSerde
}
func (*RuleActionMemberAddHeader) isRuleAction() {}
// This action archives the email. This can be used to deliver an email to an
// archive.
type RuleActionMemberArchive struct {
Value ArchiveAction
noSmithyDocumentSerde
}
func (*RuleActionMemberArchive) isRuleAction() {}
// This action delivers an email to a WorkMail mailbox.
type RuleActionMemberDeliverToMailbox struct {
Value DeliverToMailboxAction
noSmithyDocumentSerde
}
func (*RuleActionMemberDeliverToMailbox) isRuleAction() {}
// This action terminates the evaluation of rules in the rule set.
type RuleActionMemberDrop struct {
Value DropAction
noSmithyDocumentSerde
}
func (*RuleActionMemberDrop) isRuleAction() {}
// This action relays the email to another SMTP server.
type RuleActionMemberRelay struct {
Value RelayAction
noSmithyDocumentSerde
}
func (*RuleActionMemberRelay) isRuleAction() {}
// The action replaces certain or all recipients with a different set of
// recipients.
type RuleActionMemberReplaceRecipient struct {
Value ReplaceRecipientAction
noSmithyDocumentSerde
}
func (*RuleActionMemberReplaceRecipient) isRuleAction() {}
// This action sends the email to the internet.
type RuleActionMemberSend struct {
Value SendAction
noSmithyDocumentSerde
}
func (*RuleActionMemberSend) isRuleAction() {}
// This action writes the MIME content of the email to an S3 bucket.
type RuleActionMemberWriteToS3 struct {
Value S3Action
noSmithyDocumentSerde
}
func (*RuleActionMemberWriteToS3) isRuleAction() {}
// A boolean expression to be used in a rule condition.
type RuleBooleanExpression struct {
// The operand on which to perform a boolean condition operation.
//
// This member is required.
Evaluate RuleBooleanToEvaluate
// The matching operator for a boolean condition expression.
//
// This member is required.
Operator RuleBooleanOperator
noSmithyDocumentSerde
}
// The union type representing the allowed types of operands for a boolean
// condition.
//
// The following types satisfy this interface:
//
// RuleBooleanToEvaluateMemberAttribute
type RuleBooleanToEvaluate interface {
isRuleBooleanToEvaluate()
}
// The boolean type representing the allowed attribute types for an email.
type RuleBooleanToEvaluateMemberAttribute struct {
Value RuleBooleanEmailAttribute
noSmithyDocumentSerde
}
func (*RuleBooleanToEvaluateMemberAttribute) isRuleBooleanToEvaluate() {}
// The conditional expression used to evaluate an email for determining if a rule
// action should be taken.
//
// The following types satisfy this interface:
//
// RuleConditionMemberBooleanExpression
// RuleConditionMemberDmarcExpression
// RuleConditionMemberIpExpression
// RuleConditionMemberNumberExpression
// RuleConditionMemberStringExpression
// RuleConditionMemberVerdictExpression
type RuleCondition interface {
isRuleCondition()
}
// The condition applies to a boolean expression passed in this field.
type RuleConditionMemberBooleanExpression struct {
Value RuleBooleanExpression
noSmithyDocumentSerde
}
func (*RuleConditionMemberBooleanExpression) isRuleCondition() {}
// The condition applies to a DMARC policy expression passed in this field.
type RuleConditionMemberDmarcExpression struct {
Value RuleDmarcExpression
noSmithyDocumentSerde
}
func (*RuleConditionMemberDmarcExpression) isRuleCondition() {}
// The condition applies to an IP address expression passed in this field.
type RuleConditionMemberIpExpression struct {
Value RuleIpExpression
noSmithyDocumentSerde
}
func (*RuleConditionMemberIpExpression) isRuleCondition() {}
// The condition applies to a number expression passed in this field.
type RuleConditionMemberNumberExpression struct {
Value RuleNumberExpression
noSmithyDocumentSerde
}
func (*RuleConditionMemberNumberExpression) isRuleCondition() {}
// The condition applies to a string expression passed in this field.
type RuleConditionMemberStringExpression struct {
Value RuleStringExpression
noSmithyDocumentSerde
}
func (*RuleConditionMemberStringExpression) isRuleCondition() {}
// The condition applies to a verdict expression passed in this field.
type RuleConditionMemberVerdictExpression struct {
Value RuleVerdictExpression
noSmithyDocumentSerde
}
func (*RuleConditionMemberVerdictExpression) isRuleCondition() {}
// A DMARC policy expression. The condition matches if the given DMARC policy
// matches that of the incoming email.
type RuleDmarcExpression struct {
// The operator to apply to the DMARC policy of the incoming email.
//
// This member is required.
Operator RuleDmarcOperator
// The values to use for the given DMARC policy operator. For the operator EQUALS,
// if multiple values are given, they are evaluated as an OR. That is, if any of
// the given values match, the condition is deemed to match. For the operator
// NOT_EQUALS, if multiple values are given, they are evaluated as an AND. That is,
// only if the email's DMARC policy is not equal to any of the given values, then
// the condition is deemed to match.
//
// This member is required.
Values []RuleDmarcPolicy
noSmithyDocumentSerde
}
// An IP address expression matching certain IP addresses within a given range of
// IP addresses.
type RuleIpExpression struct {
// The IP address to evaluate in this condition.
//
// This member is required.
Evaluate RuleIpToEvaluate
// The operator to evaluate the IP address.
//
// This member is required.
Operator RuleIpOperator
// The IP CIDR blocks in format "x.y.z.w/n" (eg 10.0.0.0/8) to match with the
// email's IP address. For the operator CIDR_MATCHES, if multiple values are given,
// they are evaluated as an OR. That is, if the IP address is contained within any
// of the given CIDR ranges, the condition is deemed to match. For
// NOT_CIDR_MATCHES, if multiple CIDR ranges are given, the condition is deemed to
// match if the IP address is not contained in any of the given CIDR ranges.
//
// This member is required.
Values []string
noSmithyDocumentSerde
}
// The IP address to evaluate for this condition.
//
// The following types satisfy this interface:
//
// RuleIpToEvaluateMemberAttribute
type RuleIpToEvaluate interface {
isRuleIpToEvaluate()
}
// The attribute of the email to evaluate.
type RuleIpToEvaluateMemberAttribute struct {
Value RuleIpEmailAttribute
noSmithyDocumentSerde
}
func (*RuleIpToEvaluateMemberAttribute) isRuleIpToEvaluate() {}
// A number expression to match numeric conditions with integers from the incoming
// email.
type RuleNumberExpression struct {
// The number to evaluate in a numeric condition expression.
//
// This member is required.
Evaluate RuleNumberToEvaluate
// The operator for a numeric condition expression.
//
// This member is required.
Operator RuleNumberOperator
// The value to evaluate in a numeric condition expression.
//
// This member is required.
Value *float64
noSmithyDocumentSerde
}
// The number to evaluate in a numeric condition expression.
//
// The following types satisfy this interface:
//
// RuleNumberToEvaluateMemberAttribute
type RuleNumberToEvaluate interface {
isRuleNumberToEvaluate()
}
// An email attribute that is used as the number to evaluate.
type RuleNumberToEvaluateMemberAttribute struct {
Value RuleNumberEmailAttribute
noSmithyDocumentSerde
}
func (*RuleNumberToEvaluateMemberAttribute) isRuleNumberToEvaluate() {}
// A rule set contains a list of rules that are evaluated in order. Each rule is
// evaluated sequentially for each email.
type RuleSet struct {
// The last modification date of the rule set.
LastModificationDate *time.Time
// The identifier of the rule set.
RuleSetId *string
// A user-friendly name for the rule set.
RuleSetName *string
noSmithyDocumentSerde
}
// A string expression is evaluated against strings or substrings of the email.
type RuleStringExpression struct {
// The string to evaluate in a string condition expression.
//
// This member is required.
Evaluate RuleStringToEvaluate
// The matching operator for a string condition expression.
//
// This member is required.
Operator RuleStringOperator
// The string(s) to be evaluated in a string condition expression. For all
// operators, except for NOT_EQUALS, if multiple values are given, the values are
// processed as an OR. That is, if any of the values match the email's string using
// the given operator, the condition is deemed to match. However, for NOT_EQUALS,
// the condition is only deemed to match if none of the given strings match the
// email's string.
//
// This member is required.
Values []string
noSmithyDocumentSerde
}
// The string to evaluate in a string condition expression.
//
// The following types satisfy this interface:
//
// RuleStringToEvaluateMemberAttribute
type RuleStringToEvaluate interface {
isRuleStringToEvaluate()
}
// The email attribute to evaluate in a string condition expression.
type RuleStringToEvaluateMemberAttribute struct {
Value RuleStringEmailAttribute
noSmithyDocumentSerde
}
func (*RuleStringToEvaluateMemberAttribute) isRuleStringToEvaluate() {}
// A verdict expression is evaluated against verdicts of the email.
type RuleVerdictExpression struct {
// The verdict to evaluate in a verdict condition expression.
//
// This member is required.
Evaluate RuleVerdictToEvaluate
// The matching operator for a verdict condition expression.
//
// This member is required.
Operator RuleVerdictOperator
// The values to match with the email's verdict using the given operator. For the
// EQUALS operator, if multiple values are given, the condition is deemed to match
// if any of the given verdicts match that of the email. For the NOT_EQUALS
// operator, if multiple values are given, the condition is deemed to match of none
// of the given verdicts match the verdict of the email.
//
// This member is required.
Values []RuleVerdict
noSmithyDocumentSerde
}
// The verdict to evaluate in a verdict condition expression.
//
// The following types satisfy this interface:
//
// RuleVerdictToEvaluateMemberAnalysis
// RuleVerdictToEvaluateMemberAttribute
type RuleVerdictToEvaluate interface {
isRuleVerdictToEvaluate()
}
// The Add On ARN and its returned value to evaluate in a verdict condition
// expression.
type RuleVerdictToEvaluateMemberAnalysis struct {
Value Analysis
noSmithyDocumentSerde
}
func (*RuleVerdictToEvaluateMemberAnalysis) isRuleVerdictToEvaluate() {}
// The email verdict attribute to evaluate in a string verdict expression.
type RuleVerdictToEvaluateMemberAttribute struct {
Value RuleVerdictAttribute
noSmithyDocumentSerde
}
func (*RuleVerdictToEvaluateMemberAttribute) isRuleVerdictToEvaluate() {}
// Writes the MIME content of the email to an S3 bucket.
type S3Action struct {
// The Amazon Resource Name (ARN) of the IAM Role to use while writing to S3. This
// role must have access to the s3:PutObject, kms:Encrypt, and kms:GenerateDataKey
// APIs for the given bucket.
//
// This member is required.
RoleArn *string
// The bucket name of the S3 bucket to write to.
//
// This member is required.
S3Bucket *string
// A policy that states what to do in the case of failure. The action will fail if
// there are configuration errors. For example, the specified the bucket has been
// deleted.
ActionFailurePolicy ActionFailurePolicy
// The S3 prefix to use for the write to the s3 bucket.
S3Prefix *string
// The KMS Key ID to use to encrypt the message in S3.
S3SseKmsKeyId *string
noSmithyDocumentSerde
}
// The configuration for exporting email data to an Amazon S3 bucket.
type S3ExportDestinationConfiguration struct {
// The S3 location to deliver the exported email data.
S3Location *string
noSmithyDocumentSerde
}
// The current status of an archive search job.
type SearchStatus struct {
// The timestamp of when the search completed (if finished).
CompletionTimestamp *time.Time
// An error message if the search failed.
ErrorMessage *string
// The current state of the search job.
State SearchState
// The timestamp of when the search was submitted.
SubmissionTimestamp *time.Time
noSmithyDocumentSerde
}
// Summary details of an archive search job.
type SearchSummary struct {
// The unique identifier of the search job.
SearchId *string
// The current status of the search job.
Status *SearchStatus
noSmithyDocumentSerde
}
// Sends the email to the internet using the ses:SendRawEmail API.
type SendAction struct {
// The Amazon Resource Name (ARN) of the role to use for this action. This role
// must have access to the ses:SendRawEmail API.
//
// This member is required.
RoleArn *string
// A policy that states what to do in the case of failure. The action will fail if
// there are configuration errors. For example, the caller does not have the
// permissions to call the sendRawEmail API.
ActionFailurePolicy ActionFailurePolicy
noSmithyDocumentSerde
}
// A key-value pair (the value is optional), that you can define and assign to
// Amazon Web Services resources.
type Tag struct {
// The key of the key-value tag.
//
// This member is required.
Key *string
// The value of the key-value tag.
//
// This member is required.
Value *string
noSmithyDocumentSerde
}
// The structure of a traffic policy resource which is a container for policy
// statements.
type TrafficPolicy struct {
// Default action instructs the traffic policy to either Allow or Deny (block)
// messages that fall outside of (or not addressed by) the conditions of your
// policy statements
//
// This member is required.
DefaultAction AcceptAction
// The identifier of the traffic policy resource.
//
// This member is required.
TrafficPolicyId *string
// A user-friendly name of the traffic policy resource.
//
// This member is required.
TrafficPolicyName *string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
// UnknownUnionMember is returned when a union member is returned over the wire,
// but has an unknown tag.
type UnknownUnionMember struct {
Tag string
Value []byte
noSmithyDocumentSerde
}
func (*UnknownUnionMember) isArchiveBooleanToEvaluate() {}
func (*UnknownUnionMember) isArchiveFilterCondition() {}
func (*UnknownUnionMember) isArchiveRetention() {}
func (*UnknownUnionMember) isArchiveStringToEvaluate() {}
func (*UnknownUnionMember) isExportDestinationConfiguration() {}
func (*UnknownUnionMember) isIngressBooleanToEvaluate() {}
func (*UnknownUnionMember) isIngressIpToEvaluate() {}
func (*UnknownUnionMember) isIngressPointConfiguration() {}
func (*UnknownUnionMember) isIngressStringToEvaluate() {}
func (*UnknownUnionMember) isIngressTlsProtocolToEvaluate() {}
func (*UnknownUnionMember) isPolicyCondition() {}
func (*UnknownUnionMember) isRelayAuthentication() {}
func (*UnknownUnionMember) isRuleAction() {}
func (*UnknownUnionMember) isRuleBooleanToEvaluate() {}
func (*UnknownUnionMember) isRuleCondition() {}
func (*UnknownUnionMember) isRuleIpToEvaluate() {}
func (*UnknownUnionMember) isRuleNumberToEvaluate() {}
func (*UnknownUnionMember) isRuleStringToEvaluate() {}
func (*UnknownUnionMember) isRuleVerdictToEvaluate() {}
|